1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

chkconfig: add page (#2217)

This commit is contained in:
Tung Ha 2018-07-29 06:17:58 +08:00 committed by Starbeamrainbowlabs
parent d1280cfc5c
commit d432ed3c39

27
pages/linux/chkconfig.md Normal file
View file

@ -0,0 +1,27 @@
# chkconfig
> Manage the runlevel of services on CentOS 6.
- List services with runlevel:
`chkconfig --list`
- Show a service's runlevel:
`chkconfig --list {{ntpd}}`
- Enable service at boot:
`chkconfig {{sshd}} on`
- Enable service at boot for runlevels 2, 3, 4, and 5:
`chkconfig --level {{2345}} {{sshd}} on`
- Disable service at boot:
`chkconfig {{ntpd}} off`
- Disable service at boot for runlevel 3:
`chkconfig --level {{3}} {{ntpd}} off`