snippetbashTip
chkconfig — Manage the runlevel of services on CentOS 6. More information: <https://manned.org/chkconfig>.
Viewed 0 times
thecommandservicesrunlevelclimanagecentoschkconfig
linux
Problem
How to use the
chkconfig command: Manage the runlevel of services on CentOS 6. More information: <https://manned.org/chkconfig>.Solution
chkconfig — Manage the runlevel of services on CentOS 6. More information: <https://manned.org/chkconfig>.List services with runlevel:
chkconfig --listShow a service's runlevel:
chkconfig --list {{ntpd}}Enable service at boot:
chkconfig {{sshd}} onEnable service at boot for runlevels 2, 3, 4, and 5:
chkconfig --level {{2345}} {{sshd}} onDisable service at boot:
chkconfig {{ntpd}} offDisable service at boot for runlevel 3:
chkconfig --level {{3}} {{ntpd}} offCode Snippets
List services with runlevel
chkconfig --listShow a service's runlevel
chkconfig --list {{ntpd}}Enable service at boot
chkconfig {{sshd}} onEnable service at boot for runlevels 2, 3, 4, and 5
chkconfig --level {{2345}} {{sshd}} onDisable service at boot
chkconfig {{ntpd}} offContext
tldr-pages: linux/chkconfig
Revisions (0)
No revisions yet.