Ubuntu上的Nginx给出“地址已在使用”错误
Posted
技术标签:
【中文标题】Ubuntu上的Nginx给出“地址已在使用”错误【英文标题】:Nginx on Ubuntu giving "address already in use" error 【发布时间】:2015-06-13 23:12:30 【问题描述】:我正在尝试设置我的 VPS(DigitalOcean 上的 Ubuntu)来运行 Meteor 应用程序,但在处理 nginx 配置时遇到了障碍。当我尝试重新启动 Nginx 以使其为域名加载新的 .conf 文件时,它显示此错误:
[emerg] 3597#0: bind() to 0.0.0.0:80 failed (98: Address already in use)
它在日志中重复 5 次并以:
结尾[emerg] 3597#0:仍然无法绑定()
这里是 Nginx 的主要配置 (/etc/nginx/nginx.conf) 的转储:
user www-data;
worker_processes 4;
pid /run/nginx.pid;
events
worker_connections 768;
# multi_accept on;
http
##
# Basic Settings
##
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
##
# Logging Settings
##
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
# Gzip Settings
##
gzip on;
gzip_disable "msie6";
# gzip_vary on;
# gzip_proxied any;
# gzip_comp_level 6;
# gzip_buffers 16 8k;
# gzip_http_version 1.1;
# gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml $
##
# nginx-naxsi config
##
# Uncomment it if you installed nginx-naxsi
##
#include /etc/nginx/naxsi_core.rules;
##
# nginx-passenger config
##
# Uncomment it if you installed nginx-passenger
##
#passenger_root /usr;
#passenger_ruby /usr/bin/ruby;
##
# Virtual Host Configs
##
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
我在可用站点或启用站点的目录(包括“默认”站点)中没有任何内容,因为我的理解是 Meteor(通过 Node)将为应用程序提供服务,所以我们需要 Nginx 提供的只是虚拟主机处理。我的应用名为 Loyr,所以我创建了 /etc/nginx/conf.d/loyr.conf:
server
listen 80;
server_name loyr.co;
location /
proxy_pass http://localhost:3001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection ‘upgrade’;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
在我将该文件写入 conf.d 目录后,我使用 service nginx restart 让它重新加载配置文件,但它只是说“[失败]。在 nginx 错误日志中( /var/log/nginx/error.log),这些行被打印出来:
2015/04/08 15:43:02 [emerg] 4103#0: bind() to 0.0.0.0:80 failed (98: 地址已在使用中)2015/04/08 15:43:02 [emerg] 4103#0: bind() to 0.0.0.0:80 失败(98:地址已在使用中)2015/04/08 15:43:02 [emerg] 4103#0:绑定()到 0.0.0.0:80 失败(98:地址已在 使用)2015/04/08 15:43:02 [emerg] 4103#0:绑定()到 0.0.0.0:80 失败 (98:地址已在使用中)2015/04/08 15:43:02 [emerg] 4103#0: 绑定()到 0.0.0.0:80 失败(98:地址已在使用中)2015/04/08 15:43:02 [emerg] 4103#0:仍然无法绑定()
非常感谢您就这个问题给我的任何见解。
【问题讨论】:
你还有什么其他东西可以像Apache一样绑定到80端口吗? 它说节点正在端口 80 上运行。我该如何更改?它需要在那个端口上运行吗? 杀死任何进程在端口 80 上运行节点并从那里开始。 在我之前的评论中,我说node运行在80端口。这是一个meteor应用,运行在node上,所以node需要运行在服务器上。 这个服务器正在使用 Nginx ......我的整个问题都是关于 Nginx 的。 Apache 不在此服务器上。节点在 80 端口上运行。我是否应该发布一个不同的问题,关于为什么节点在 80 端口上以及如何让 Nginx 使用它? 【参考方案1】:尝试使用netstat -lnp
来确定绑定到该端口的程序。
【讨论】:
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 20686/node【参考方案2】:您在端口 80 上运行了其他东西,使用 netstat -ntlp| grep :80
找出是什么:
[root@TIAGO-TEST ~]# netstat -ntlp | grep :80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 21224/ngin
【讨论】:
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 20686/node 看起来节点在 80 上运行。难道不需要这样做才能让流星应用程序工作吗?【参考方案3】:我找到了解决方案:我在 Meteor Up 配置中设置的端口 3001 尚未实现。我需要再次运行 mup setup & mup deploy 以从默认的 80 端口切换到端口 3001。之后,它工作了。
【讨论】:
【参考方案4】:发现你的 80 端口被谁使用了。
$ netstat -ntpl
Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name
tcp 0 0 127.0.0.1:49152 0.0.0.0:* LISTEN 5968/uwsgi
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN 702/mysqld
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 6127/nginx: worker
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 6127/nginx: worker
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 382/systemd-resolve
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 865/sshd
tcp6 0 0 :::80 :::* LISTEN 6127/nginx: worker
如果你不需要使用80端口的程序,你可以通过
kill $PID
或者你可以改变 nginx.conf 像
server
listen 90;
server_name loyr.co;
location /
proxy_pass http://localhost:3001;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection ‘upgrade’;
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
80是http使用的默认端口,改一下就ok了
然后启动你的 nginx
$ nginx -c /path/to/your/nginx.conf
【讨论】:
以上是关于Ubuntu上的Nginx给出“地址已在使用”错误的主要内容,如果未能解决你的问题,请参考以下文章
snmptrapd 日志记录错误 - 无法打开 udp:162 -- errno 98(“地址已在使用中”)
Maven - java.net.BindException:地址已在使用中