解决Linux Nginx相关问题的方案

来源:爱站网时间:2020-12-17编辑:网友分享
在使用Linux Nginx的时候难免会因为自己的失误导致出现错误,那么下面我们就跟爱站小编一起去看看解决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相关问题的方案,其实我们在遇到问题的时候可以先检查一下你程序中的字符串,暂时把他们置为,试试看。没准就是他引起Linux Nginx问题啊。

上一篇:Linux服务器无法更改密码怎么办

下一篇:关闭Linux服务器ping响应怎么办

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载