1、查询sendmail运行状态
[root@even202 ~]# service sendmail status
sendmail (pid 2557) 正在运行...
2、杀掉进程
[root@even202 ~]# killall sendmail
3、关闭服务
[root@even202 ~]# service sendmail stop
关闭 sm-client: [失败]
关闭 sendmail: [确定]
4、确认服务状态
[root@even202 ~]# service sendmail status
sendmail 已停
5、关闭系统启动服务
[root@even202 ~]# chkconfig sendmail off
6、查查询系统启动服务情况
[root@even202 ~]# chkconfig --list sendmail
sendmail 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭
[root@even202 ~]#
[root@even202 ~]#