-OS: macOS 10.15.5 ・ Gatsby: 2.24.14
When I run "gats by develop" casually, I get the following message:
Something is already running at port 8000
? Would you like to run the app at another port instead? › (Y/n)
If you select Y, it will start on port 8001. Select n to exit without starting the server.
Kill the process used on port 8000.
① First, check the port process
lsof -i :8000
The result is as follows.
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
node 14778 saku 27u IPv4 0xb6bc7a92d19432ab 0t0 TCP localhost:irdmi (LISTEN)
② Kill the process
kill -9 [PID numbers]
I hope I can get rid of this, but I still haven't.
Recommended Posts