Quelques commandes Apache de base sous linux… (Fedora)
Nous allons commencer par installer le service:
su -c ‘yum install httpd-manual’
Puis configurer apache pour qu’il démarre comme un service:
su -lc ‘chkconfig httpd on’
Démarrer apache:
su -lc ’service httpd start’
Arrêter apache:
su -lc ’service httpd stop’
Redémarrer apache:
su -lc ’service httpd restart’
Tester une nouvelle configuration:
su -lc ’service httpd configtest’
Charger la nouvelle configuration sans redémarrer le service:
su -lc ’service httpd [...]
English