我对 GoLang 没有经验。
我有一个 Go 项目,我想在我的 ubuntu 14.04 上的本地服务器上运行它。我已经安装了 Go 服务器和 Go 代理,它们正在运行。
hesam: ~ $ sudo /etc/init.d/go-server start
[sudo] password for hesam:
using default settings from /etc/default/go-server
Started Go Server on http://hesam:8153/go
hesam: ~ $ sudo /etc/init.d/go-agent start
[Fri Nov 27 20:46:44 MST 2015] using default settings from /etc/default/go-agent
Started Go Agent.
hesam: ~ $
根据命令行所说/var/go/
的是我可以用来将我的 GO 项目放入其中的文件夹。根据我在 Apache 服务器中的了解www
,我们可以从 localhost 访问一个文件夹。所以,我期待 Go 服务器会出现这样的情况(但似乎我错了)。
我的项目包含一些文件夹,例如client
, config
, protocol
, server' and two files
chat.json and
main.go . I thought
main.go acts as
index.html` 或类似的。
那么,如何在服务器上运行项目呢?