December 2018
Beginner
826 pages
22h 54m
English
With systemd's built-in tool, we can check the status with the status option:
[vagrant@centos1 ~]$ systemctl status httpd● httpd.service - The Apache HTTP Server Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled) Active: active (running) since Sun 2018-08-26 16:15:50 UTC; 5min ago Docs: man:httpd(8) man:apachectl(8) Main PID: 3578 (httpd) Status: "Total requests: 0; Current requests/sec: 0; Current traffic: 0 B/sec" CGroup: /system.slice/httpd.service ├─3578 /usr/sbin/httpd -DFOREGROUND ├─3579 /usr/sbin/httpd -DFOREGROUND ├─3580 /usr/sbin/httpd -DFOREGROUND ├─3581 /usr/sbin/httpd -DFOREGROUND ├─3582 /usr/sbin/httpd -DFOREGROUND └─3583 /usr/sbin/httpd -DFOREGROUND
This is a good indication ...