热门标签 | HotTags
当前位置:  开发笔记 > 运维 > 正文

redhat系统如何关闭sendmail服务

新安装的redhat系统(rhel5),发现启动的时候,总是在sendmail服务这停止很长的时间。这是因为配置问题,如果不需要,直接关闭sendmail服务。临时关闭sendmail服务器(service命令)查看sendmail服务的运行状态:servicesendmailstatus停止sendmail服

新安装的redhat系统(rhel5),发现启动的时候,总是在sendmail服务这停止很长的时间。

这是因为配置问题,如果不需要,直接关闭sendmail服务。


临时关闭sendmail
服务器(service命令)

查看sendmail服务的运行状态:

service sendmail status

停止sendmail服务:

service sendmail stop

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

彻底关闭sendmail服务(chkconfig

chkconfig --list sendmail

显示服务的运行信息:

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

关闭sendmail服务

chkconfig --level 2345 sendmail off

再次显示服务的运行信息:

chkconfig --list sendmail

这样就可以在下次系统启动的时禁止sendmail服务启动了。


推荐阅读
author-avatar
倒带灬樱花巷_317
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有