mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-09 02:53:19 +02:00

* pages.pt*: fix verb tenses * pages.pt*: fix all pt_PT verb tenses in the start and more pt_BR verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt_BR: fix more verb tenses * pages.pt*: fix more verb tenses * review PR --------- Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com> Co-authored-by: Isaac Vicente <contatoisaacvicente@gmail.com>
25 lines
624 B
Markdown
25 lines
624 B
Markdown
# apache2ctl
|
|
|
|
> Interface de controle do servidor web HTTP Apache.
|
|
> Este comando está disponível nas distribuições baseadas em Debian, para as baseadas em RHEL veja `httpd`.
|
|
> Mais informações: <https://manpages.debian.org/latest/apache2/apache2ctl.8.en.html>.
|
|
|
|
- Inicia o Apache. Caso ele já esteja em execução, uma mensagem será apresentada:
|
|
|
|
`sudo apache2ctl start`
|
|
|
|
- Encerra o Apache:
|
|
|
|
`sudo apache2ctl stop`
|
|
|
|
- Reinicia o Apache:
|
|
|
|
`sudo apache2ctl restart`
|
|
|
|
- Verifica se o arquivo de configuração está correto sintaticamente:
|
|
|
|
`sudo apache2ctl -t`
|
|
|
|
- Lista os módulos carregados:
|
|
|
|
`sudo apache2ctl -M`
|