【Nginx80端口被占用】80端口被System占用如何解决【已解决】

【Nginx80端口被占用】80端口被System占用如何解决【已解决】

01 问题背景

  • Nginx 版本 1.19及以上
  • 80端口被System占用,无法kill
tcp6 0 0 :::111   :::*    LISTEN   1/systemd           
tcp6 0 0 :::80    :::*    LISTEN   1/systemd  
  • 执行以下代码无效( 强制杀死进程,xxx是【1/systemd】的【1】)
kill -9 xxx 
kill -9 1

02 问题原因

  • 系统占用了Nginx的默认端口,且系统无法被kill ,结束进程
  • 修改/nginx.conf无用是因为Nginx的版本【已解决】
  • 最新版本要修改子文件配置,子文件优先级更高

03 问题解决方式

1.修改主文件配置

2.修改子文件配置

3.重启nginx

  • 以我的Nginx 配置类 /www/server/nginx/conf/nginx.conf 为例子
  • 以下是查找Nginx的方式
find / -name "nginx.conf"
  • 查出来的结果在执行vim修改
vim /usr/local/nginx/conf/nginx.conf
  • 进入点按i,进入修改模式
user  www www;
worker_processes auto;
error_log  /www/wwwlogs/nginx_error.log  crit;
pid        /www/server/nginx/logs/nginx.pid;
worker_rlimit_nofile 51200;

stream {
    log_format tcp_format '$time_local|$remote_addr|$protocol|$status|$bytes_sent|$bytes_received|$session_time|$upstream_addr|$upstream_bytes_sent|$upstream_bytes_received|$upstream_connect_time';
  
    access_log /www/wwwlogs/tcp-access.log tcp_format;
    error_log /www/wwwlogs/tcp-error.log;
    include /www/server/panel/vhost/nginx/tcp/*.conf;
}

events
    {
        use epoll;
        worker_connections 51200;
        multi_accept on;
    }

http
    {
        include       mime.types;
		#include luawaf.conf;

		include proxy.conf;
        lua_package_path "/www/server/nginx/lib/lua/?.lua;;";

        default_type  application/octet-stream;

        server_names_hash_bucket_size 512;
        client_header_buffer_size 32k;
        large_client_header_buffers 4 32k;
        client_max_body_size 50m;

        sendfile   on;
        tcp_nopush on;

        keepalive_timeout 60;

        tcp_nodelay on;

        fastcgi_connect_timeout 300;
        fastcgi_send_timeout 300;
        fastcgi_read_timeout 300;
        fastcgi_buffer_size 64k;
        fastcgi_buffers 4 64k;
        fastcgi_busy_buffers_size 128k;
        fastcgi_temp_file_write_size 256k;
		fastcgi_intercept_errors on;

        gzip on;
        gzip_min_length  1k;
        gzip_buffers     4 16k;
        gzip_http_version 1.1;
        gzip_comp_level 2;
        gzip_types     text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/json image/jpeg image/gif image/png font/ttf font/otf image/svg+xml application/xml+rss text/x-js;
        gzip_vary on;
        gzip_proxied   expired no-cache no-store private auth;
        gzip_disable   "MSIE [1-6]\.";

        limit_conn_zone $binary_remote_addr zone=perip:10m;
		limit_conn_zone $server_name zone=perserver:10m;

        server_tokens off;
        access_log off;

server
    {
        listen  256;
        server_name phpmyadmin;
        index heita.html;
        root  /www/server/phpmyadmin;

        #error_page   404   /404.html;
        include enable-php.conf;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /www/wwwlogs/access.log;
    }
include /www/server/panel/vhost/nginx/*.conf;
}


  • 修改listen 监听窗口为256【任意没有被占用的端口】
server
    {
        listen  256;
        server_name phpmyadmin;
        index heita.html;
        root  /www/server/phpmyadmin;

        #error_page   404   /404.html;
        include enable-php.conf;

  • 按 Esc退出后按英文冒号:
  • 最下方出现【:】后输入wq+enter,保持修改
重点来了,最新版本要修改子文件配置,子文件优先级更高
  • 进入/www/server/panel/vhost/nginx/*.conf中的文件,我这里是phpfpm_status.conf
include /www/server/panel/vhost/nginx/*.conf;
  • 以下是指令
vim  /www/server/panel/vhost/nginx/phpfpm_status.conf
  • 同样的修改listen 为256
  • 保存方式同上
  • 更新配置文件
./nginx -s reload    (可以不关闭nginx的情况下更新配置文件)
  • 8
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

宣布无人罪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值