无法通过解析仪表板连接服务器?
Unable to connect server via parse dashboard?
我在阿里云上的一个专用实例中设置了解析服务器和解析仪表板,具有 2vCPU 和 8GB 内存,并使用 ApsaraDB MongoDB 作为解析数据库。
我成功设置了仪表板和服务器。当我尝试访问服务器时出现以下错误,
“无法连接到服务器。”
解析仪表板错误屏幕截图
我能够成功地发出如下 POST 和 GET 请求
curl -X POST \
-H "X-Parse-Application-Id: APPLICATION_ID" \
-H "Content-Type: application/json" \
-d '{"score":1337,"playerName":"Sean Plott","cheatMode":false}' \
http://localhost:1337/parse/classes/GameScore
//Response
{
"objectId": "2ntvSpRGIK",
"createdAt": "2016-03-11T23:51:48.050Z"
}
我可以通过 putty 和 FTP 连接。
谢谢
虽然您的计算机(我指的是其他应用程序)正在访问服务器,但 Parse 仪表板没有。
在您的仪表板配置中,您可以尝试更改
http://localhost:1337/parse
到
http://[ip-address]:1337/parse
也通过这个线程,您可能能够更深入地了解它为什么不起作用:
https://github.com/parse-community/parse-dashboard/issues/785
我在阿里云上的一个专用实例中设置了解析服务器和解析仪表板,具有 2vCPU 和 8GB 内存,并使用 ApsaraDB MongoDB 作为解析数据库。 我成功设置了仪表板和服务器。当我尝试访问服务器时出现以下错误, “无法连接到服务器。”
解析仪表板错误屏幕截图
我能够成功地发出如下 POST 和 GET 请求
curl -X POST \
-H "X-Parse-Application-Id: APPLICATION_ID" \
-H "Content-Type: application/json" \
-d '{"score":1337,"playerName":"Sean Plott","cheatMode":false}' \
http://localhost:1337/parse/classes/GameScore
//Response
{
"objectId": "2ntvSpRGIK",
"createdAt": "2016-03-11T23:51:48.050Z"
}
我可以通过 putty 和 FTP 连接。 谢谢
虽然您的计算机(我指的是其他应用程序)正在访问服务器,但 Parse 仪表板没有。
在您的仪表板配置中,您可以尝试更改
http://localhost:1337/parse
到
http://[ip-address]:1337/parse
也通过这个线程,您可能能够更深入地了解它为什么不起作用: https://github.com/parse-community/parse-dashboard/issues/785