Linux Nginx相关问题解决方案

希望我的一点经验能给大家带来帮助,导致Linux Nginx出错的原因也许还有很多,不过在你遇到错误时,可以先检查一下你程序中的字符串,暂时把他们置为,试试看。没准就是他引起Linux Nginx问题啊。

  1. #!/bin/bash  
  2. # v.0.0.1  
  3. # create by jackbillow at 2007.10.15  
  4. # nginx - This shell script takes care of starting and stopping nginx.  
  5. # chkconfig: - 60 50  
  6. # description: nginx [engine x] is light http web/proxy server  
  7. # that answers incoming ftp service requests.  
  8. # processname: nginx  
  9. # config: /usr/local/nginx/conf/nginx.conf  
  10. nginx_path="/usr/local/nginx" 
  11. nginx_pid="/var/run/nginx/nginx.pid" 
  12. # Source function library.  
  13. . /etc/rc.d/init.d/functions  
  14. # Source networking configuration.  
  15. . /etc/sysconfig/network  
  16. # Check that networking is up.  
  17. [ ${NETWORKING} = "no" ] && exit 0  
  18. [ -x $nginx_path/sbin/nginx ] || exit 0  
  19. RETVAL=0 
  20. prog="nginx" 
  21. start() {  
  22. # Start daemons.  
  23. if [ -e $nginx_pid -a ! -z $nginx_pid ];then  
  24. echo "nginx already running...."  
  25. exit 1  
  26. fi  
  27. if [ -e $nginx_path/conf/nginx.conf ];then  
  28. echo -n $"Starting $prog: "  
  29. $nginx_path/sbin/nginx -c $nginx_path/conf/nginx.conf &  
  30. RETVAL=$?  
  31. [ $RETVAL -eq 0 ] && {  
  32. touch /var/lock/subsys/$prog  
  33. success $"$prog"  
  34. }  
  35. echo  
  36. else  
  37. RETVAL=1 
  38. fi  
  39. return $RETVAL  
  40. }  
  41. # Stop daemons.  
  42. stop() {  
  43. echo -n $"Stopping $prog: "  
  44. killproc -d 10 $nigx_path/sbin/nginx  
  45. RETVAL=$?  
  46. echo  
  47. [ $RETVAL = 0 ] && rm -f $nginx_pid /var/lock/subsys/$prog  
  48. }  
  49. # See how we were called.  
  50. case "$1" in  
  51. start)  
  52. start  
  53. ;;  
  54. stop)  
  55. stop  
  56. ;;  
  57. reconfigure)  
  58. stop  
  59. start  
  60. ;;  
  61. status)  
  62. status $prog  
  63. RETVAL=$?  
  64. ;;  
  65. *)  
  66. echo $"Usage: $0 {start|stop|reconfigure|status}"  
  67. exit 1  
  68. esac  
  69. exit $RETVAL 

以上就是对Linux Nginx的详细介绍,希望大家有所收获。