Closed
Description
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Dashboard!
-
[✔] You're running version >=1.0.23 of Parse Dashboard.
-
[✔] You're running version >=2.3.2 of Parse Server.
-
[✔] You've searched through existing issues. Chances are that your issue has been reported or resolved before.
I know this symptom has come up dozens of times, and I have gone through some dozen tickets and SO pages to try and resolve it. Nothing has worked for me so far.
Environment Setup
Docker
Steps to reproduce
I am following the steps in this Medium article:
https://medium.com/@yildizberkay/how-to-install-parse-server-with-docker-c5931bd84c17
Which can be summarized as:
docker run --name parse-mongo-db \
-e MONGO_INITDB_ROOT_USERNAME=admin \
-e MONGO_INITDB_ROOT_PASSWORD=admin \
-d mongo
docker run --name parse-server-1 \
-e PARSE_SERVER_APPLICATION_ID=APP_ID_1 \
-e PARSE_SERVER_MASTER_KEY=MASTER_KEY_1 \
-e PARSE_SERVER_DATABASE_URI=mongodb://admin:admin@mongo/parse_server?authSource=admin \
--link parse-mongo-db:mongo \
-d -p 1337:1337 parseplatform/parse-server
docker run --name parse-dashboard-1 \
-e PARSE_DASHBOARD_APP_ID=APP_ID_1 \
-e PARSE_DASHBOARD_MASTER_KEY=MASTER_KEY_1 \
-e PARSE_DASHBOARD_USER_ID=admin \
-e PARSE_DASHBOARD_USER_PASSWORD=admin \
-e PARSE_DASHBOARD_ALLOW_INSECURE_HTTP=true \
-e PARSE_DASHBOARD_SERVER_URL=http://localhost:1337/parse \
-d -p 4040:4040 parseplatform/parse-dashboard
Logs/Trace
From the chrome console:
VM115:1 POST http://localhost:1337/serverInfo net::ERR_CONNECTION_REFUSED
VM115:1 POST http://localhost:1337/schemas net::ERR_CONNECTION_REFUSED
VM115:1 POST http://localhost:1337/schemas net::ERR_CONNECTION_REFUSED
VM115:1 POST http://localhost:1337/schemas net::ERR_CONNECTION_REFUSED
VM115:1 POST http://localhost:1337/schemas net::ERR_CONNECTION_REFUSED
VM115:1 POST http://localhost:1337/schemas net::ERR_CONNECTION_REFUSED