Apache를 다시 시작하기 위해 apachectl과 apache2를 사용하는 것의 차이점은 무엇입니까? /etc/init.d/apache2 restart service apache2

Apache를 다시 시작하는 세 가지 방법을 알고 있습니다.

sudo /usr/sbin/apachectl restart

sudo /etc/init.d/apache2 restart

service apache2 restart

각 방법은 아래에서 무엇을합니까?

나는 또한 service apache2 stopUbuntu에서 사용하려고 시도했지만 어떤 이유로 서버를 중지시키지 않습니다 : localhost는 여전히 내 데스크탑에서 서비스합니다.



답변

service그리고 / 또는 init.d스크립트는 동일한 httpd스크립트를 실행하는 것과 정확히 같은 것입니다. 주로 스크립트 stop(re)start httpd서비스 를위한 것이었지만 apachectl더 많은 작업을 수행 할 수 있습니다 (출력 참조).

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
#


답변