
使用命令检查端口占用进程:
ss -tulnp | grep :25
常见占用 25 端口的程序: Exim, Postfix, Sendmail
几个常用的Debian服务可以关闭 exim4 rpcbind nfs
debian镜像,这里我们直接卸载
卸载exim4
apt-get purge --auto-remove exim4 exim4-base exim4-config exim4-daemon-light
rm -rf /var/log/exim4/
卸载rpcbind
apt-get purge --auto-remove rpcbind
卸载nfs
apt-get purge --auto-remove nfs-kernel-server nfs-common portmap
这里我们是直接彻底卸载的,我们也可以不卸载就关闭。
systemctl disable nfs-common
systemctl disable rpcbind
systemctl disable exim4
systemctl stop nfs-common
systemctl stop rpcbind
systemctl stop exim4
© 版权声明
THE END