Docker等を使っていて以下のようなエラーが出る場合がある。
ERROR: for web Cannot start service web: Ports are not available: listen tcp 0.0.0.0:80: bind: address already in use
そんな場合、以下のコマンドでLISTENしているポートを確認できる。
lsof -i -n -P | grep "LISTEN"
Docker等を使っていて以下のようなエラーが出る場合がある。
ERROR: for web Cannot start service web: Ports are not available: listen tcp 0.0.0.0:80: bind: address already in use
そんな場合、以下のコマンドでLISTENしているポートを確認できる。
lsof -i -n -P | grep "LISTEN"
コメント