8
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WindowsのサービスにApacheを登録する

Posted at

Windowsのサービスに追加

管理者権限でコマンドプロンプトを起動して登録コマンドを実行する

httpd -k install -n "サービス名"

Apacheのhttpd.confを指定する場合は

httpd -k install -n "サービス名" -f "path/httpd.conf"

Windowsのサービスから削除

管理者権限でコマンドプロンプトを起動して削除コマンドを実行する

httpd -k uninstall -n "サービス名"
8
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?