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

标签:
centos |
分类: CentOS |
现在知道它的端口对应程序为master.但是它具体是什么程序呢?
locate master | grep
'/master$'
发现路径是/usr/libexec/postfix/master
我们找到程序名postfix了,关闭它
/etc/init.d/postfix stop
chkconfig
--list
#列出所有的系统服务
永久方案:
开机不启动
chkconfig
--level 2345 postfix off