查询哪个程序占用了443端口
1 |
netstat -pntl | grep 443 |
显示为apache2占用
1 |
tcp6 0 0 :::443 :::* LISTEN 6836/apache2 |
关闭Apache的443端口监听
关闭SSL模组
1 |
a2dismod ssl |
关闭默认的Apache配置文件
1 |
a2dissite 000-default-le-ssl |
重启apache
1 |
systemctl reload apache2 |
重新查询端口占用
1 |
netstat -pntl | grep 443 |
无显示占用
There are no comments yet