-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
df2b0c1
commit 803a51e
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# apache2ctl | ||
|
||
> L'outil d'Interface en Lignes de Commandes (ILC) pour administrer le serveur web HTTP Apache. | ||
> Cette commande est disponible sur une distribution Debian. Pour les distributions basées Red Hat, voir `httpd`. | ||
> Plus d'information : <https://manpages.debian.org/latest/apache2/apache2ctl.8.en.html>. | ||
- Démarre le démon Apache. Envoie un message s'il est déjà actif : | ||
|
||
`sudo apache2ctl start` | ||
|
||
- Arrête le démon Apache : | ||
|
||
`sudo apache2ctl stop` | ||
|
||
- Re-démarre le démon Apache : | ||
|
||
`sudo apache2ctl restart` | ||
|
||
- Teste la syntaxe du fichier de configuration : | ||
|
||
`sudo apache2ctl -t` | ||
|
||
- Liste les modules chargés : | ||
|
||
`sudo apache2ctl -M` |