check running services linux ubuntu code example
Example 1: ubuntu list running services
To check all running services
service --status-all | grep '\[ + \]'
To check all services (running & non running)
service --status-all
Example 2: how to check running services in linux
# For CentOS 7
systemctl
systemctl | more
systemctl | grep httpd
systemctl list-units --type service
systemctl list-units --type mount