yaogengzhu / daily-share

个人博客记录、内容在issues
30 stars 4 forks source link

在服务器后台直接运行nodejs 脚本的处理方式 (2024-1-20) #201

Open yaogengzhu opened 10 months ago

yaogengzhu commented 10 months ago

后台运行nodejs服务, 输出日志到output.log

nohup node index.js > output.log &nohup node index.js > output.log &

实时查看日志

tail -f output.logtail -f output.log

查看所有的node 进程

ps aux | grep node

停掉服务

kill -9 ID