It outputs, google node etc
# prisma-whats-new
p
It outputs, google node etc
h
so that's using the port?
p
well it outputs like 20 processes
but for the name it has something like localhost:55016
none have localhost:4000
n
Error: listen EADDRINUSE :::4000
this means that another process is using port 4000 already
p
lsof -i tcp:4000
kill -9 <PID from above>
p
I just restarted my mac, and it killed it automatically. But I think this is potentially an issue with prisma. Cause I am sure I did not start another process. And I believe this is the second time this happened. I can’t really file an issue though, cause I am not sure how to reproduce it. Although I might have an idea. This error occurred after, I had created a file lets say foo.ts and deleted it, and then created another file with the same name
n
Prisma does not start processes on port 4000 🙂
p
Maybe its graphql-yoga?
n
It's most likely you running
yarn start
twice. Happens to me almost daily 😛
p
Hmmm, maybe!