Jak zrestartować Apache przy użyciu terminalu w Mac OS X?


13

Tak zrobiłem, ale naprawdę jestem nowy w terminalu:

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

This operation requires root.

Odpowiedzi:


23

Od Apache działa na zarezerwowanego portu ( 80), która jest uważana za wrażliwe portu poziomie systemu trzeba by uruchomić apachectl restartpoprzez sudotak:

sudo apachectl -k restart

Po wpisaniu tego będzie jak hasło. Zakładając, że masz uprawnienia administratora, po prostu wpisz hasło, a Apache powinien się zrestartować. Inne polecenia obejmują starti stopmożna je uruchomić w ten sposób, aby uruchomić Apache:

sudo apachectl -k start

I tak, aby zatrzymać Apache:

sudo apachectl -k stop

Ponadto, jeśli wpiszesz apachectlbez niczego, otrzymasz listę opcji i dyrektyw, których możesz używać z apachectlpoleceniem; to jest mój wynik z 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
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.