centos7默认占用了25端口,是什么进程?关闭禁止它开机启动
默认开机启动有个端口25的开启,如何找到进程关闭呢?
netstat -tanp #查看端口,带PID名
现在知道它的端口对应程序为master,但是它具体是什么程序呢?
find / -name master #查了一下位置
找到程序对应程序是:/usr/libexec/postfix/master
我们找到程序名是postfix
systemctl stop postfix #停止服务 systemctl disable postfix #禁止开机启动