Ubuntu上的Nginx给出了“已经在使用的地址”错误

时间:2015-04-08 19:49:03

标签: ubuntu nginx meteor dns virtualhost

我正在尝试设置我的VPS(在DigitalOcean上使用Ubuntu)来运行Meteor应用程序,但是在处理Nginx配置时我很早就遇到了麻烦。当我尝试重新启动Nginx时,为了为域名加载新的.conf文件,它会显示以下错误:

  

[emerg] 3597#0:bind()到0.0.0.0:80失败(98:地址已在使用中)

它在日志中重复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 让它重新加载配置文件,但它只是说“[fail]。在nginx错误日志中( /var/log/nginx/error.log),打印这些行:

  

2015/04/08 15:43:02 [emerg] 4103#0:bind()到0.0.0.0:80失败(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:bind()到0.0.0.0:80失败(98:地址已经在   使用)2015/04/08 15:43:02 [emerg] 4103#0:bind()到0.0.0.0:80失败   (98:地址已在使用中)2015/04/08 15:43:02 [emerg] 4103#0:   bind()到0.0.0.0:80失败(98:地址已在使用中)2015/04/08   15:43:02 [emerg] 4103#0:仍然无法绑定()

我真的很感激你在这个问题上给我的任何见解。

4 个答案:

答案 0 :(得分:0)

尝试使用netstat -lnp来确定绑定到该端口的程序。

答案 1 :(得分:0)

您在端口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

答案 2 :(得分:0)

我找到了解决方案:Meteor Up配置中的端口3001的设置尚未实现。我需要运行mup setup& mup再次部署以从默认值80切换到端口3001.之后,它可以工作。

答案 3 :(得分:0)

查找端口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使用的默认端口,可以更改它

然后启动您的nginx

$ nginx -c /path/to/your/nginx.conf