nginx não reinicia após alterar a porta

0

Eu tentei alterar a porta na qual o nginx atende de 80 a 6000. No entanto, recebo isso quando tento reiniciá-lo.

Restarting nginx: nginx: [emerg] bind() to 0.0.0.0:6000 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:6000 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:6000 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:6000 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:6000 failed (98: Address already in use)
nginx: [emerg] still could not bind()

Esta é a minha configuração ativada para sites.

server {
    listen   6000; ## listen for ipv4; this line is default and implied
    #listen   [::]:80 default_server ipv6only=on; ## listen for ipv6

    root /var/www/mywebsite.co/html;
    index index.html index.htm;

    # Make site accessible from http://localhost/
    server_name mywebsite.co www.website.co;

    location / {
            # First attempt to serve request as file, then
            # as directory, then fall back to displaying a 404.
            try_files $uri $uri/ /index.html;
            # Uncomment to enable naxsi on this location
            # include /etc/nginx/naxsi.rules
    }

    location /doc/ {
            alias /usr/share/doc/;
            autoindex on;
            allow 127.0.0.1;
            allow ::1;
            deny all;
    }
}

Tenho a sensação de que 0.0.0.0:6000 deve ser o endereço IP no qual o servidor é mantido, por exemplo, 192.168.1.3:6000 , mas não tenho certeza de como fazer isso. Qualquer ajuda seria apreciada obrigado.

    
por Stephen Fox 14.01.2015 / 19:40

3 respostas

1

Tente alterar #listen [::]:80 default_server ipv6only=on; ## listen for ipv6

Para: listen [::]:6000 ipv6only=on default_server ;

Se isso não funcionar, você pode netstat -natp | grep 6000 ver mais informações.

    
por 14.01.2015 / 19:52
1

A porta TCP 6000 é a porta normalmente usada pelo sistema X Window. Se você está em um sistema UNIX-ish que não é um Mac e está usando uma GUI, a porta 6000 provavelmente já está sendo usada pelo servidor X em execução na máquina local. É por isso que o nginx não está conseguindo se ligar a ele.

    
por 14.01.2015 / 21:06
0

para descobrir o que está sendo executado em uma porta bem conhecida (ou seja, tcp / 6000), você pode fazer algo como root:

for i in $(grep [WELLKNOWNPORT] /etc/services|awk '{print $1}'); do lsof|grep $i; done

    
por 15.01.2015 / 04:14