最近把blog换成了ngnix+php+mysql 感觉比apache占用资源少,很好用的东西.在次感谢tivon大哥的帮助...
1.建立脚本

CODE:
vi /etc/init.d/nginxd

 

2.更改权限

 

CODE:
chmod 775 /etc/init.d/nginxd

 

3,修改脚本

 

CODE:
 
  1. #!/bin/bash 
  2. # chkconfig: - 85 15 
  3. # description: Nginx is a World Wide Web server. 
  4. # processname: nginx 
  5.  
  6. nginx=/usr/local/nginx/sbin/nginx 
  7. conf=/usr/local/nginx/conf/nginx.conf 
  8. case $1 in 
  9. start) 
  10. echo -n "Starting Nginx" 
  11. $nginx -c $conf 
  12. echo " done" 
  13. ;; 
  14.  
  15. stop) 
  16. echo -n "Stopping Nginx" 
  17. killall -9 nginx 
  18. echo " done" 
  19. ;; 
  20.  
  21. test) 
  22. $nginx -t -c $conf 
  23. ;; 
  24.  
  25. reload) 
  26. echo -n "Reloading Nginx" 
  27. ps auxww | grep nginx | grep master | awk '{print $2}' | xargs kill -HUP 
  28. echo " done" 
  29. ;; 
  30.  
  31. restart) 
  32. $0 stop 
  33. $0 start 
  34. ;; 
  35.  
  36. show) 
  37. ps -aux|grep nginx 
  38. ;; 
  39.  
  40. *) 
  41. echo -n "Usage: $0 {start|restart|reload|stop|test|show}" 
  42. ;; 
  43.  
  44. esac 

 

到现在脚本建立好了,设置开机启动

 

CODE:
chkconfig nginxd on