服务器nginx配置端口问题!!监听1588可以把1588修改成80就启动失败

遇到个问题,公司的服务器,nginx版本是0.83,启动是这样的


配置文件是这样的
sendfile on;

tcp_nopush          on;

tcp_nodelay         on;

keepalive_timeout   65;

types_hash_max_size 2048;

include             /etc/nginx/mime.types;

default_type        application/octet-stream;

# Load modular configuration files from the /etc/nginx/conf.d directory.

# See http://nginx.org/en/docs/ngx_core_module.html#include

# for more information.

include /etc/nginx/conf.d/*.conf;

server {

    listen       1588 default_server;

    listen       [::]:1588 default_server;

    server_name  _;

    root         /usr/share/nginx/html;

    # Load configuration files for the default server block.

    include /etc/nginx/default.d/*.conf;

    location / {

    }

    error_page 404 /404.html;

        location = /40x.html {

    }

    error_page 500 502 503 504 /50x.html;

        location = /50x.html {

    }

}

现在我想监听80端口,但是修改成80端口就启动不了,1588就行


本想重新配置个server监听80,但还是启动不了,现在很纳闷,有没有大佬知道
报错信息

Job for nginx.service failed because the control process exited with error code.
See “systemctl status nginx.service” and “journalctl -xe” for details.

你先看看80是不是被其他程序占用了,修改端口就启动失败,八成是这个问题。

:handshake: