Sous Linux, le service HTTPD peut se gérer avec la commande 'service', notamment lors de la modification du fichier '/etc/httpd/conf/httpd.conf'.
Ainsi, on peut vérifier le statut, démarrer ou arrêter le service :
# service httpd status
httpd (pid 46923) is running...
# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [Tue Jun 18 11:50:49 2019] [warn] Useless use of AllowOverride in line 11 of /etc/httpd/conf.d/namedmanager.conf.
httpd: Could not reliably determine the server's fully qualified domain name, using 10.28.6.144 for ServerName
[ OK ]
Ne pas oublier la configuration au démarrage du serveur avec la commande 'chkconfig' :
# chkconfig httpd --list