我在Ubunto 10:04上使用nginx和Django。问题是当我重新启动nginx时出现此错误。
sudo /etc/init.d/nginx restart
Restarting nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
configuration file /etc/nginx/nginx.conf test is successful
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)
此外,我已尝试停止然后启动但仍然收到错误。
这是lsof:
的输出sudo lsof -i tcp:80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 27141 root 6u IPv4 245906 0t0 TCP *:www (LISTEN)
nginx 27142 nobody 6u IPv4 245906 0t0 TCP *:www (LISTEN)
如果我使用PID 27141终止进程,它可以工作。但是,我想深究 为什么我不能只是重新启动。
这是nginx.conf:
worker_processes 1;
user nobody nogroup;
pid /tmp/nginx.pid;
error_log /tmp/nginx.error.log;
events {
worker_connections 1024;
accept_mutex off;
}
http {
include mime.types;
default_type application/octet-stream;
access_log /tmp/nginx.access.log combined;
sendfile on;
upstream app_server {
# server unix:/tmp/gunicorn.sock fail_timeout=0;
# For a TCP configuration:
server 127.0.0.1:8000 fail_timeout=0;
}
server {
listen 80 default;
client_max_body_size 4G;
server_name _;
keepalive_timeout 5;
# path for static files
root /home/apps/venvs/app1/app1;
location / {
# checks for static file, if not found proxy to app
try_files $uri @proxy_to_app;
}
location @proxy_to_app {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://app_server;
}
error_page 500 502 503 504 /500.html;
location = /500.html {
root /path/to/app/current/public;
}
}
}
有什么想法吗?
答案 0 :(得分:31)
尝试:
$ sudo fuser -k 80/tcp ; sudo /etc/init.d/nginx restart
答案 1 :(得分:4)
这对我有用
sudo fuser -k 80 / tcp
然后
服务nginx开始
来源:https://rtcamp.com/tutorials/nginx/troubleshooting/emerg-bind-failed-98-address-already-in-use/
答案 2 :(得分:2)
daemontools成功启动nginx,然后是nginx daemonizes,然后daemontools再次尝试启动nginx,但未成功,将错误记录到日志中。
此问题的解决方案是在nginx.conf的主要部分中禁用守护进程模式:
守护进程关闭;
答案 3 :(得分:1)
厌倦了nginx重启问题和“使用中的地址”错误。决定让它一劳永逸地工作。
在/etc/init.d/nginx文件的最后一站和重启动作中只添加了一行
nginx -s quit
所以现在看起来像(并确保nginx文件夹在PATH变量中,否则指定完整路径)
stop)
echo -n "Stopping $DESC: "
start-stop-daemon --stop --quiet --pidfile /var/run/$NAME.pid \
--exec $DAEMON || true
echo "$NAME."
nginx -s quit
;;
restart|force-reload)
echo -n "Restarting $DESC: "
start-stop-daemon --stop --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON || true
nginx -s quit
sleep 1
test_nginx_config
start-stop-daemon --start --quiet --pidfile \
/var/run/$NAME.pid --exec $DAEMON -- $DAEMON_OPTS || true
echo "$NAME."
;;
希望此解决方案适用于其他人。
答案 4 :(得分:0)
首先测试你的配置,它会显示语法错误和重复的行,并指向你那里。
nginx -t
您将看到日志,显示导致失败的原因。
答案 5 :(得分:0)
因为您没有以root用户身份重新启动。
更改为root:
sudo -i
重新启动:
service nginx restart
或者:
/etc/init.d/nginx restart