If you want to kill the process ran with forever start -c 'some command'
Closed this issue · 0 comments
alkhachatryan commented
If you want to kill the process ran with forever start -c 'some command'
Run the PS AUX (Ubuntu check all processes) and find your command
alexey 20230 10.0 0.3 800708 42100 ? Sl 13:08 0:00 node resources/assets/js/socket/socket-io-server.js /var/www/html/project/
And don't forget to kill the FOREVER process
alexey 20211 8.0 0.3 570448 44552 ? Ssl 13:08 0:00 /usr/local/bin/node /usr/local/lib/node_modules/forever/bin/monitor ./
If you ran a command like this:
forever start -c 'npm run socker'
You must to stop 2 processes: FOREVER and NPM (in my example)
Originally posted by @alkhachatryan in #805 (comment)