简体   繁体   中英

nodemon instance not found on digital ocean droplet

i deployed my node app on Digital Ocean Droplet.

after installing the dependencies i ran yarn dev

my script:

"scripts": {
    "dev": "nodemon --delay 10ms --exec babel-node -- app.js"
}

after few minutes the ssh connection broke. i connected again to the ssh, but i am unable to run yarn dev script again, as the previous nodeman is still running on port 3000. how to get a instance of nodeman and stop it so that i could run it new instance.

did some more research...

To find the nodemon process, use:

sudo netstat -plten |grep node

This should list all currently running node processes and their PIDs. Find the correct PID and then kill it with

kill [PID goes here]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM