简单的nginx服务脚本

 

  
  
  
  
  1. #!/bin/sh 
  2. # chkconfig: 2345 64 36 
  3. # description: Nginx Server 
  4.  
  5. nginx="/usr/local/nginx/sbin/nginx" 
  6. prog="nginx" 
  7.  
  8. start() 
  9.     echo -n $"Starting $prog....." 
  10.     $nginx 
  11.     echo ".........ok" 
  12.     netstat -atlpn |grep nginx 
  13.     ps -ef|grep nginx:mastar 
  14. stop() 
  15.     echo -n $"Stoping $prog......" 
  16.     $nginx -s stop 
  17.     echo "..........ok" 
  18. reload() 
  19.     echo -n $"Reload $prog......" 
  20.     $nginx -s reload 
  21.     echo "...........ok" 
  22.  
  23. case "$1" in 
  24. start) 
  25.     start 
  26.     ;; 
  27. stop) 
  28.     stop 
  29.     ;; 
  30. restart) 
  31.     stop 
  32.     start 
  33.     ;; 
  34. reload) 
  35.     reload 
  36.     ;; 
  37. *) 
  38.     echo "Usage: $0 {start|stop|restart|reload}" 
  39.     exit 2; 
  40. esac 
 

你可能感兴趣的:(nginx,脚本,启动)