Mac OS X에서 터미널을 사용하여 Apache를 어떻게 다시 시작합니까?


13

이것은 내가 한 일이지만 터미널에 익숙하지 않습니다.

Jeremys-MacBook-Pro-2:~ jeremyoconnor$ apachectl restart

This operation requires root.

답변:


23

Apache는 80민감한 시스템 레벨 포트로 간주 되는 예약 포트 ( )에서 실행 apachectl restart되므로 다음 sudo과 같이 실행해야합니다 .

sudo apachectl -k restart

비밀번호를 입력하면 비밀번호가 입력됩니다. 관리자 권한이 있다고 가정하면 비밀번호를 입력하면 Apache가 다시 시작됩니다. 다른 명령은 다음 startstop같 으며 Apache를 시작하기 위해 다음과 같이 실행될 수 있습니다.

sudo apachectl -k start

아파치를 멈추려면 다음과 같이하십시오.

sudo apachectl -k stop

또한 apachectl아무 것도 입력 하지 않으면 apachectl명령에 사용할 수있는 옵션 및 지시문 목록이 표시됩니다 . 이것은 Mac OS X 10.9.5의 출력입니다.

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] [-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
  -T                 : start without DocumentRoot(s) check
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.