Ici, nous énumérerons quelques commandes très simples pour démarrer, redémarrer et arrêter le serveur Web Apache. Bien sûr, vous devez faire attention à la commande d'arrêt car vos sites Web cesseront de fonctionner.
Pour démarrer l'utilisation d'Apache :
root@web [/home/admin]# /sbin/service httpd start
httpd (pid 11858) already running
root@web [/home/admin]#
Comme vous pouvez le voir, si Appache (service httpd) est déjà en cours d'exécution, le système vous le fera savoir.
Pour redémarrer httpd :
root@web [/home/admin]# /sbin/service httpd restart
root@web [/home/admin]#
Pour arrêter le serveur Apache :
root@web [/home/admin]# /sbin/service httpd stop
root@web [/home/admin]#