Nginx 在重启时挂起

Sp4*_*cat 3 nginx

我必须在后台运行 nginx 启动脚本,否则它在运行时不会返回到 shell - 它通过以下任一方式执行此操作

service nginx start
Run Code Online (Sandbox Code Playgroud)

.. 或者只是运行 ..

/etc/init.d/nginx
Run Code Online (Sandbox Code Playgroud)

.. 直接地。我不得不在后台运行它然后否认它..

在 Ubuntu 14.04.2、Nginx v 1.4.6 上运行

nginx -V 给了我们:

nginx version: nginx/1.4.6 (Ubuntu)
built by gcc 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
TLS SNI support enabled
configure arguments: --with-cc-opt='-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2' --with-ld-opt='-Wl,-Bsymbolic-functions -Wl,-z,relro' --prefix=/usr/share/nginx --conf-path=/etc/nginx/nginx.conf --http-log-path=/var/log/nginx/access.log --error-log-path=/var/log/nginx/error.log --lock-path=/var/lock/nginx.lock --pid-path=/run/nginx.pid --http-client-body-temp-path=/var/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-debug --with-pcre-jit --with-ipv6 --with-http_ssl_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_dav_module --with-http_geoip_module --with-http_gzip_static_module --with-http_image_filter_module --with-http_spdy_module --with-http_sub_module --with-http_xslt_module --with-mail --with-mail_ssl_module
Run Code Online (Sandbox Code Playgroud)

.. 和“bash -x nginx restart”返回..

+ PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+ DAEMON=/usr/sbin/nginx
+ NAME=nginx
+ DESC=nginx
+ '[' -f /etc/default/nginx ']'
+ . /etc/default/nginx
+ test -x /usr/sbin/nginx
+ set -e
+ . /lib/lsb/init-functions
+++ run-parts --lsbsysinit --list /lib/lsb/init-functions.d
++ for hook in '$(run-parts --lsbsysinit --list /lib/lsb/init-functions.d 2>/dev/null)'
++ '[' -r /lib/lsb/init-functions.d/20-left-info-blocks ']'
++ . /lib/lsb/init-functions.d/20-left-info-blocks
++ for hook in '$(run-parts --lsbsysinit --list /lib/lsb/init-functions.d 2>/dev/null)'
++ '[' -r /lib/lsb/init-functions.d/50-ubuntu-logging ']'
++ . /lib/lsb/init-functions.d/50-ubuntu-logging
+++ LOG_DAEMON_MSG=
++ FANCYTTY=
++ '[' -e /etc/lsb-base-logging.sh ']'
++ true
+ case "$1" in
+ echo -n 'Restarting nginx: '
Restarting nginx: + start-stop-daemon --stop --quiet --pidfile /var/run/nginx.pid --exec /usr/sbin/nginx
+ sleep 1
nginx.
+ test_nginx_config
+ /usr/sbin/nginx -t
+ return 0
+ start-stop-daemon --start --quiet --pidfile /var/run/nginx.pid --exec /usr/sbin/nginx --
Run Code Online (Sandbox Code Playgroud)

..然后什么都没有。

配置:

配置文件

# Generic startup file.
user www-data developers;

#ususally equal to number of CPU's you have. run command "grep processor /proc/cpuinfo | wc -l" to find it
worker_processes auto;

error_log  /var/log/nginx/error.log;
pid        /var/run/nginx.pid;

# Keeps the logs free of messages about not being able to bind().
daemon     off;

events {
    worker_connections  1024;
}

http {
#   rewrite_log on;

    include mime.types;
    default_type       application/octet-stream;
    access_log         /var/log/nginx/access.log;
    sendfile           on;
#   tcp_nopush         on;
    keepalive_timeout  3;
#   tcp_nodelay        on;
#   gzip               on;
        #php max upload limit cannot be larger than this
    client_max_body_size 13m;

fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;

    index              index.php index.html index.htm;

    # Upstream to abstract backend connection(s) for PHP.
    upstream php {
                #this should match value of "listen" directive in php-fpm pool
        server unix:/var/run/php5-fpm.sock;
    }

    include sites-enabled/*;
}
Run Code Online (Sandbox Code Playgroud)

任何见解将不胜感激。

Mic*_*ton 6

init 脚本,特别是 helper start-stop-daemon,希望它开始的程序默认将自己置于后台。但是,有人错误地更改了您的 nginx 配置以防止它执行此操作:

# Keeps the logs free of messages about not being able to bind().
daemon     off;
Run Code Online (Sandbox Code Playgroud)

这部分应该完全删除。首先,nginx应该是守护进程。其次,如果出现这种关于无法 bind() 的消息,不是因为 nginx 作为守护进程运行,而是因为当有人试图启动第二个副本时 nginx 已经在运行。