后台启动进程
nohup command &
# nohup:不挂断的运行命令
# & 在后台运行
nohup ./control_test.sh start &
jobs -l
# jobs命令只看当前终端生效的,关闭终端后,在另一个终端jobs已经无法看到后台跑得程序
ps -ef
# a:显示所有程序
# u:以用户为主的格式来显示
# x:显示所有程序,不以终端机来区分
ps -aux|grep chat.js| grep -v grep
# 用grep -v参数可以将grep命令排除掉
netstat -nap|grep 9000|grep -v grep
ps -aux|grep chat.js| grep -v grep | awk '{print $2}'
lsof -i:9000
netstat -ap|grep 9000
kill -9 进程号
# lvyz 15703 12485 9 13:03 pts/0 00:01:32 ./bin/go_test -c ./conf/conf.test.toml
# 15703 第二列为进程号
网友评论