Linux系统如何关闭sendmail邮件服务
思韵闪耀
2013-03-18
0

1、查看sendmail状态:

# service sendmail status

sendmailsendmail.service - LSB: start and stop sendmail

 Loaded: loaded (/etc/rc.d/init.d/sendmail)

 Active: active (running) since Mon, 14 Jan 2013 11:30:09 +0800; 8min ago

Process: 1231 ExecStart=/etc/rc.d/init.d/sendmail start (code=exited, status=0/SUCCESS)

Main PID: 1410 (sendmail)

 CGroup: name=systemd:/system/sendmail.service

 ├ 1410 sendmail: accepting connections

 └ 1419 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue

sm-clientsendmail.service - LSB: start and stop sendmail

 Loaded: loaded (/etc/rc.d/init.d/sendmail)

 Active: active (running) since Mon, 14 Jan 2013 11:30:09 +0800; 8min ago

Process: 1231 ExecStart=/etc/rc.d/init.d/sendmail start (code=exited, status=0/SUCCESS)

Main PID: 1410 (sendmail)

 CGroup: name=systemd:/system/sendmail.service

 ├ 1410 sendmail: accepting connections

 └ 1419 sendmail: Queue runner@01:00:00 for /var/spool/clientmqueue

2、关闭sendmail,禁止开机启动:

# service sendmail stop

Shutting down sm-client: [OK]

Shutting down sendmail: [OK]

注:service命令虽然已经关掉了sendmial服务,但是在下次重新启动OS的时候,还是会随OS启动而启动。

# chkconfig --listsendmail

sendmail        0:off   1:off   2:on    3:on    4:on    5:on    6:off

可以看到在启动模式2/3/4/5都是默认启动的,全部禁止:

# chkconfig --level 2 sendmail off

# chkconfig --level 3 sendmail off

# chkconfig --level 4 sendmail off

# chkconfig --level 5 sendmail off

(以上命令可以用# chkconfig --levels 2345 sendmail off替代)

# chkconfig --list sendmail

sendmail        0:off   1:off   2:off   3:off   4:off   5:off   6:off

# setup

中sendmail前面[]中的*也没有了。


【版权声明】
本站部分内容来源于互联网,本站不拥有所有权,不承担相关法律责任。如果发现本站有侵权的内容,欢迎发送邮件至masing@13sy.com 举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。

相关内容

热门资讯

Discus X论坛配置sen... Discuz x2.5 后台邮件设置方法其实和X2/x1.5基本一样,但很多同学都不注意一些细节,比...
redhat Linux系统配... 1 .检查Send Mail 的安装包 [root@sql root]# rpm -qa | gre...
使用Sendmail的反垃圾邮... 在最近几年,无处不在的垃圾邮件已使得所有邮件箱不堪重负,不断地需要工具以抗击这一无穷尽的垃圾邮件流。...