Qual é a diferença entre usar o apachectl e o apache2 para reiniciar o Apache?

9

Conheço três maneiras de reiniciar o Apache:

sudo /usr/sbin/apachectl restart

sudo /etc/init.d/apache2 restart

service apache2 restart

O que cada caminho faz por baixo?

Eu também tentei usar o service apache2 stopUbuntu, mas ele não para o servidor por algum motivo: o localhost ainda serve na minha área de trabalho.

Dr. Manhattan
fonte

Respostas:

10

servicee / ou init.dscripts são exatamente a mesma coisa que executam o mesmo httpdscript, que foi feito principalmente para stope (re)start httpdserviço, enquanto apachectlpode fazer mais (consulte a saída).

apachectl:

# apachectl 
Usage: /usr/sbin/httpd [-D name] [-d directory] [-f file]
                       [-C "directive"] [-c "directive"]
                       [-k start|restart|graceful|graceful-stop|stop]
                       [-v] [-V] [-h] [-l] [-L] [-t] [-S]
Options:
  -D name            : define a name for use in <IfDefine name> directives
  -d directory       : specify an alternate initial ServerRoot
  -f file            : specify an alternate ServerConfigFile
  -C "directive"     : process directive before reading config files
  -c "directive"     : process directive after reading config files
  -e level           : show startup errors of level (see LogLevel)
  -E file            : log startup errors to file
  -v                 : show version number
  -V                 : show compile settings
  -h                 : list available command line options (this page)
  -l                 : list compiled in modules
  -L                 : list available configuration directives
  -t -D DUMP_VHOSTS  : show parsed settings (currently only vhost settings)
  -S                 : a synonym for -t -D DUMP_VHOSTS
  -t -D DUMP_MODULES : show all loaded modules 
  -M                 : a synonym for -t -D DUMP_MODULES
  -t                 : run syntax check for config files
# 
alexus
fonte
ok razão im perguntando é porque eu usei sudo / usr / sbin / apachectl restart e todos os meus arquivos estáticos Django agora dar 404 erros, pensei que tinha algo a ver com o método de reinicialização do servidor
Dr. Manhattan
@DrManhattan É mais provável que você tenha alterado seus arquivos de configuração (talvez com uma reescrita). Você não notou anteriormente porque a alteração não entrou em vigor até você reiniciar o serviço.
precisa saber é o seguinte