32
28

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.

【自分メモ】MAMPが起動しない時の対処方法

Posted at

#はじめに
MAMPを起動しようとしたら急にエラー文が出て使えなくなりました。
今後のために対処方法をメモしておきます。

#エラー内容
Apache couldn't be started because port 8888 is in use by some other software.

「8888ポートが他で使われているため起動できないよ」 と言われています。

#実施したこと
 1)ターミナルを起動(macを使っています)

 2)ホームディレクトリから以下コマンドを実行(ポートの状態を確認できるコマンド)
  $ sudo lsof -i -P | grep "LISTEN"

 3)パスワードを求められるので入力
  ※ここでのパスワードは自分のPCのロックを解除するパスワード

 4)ポートの状態が一覧で表示
  ※「8888」が使われているものを発見・・・!

 5)以下コマンドで削除を実行
  $ kill -9 XXXX (XXXXは該当する番号を入力)

  例) kill -9 1234

 6)もう一度 2)と同じコマンドで状態を確認
  ※「8888」を使っていたものが削除されていました!

 7)MAMPを起動したら無事に成功

32
28
1

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
32
28

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?