|
|
Enable or disabling services in linux machine - Linux
|
Views : 661
|
|
Tagged in : Linux
|
|
|
Report This Scrap as Inappropriate We request you to choose the appropriate categroy and subcategory that suits your
objectionable concern about the scrap, So that our team can review and find out whether it violates our Guidelines or the
scrap is not suitable for all viewers.
|
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 |
|
|
|