Enable or disabling services in linux machine
by Nirmala[ Edit ] 2009-04-02 11:35:07
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.