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

The Geek Diary

  • OS
    • Linux
    • CentOS/RHEL
    • Solaris
    • Oracle Linux
    • VCS
  • Interview Questions
  • Database
    • oracle
    • oracle 12c
    • ASM
    • mysql
    • 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. apt Command Examples in Linux
  2. pvscan Command Examples in Linux
  3. How to activate and mount 2 Volume groups with same names in CentOS/RHEL
  4. namei: command not found
  5. How To Setup mutt in CentOS/RHEL
  6. Linux OS Service ‘squid’
  7. CentOS / RHEL : How to disable ssh for non-root users (allowing ssh only for root user)
  8. featureCounts: command not found
  9. How To Customize The Screensaver Options In Gnome on CentOS/RHEL 7
  10. How to Install SSHFS on CentOS/RHEL/Ubuntu

You May Also Like

Primary Sidebar

Recent Posts

  • qm Command Examples in Linux
  • qm wait Command Examples in Linux
  • qm start Command Examples in Linux
  • qm snapshot Command Examples in Linux

© 2023 · The Geek Diary

  • Archives
  • Contact Us
  • Copyright