• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
  • Skip to footer navigation

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • VCS
  • Interview Questions
  • Database
    • MariaDB
  • DevOps
    • Docker
    • Shell Scripting
  • Big Data
    • Hadoop
    • Cloudera
    • Hortonworks HDP

chkconfig Command Examples in Linux

by admin

The chkconfig command can be used to control services at each runlevel. It can also be used to start or stop services during system startup.

Syntax

The syntax of the chkconfig command is:

# chkconfig [options] [service] [subcommand]

The following are some subcommands and options that can be used with chkconfig to control services.

Option Used To
{service} on Enable a service to be started on boot.
{service} off Disable a service so that it is no longer started on boot.
{service} reset Reset the status of a service.
–level {runlevel} Specify the runlevel in which to enable or disable a service.

chkconfig Command Examples

1. To see the current runlevel states for all the services:

# chkconfig --list 

2. To list a particular service status:

# chkconfig --list nfs 

3. To add a service script into the runlevel:

# chkconfig --add /etc/init.d/myservice.sh 

4. To delete a service script from the runlevels:

# chkconfig --del /etc/init.d/myservice.sh 

5. To specify the runlevel for any service, which should pertain to it:

# chkconfig --level

6. Enable service at boot:

# chkconfig sshd on

7. Enable service at boot for runlevels 2, 3, 4, and 5:

# chkconfig --level 2345 sshd on

8. Disable service at boot:

# chkconfig ntpd off

9. Disable service at boot for runlevel 3:

# chkconfig --level 3 ntpd off

Filed Under: Linux

Some more articles you might also be interested in …

  1. rusnapshot: command not found in Linux
  2. nmcli general Command Examples in Linux
  3. pkginfo: command not found
  4. CentOS / RHEL : Resize (reduce) non-root EXT3/4 filesystem on non-LVM device (hard disk partition)
  5. bosh Command Examples (Command-line tool to deploy and manage the bosh director)
  6. dolt commit: Commit staged changes to tables
  7. conda: Package, dependency and environment management for any programming language
  8. pwck Command Examples in Linux
  9. aws cur – Create, query, and delete AWS usage report definitions (Command Examples)
  10. func: Azure Functions Core Tools: Develop and test Azure Functions locally

You May Also Like

Primary Sidebar

Recent Posts

  • gixy Command Examples
  • gitsome Command Examples
  • gitmoji Command Examples
  • gitlint Command Examples

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright