小樱 发表于 2015/6/14 02:01

linux centos默认占用了25端口,master进程是什么,如何关闭它和禁止postfix开机启动

使用命令:netstat -apn



现在知道它的端口对应程序为master.但是它具体是什么程序呢?

locatemaster | grep '/master$'

发现路径是/usr/libexec/postfix/master

我们找到程序名postfix了,关闭它

/etc/init.d/postfix stop
或者
service postfix stop

永久方案:
开机不启动

chkconfig --level 2345 postfix off

centos 7
systemctl disable postfix

花谓伊人俏 发表于 2015/6/14 02:01

ILL 发表于 2017/5/9 21:51

这个好像是smtp吧

不可名 发表于 2017/5/9 23:19

看不懂

一脸萌比QAQ
页: [1]
查看完整版本: linux centos默认占用了25端口,master进程是什么,如何关闭它和禁止postfix开机启动