Can anyone help me? when I try to do “prisma init” it says “FetchError: request to http://localhost:4466/management failed, reason: connect ECONNREFUSED 127.0.0.1:4466"
e
Eshwar Yaddanapudi
09/27/2019, 4:09 AM
if your development OS is Windows, then localhost will not work. You need to bring up your Docker environment and give its ID in the place of localhost. it might be comething like 192.102.23.1:4466/management
p
prisma-chobo
09/27/2019, 4:10 AM
Thanks for answering me!!!
prisma-chobo
09/27/2019, 4:10 AM
However my dev OS is mac
prisma-chobo
09/27/2019, 4:11 AM
docker is up and running as well and yet when i did docker ps nothing is running on docker. any idea please?
j
JamesJ
09/27/2019, 7:36 AM
I would check your Docker installation first and then check you have the docker-compose set up as per prisma recommendations in the root of your project. Try:
docker-compose up -d
again and check the containers are there with docker ps
All general advice, but hope it helps.