12

Это то, что я сделал, но я действительно новичок в терминале:

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

This operation requires root.

1 ответ1

22

Поскольку Apache работает на зарезервированном порте (80), который считается чувствительным портом системного уровня, вам придется запустить apachectl restart через sudo следующим образом:

sudo apachectl -k restart

После ввода, что в нем будет, как вы для вашего пароля. Если у вас есть права администратора, просто введите пароль, и Apache должен перезагрузиться. Другие команды включают в себя start и stop которые можно запустить следующим образом, чтобы запустить Apache:

sudo apachectl -k start

И вот так, чтобы остановить Apache:

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

Всё ещё ищете ответ? Посмотрите другие вопросы с метками .