美文网首页Linux
nohup_后台启动进程

nohup_后台启动进程

作者: lvyz0207 | 来源:发表于2020-11-20 13:25 被阅读0次

    后台启动进程

    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 第二列为进程号
    
    

    相关文章

      网友评论

        本文标题:nohup_后台启动进程

        本文链接:https://www.haomeiwen.com/subject/xqudiktx.html