> CentOS > CentOS入门 >

CentOS关闭不需要的服务

1.smartd检查硬盘故障,虚拟的硬盘是无法用这个服务来检查,只对实体的装置才有用。
service smartd stop  //停止服务
chkconfig smartd off  //设定不启动

2.apmd电源管理,没有UPS或是没有电池的电脑这是没用的。 
service apmd stop 
chkconfig apmd off

3.autofs自动挂载服务,通常server所需要挂载都是固定的,除非是特殊的目的,否则用处不大。 
service autofs stop 
chkconfig autofs off

4.bluetooth蓝芽,Server应该是不太需要用蓝芽。 
service bluetooth stop 
chkconfig bluetooth off

5.cups列印,如果列印需求的机器才需要打开。 
service cups stop 
chkconfig cups off

6.iptable6,建议交由防火墙来管理连线。 
service ip6table stop 
chkconfig ip6table off

7.iptable,建议交由防火墙来管理连线。 
service iptable stop 
chkconfig iptable off

8.isdn,如果有需要建立ISDN的环境,才需要使用 。
service isdn stop 
chkconfig idsn off

9.hidd ,一些蓝芽的输入装置,如键盘滑鼠等。
service hidd stop 
chkconfig hidd off

10.pcscd给smart card用的,目前手上没有这种机器,所以都是关掉的。 
service pcscd stop 
chkconfig pcscd off


11.pcmcia给pcmcia用的,目前Server很少用到pcmcia,关掉。 
service pcmcia off 
service pcmcia off

12.sendmail是邮件传输代理程序,可以关闭。
service sendmail stop 
chkconfig sendmail off

13.yum-updatesd,yum自动升级程式,已经上线的主机建议是不要启用。
service yum-updatesd stop 
chkconfig yum-updatesd off 



 

(责任编辑:IT)