dongnius85154 2019-09-06 03:09
浏览 56
已采纳

将简单的golang应用程序部署到appengine已停止工作

I have created a small test app in golang and am trying to deploy it to Google AppEngine and although the "gcloud app deploy" command seems to work and reports no errors, when I visit the endpoint -> https://XXX.appspot.com/cards it just sits there and eventually gives me a 500 response, and displays the error (in the browser)

Error: Server Error
The server encountered an error and could not complete your request.
Please try again in 30 seconds.

I am fairly new go golang and AppEngine but I have made several working apps recently and I am completely stumped as to why it's not working.

When I type "gcloud app logs tail -s default" I see some log entries like:

2019-09-06 02:17:31 default[20190905t204717]  "GET / HTTP/1.1" 500
2019-09-06 02:17:32 default[20190905t204717]  Starting the application...
2019-09-06 02:22:08 default[20190905t212008]  "GET / HTTP/1.1" 500
2019-09-06 02:22:08 default[20190905t212008]  Starting the application...
2019-09-06 02:22:14 default[20190905t212008]  "GET /cards HTTP/1.1" 500
2019-09-06 02:22:17 default[20190905t212008]  "GET /cards HTTP/1.1" 500
2019-09-06 02:22:17 default[20190905t212008]  Starting the application...

Here is the simple single file go app "main.go "

package main
import (
    "encoding/json"
    "fmt"
    "github.com/gorilla/mux"
    "net/http"
)
func main() {
    fmt.Println("Starting the application...")
    router := mux.NewRouter()
    router.HandleFunc("/cards", GetCardsEndpoint).Methods("GET")
    err := http.ListenAndServe(":80", router)
    fmt.Println("ERR:", err)
}
func GetCardsEndpoint(response http.ResponseWriter, request *http.Request) {
    fmt.Println("API: GetCardsEndpoint() ")
    err := json.NewEncoder(response).Encode("cards api here")
    fmt.Println("API: GetCardsEndpoint() err:", err )
}

The app.yaml

runtime: go111

It should return text: "cards api here"

  • 写回答

1条回答 默认 最新

  • douliu3831 2019-09-06 05:18
    关注

    I figured it out, basically, there were 2 things wrong here:

    1) I needed to type "dep init" and "dep ensure -update" in the root of my project. (that downloads all the dependencies into your project folder so that they can be uploaded with your app.)

    2) I don't think we are supposed to specify a port in our code we are supposed to make the listen port taken from os.GetEnv("PORT) on an AppEngine server

    instead of:

    err := http.ListenAndServe(":80", router)
    

    It sould be

    err := http.ListenAndServe(":"+os.getEnv("PORT"), router)
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd