Enable or disabling services in linux machine - Linux Views : 661
Tagged in : Linux
1 0
Send mail
Hi...
To list the services for all levels use the below command
#/sbin/chkconfig --list



To enable the specific service use the below command
#/sbin/chkconfig --level 3 crond on

crond service will be enabled at runlevel 3.


To disable the specific service use the below command
#/sbin/chkconfig --level 3 crond off

crond service will be disabled at runlevel 3.
By Nirmala, On - 2009-04-02



    Login to add Comments .