포트 변경 후 nginx가 다시 시작되지 않습니다

포트 변경 후 nginx가 다시 시작되지 않습니다

nginx가 수신 대기하는 포트를 80에서 6000으로 변경해 보았습니다. 그러나 다시 시작하려고 하면 이런 메시지가 나타납니다.

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()

내 사이트에서 활성화된 설정은 다음과 같습니다.

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;
    }
}

0.0.0.0:6000서버가 위치한 IP 주소여야 한다고 생각 192.168.1.3:6000하는데 어떻게 해야 할지 모르겠습니다. 어떤 도움이라도 대단히 감사하겠습니다.

답변1

변화를 시도하다#listen [::]:80 default_server ipv6only=on; ## listen for ipv6

도착하다: listen [::]:6000 ipv6only=on default_server;

그래도 문제가 해결되지 않으면 netstat -natp | grep 6000더 많은 정보를 볼 수 있습니다.

답변2

TCP 포트 6000은 X 윈도우 시스템에서 일반적으로 사용되는 포트입니다. Mac이 아닌 UNIX 시스템을 사용하고 있고 GUI를 사용하고 있는 경우 포트 6000은 로컬 시스템에서 실행되는 X 서버에서 이미 사용 중일 가능성이 높습니다. 이것이 nginx가 바인딩할 수 없는 이유입니다.

답변3

잘 알려진 포트(예: tcp/6000)에서 무엇이 실행되고 있는지 알아보려면 루트로 다음을 수행할 수 있습니다.

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

관련 정보