将应用程序部署到Bluemix后,服务器无法启动

时间:2017-05-29 10:42:32

标签: go ibm-cloud ibm-cloud-tools devops-services

我们无法将示例go web程序部署到Bluemix。服务器正在尝试启动并最终崩溃而没有任何错误。如果有任何文件需要修改,请告诉我。

View Our Code In GitHub

xmlns:customControls="clr-namespace:MyProjectNamespace.Controls"

2 个答案:

答案 0 :(得分:3)

您的代码正在侦听硬编码端口" 8081"而不是Bluemix / Cloud Foundry环境提供的端口。在Main函数中尝试以下内容:

err := http.ListenAndServe(":"+os.Getenv("PORT"), nil)

答案 1 :(得分:1)

可能是这个链接可以帮助你有一些Q& A可以使用与Bluemix一起使用

https://developer.ibm.com/answers/questions/13591/about-using-go-with-bluemix.html