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

7

Eu 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 um faz por baixo?

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

    
por Dr Manhattan 19.11.2014 / 17:11

1 resposta

8

service e / ou init.d roteiros são exatamente a mesma coisa que ele é executado mesmo script httpd , que foi destinado principalmente para stop e (re)start httpd serviço, enquanto apachectl pode fazer mais (veja 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
# 
    
por 19.11.2014 / 17:18

Tags