nginx: Endereço já em uso

0

Eu tenho um VPS de autogerenciamento de baixo custo que mantenho usando o Ubuntu 16.04 que uso para executar um site pequeno usando o nginx. Houve uma interrupção do serviço e depois que isso foi reparado, o site estava off-line e notei que o apache estava listado como o servidor da web.

Eu fiz o login e o syslog mostra

May 27 09:27:24 server systemd[1]: Starting A high performance web server and a reverse proxy server...
May 27 09:27:25 server nginx[3715]: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
May 27 09:27:25 server nginx[3715]: nginx: [emerg] bind() to 0.0.0.0:443 failed (98: Address already in use)

deploy@server:~$ sudo netstat -tulpn
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State       PID/Program name
tcp        0      0 0.0.0.0:443             0.0.0.0:*               LISTEN      322/sshd
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      189/rpcbind
tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      598/apache2
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      322/sshd
tcp        0      0 0.0.0.0:25              0.0.0.0:*               LISTEN      517/master
tcp6       0      0 :::111                  :::*                    LISTEN      189/rpcbind
tcp6       0      0 :::25                   :::*                    LISTEN      517/master
udp        0      0 0.0.0.0:789             0.0.0.0:*                           189/rpcbind
udp        0      0 0.0.0.0:111             0.0.0.0:*                           189/rpcbind
udp6       0      0 :::789                  :::*                                189/rpcbind
udp6       0      0 :::111                  :::*                                189/rpcbind

Parece que as portas originalmente servidas pelo Nginx estão sendo tomadas pelo Apache e pelo sshd?

O que eu faço para voltar ao nginx online?

    
por user61629 27.05.2018 / 15:45

0 respostas