Check / List Running Services

by Tweak on May 4, 2010
in Linux, Servers

Q. How do I list all currently running services in CentOS / RHEL / Fedora Linux server ?

A. There are various ways and tools to find and list all running services under CentOS / RHEL / Fedora Linux systems.

service command – list running services

service --status-all
service --status-all | grep ntpd
service --status-all | less

Read more…