设置Liunx 开机启动的脚本

通过端口号找到进程,直接杀死

kill -9 $(netstat -anp|grep 8889|awk '{printf $7}'|cut -d/ -f1) 

设置Liunx 开机启动的脚本

1,设置Liunx 开机启动的脚本 script.sh。注意注释的头文件必须加进去

# !/bin/sh
# chkconfig: 2345 80 90
# description: script

kill -9 $(netstat -anp | grep 8889 | awk '{printf $7}' | cut -d/ -f1)

cd /usr/project/zp_wechat
nohup python main.py >/dev//null 2>&1 &

// .sh脚本需要放到 /etc/rc.d/init.d/,通过,chkconfig --add script.sh/ chkconfig script.sh on 启动并开启
2, mv script.sh /etc/rc.d/init.d/
3, cd /etc/rc.d/init.d/
4, chkconfig --add script.sh
5, chkconfig script.sh on

liunx重定向

#0:表示标准输入;

#1:标准输出,在一般使用时,默认的是标准输出;

#2:表示错误信息输出。

./program >/dev/null 2>log
#表示将program的错误信息输出到log文件,其他信息丢进/dev/null。

./program >/dev/null 2>&1   #表示将program的错误信息重定向到标准输出,其他信息丢进/dev/null。

你可能感兴趣的:(System)