我们无法将示例go web程序部署到Bluemix。服务器正在尝试启动并最终崩溃而没有任何错误。如果有任何文件需要修改,请告诉我。
xmlns:customControls="clr-namespace:MyProjectNamespace.Controls"
答案 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