1、查看指定端口9999的进程id
netstat -tunlp | grep 9999
2、杀进程id
kill -s 9 进程ID
3、后台启动node
nohup node serve.js > log.out 2>&1 &
原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/tech/aiops/277473.html
1、查看指定端口9999的进程id
netstat -tunlp | grep 9999
2、杀进程id
kill -s 9 进程ID
3、后台启动node
nohup node serve.js > log.out 2>&1 &
原创文章,作者:254126420,如若转载,请注明出处:https://blog.ytso.com/tech/aiops/277473.html