3
1

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.

dockerコンテナが起動しなかった件

Last updated at Posted at 2019-09-10

ある初心者向け教材のサンプルコマンドを入力した際、コンテナが起動しなかったのでその原因について調べてみました。

打ち込んだコマンドは下記の通り。

docker run -d -p 80:80 --name myapp  php:7.0-apache

そしてこんな感じのエラーメッセージが表示されました。

Error starting userland proxy: Bind for 0.0.0.0:80: unexpected error (Failure EADDRINUSE).

80のポート番号がすでに使われていて発生したエラーらしい。
下記コマンドを入力する。

sudo lsof -i -P | grep "LISTEN"

TCP *:80 (LISTEN)と表示されるサービスがあったら停止させる。
今回は別のハンズオンで使ったnginxが生きていたので下記コマンドで止めてやりました。

sudo nginx -s stop

これで最初のコマンドが通ります。

3
1
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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?