CentOS - List of Services Start in Particular Run Level

You can use chkconfig --list to get the list of services which start in particular run level.

Example:
[code]chkconfig --list[/code]


To grep specific services:
[code]chkconfig --list | grep mysqld[/code]

Comments