# chkconfig: 2345 99 20 #这个是把脚本编程系统服务 #!/bin/bash nginx=/usr/local/nginx/sbin/nginx case $1 in start) netstat -nlpt | grep 80 if [ $? -eq 0 ];then echo nginx启动成功 else echo nginx没有启动,正在启动 $nginx echo nginx启动成功 fi ;; stop) $nginx -s stop if [ $? -eq 0 ];then