web-dev-qa-db-ja.com

Mac OS Xのターミナルを使用してApacheを再起動するにはどうすればよいですか?

これは私がやったことですが、私はターミナルに本当に慣れていません:

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

This operation requires root.
13
jao1488

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
23
JakeGould