発生している問題・エラーメッセージ
vagrant upコマンドからVirtualBoxを立ち上げようとすると以下のエラーが表示されます。
Vagrant cannot forward the specified ports on this VM, since they would collide with some other application that is already listening on these ports. The forwarded port to 80 is already in use on the host machine. To fix this, modify your current project's Vagrantfile to use another port. Example, where '1234' would be replaced by a unique host port: config.vm.network :forwarded_port, guest: 80, host: 1234 Sometimes, Vagrant will attempt to auto-correct this for you. In this case, Vagrant was unable to. This is usually because the guest machine is in a state which doesn't allow modifying port forwarding. You could try 'vagrant reload' (equivalent of running a halt followed by an up) so vagrant can attempt to auto-correct this upon booting. Be warned that any unsaved work might be lost.
試したこと
sudo lsof -i:80コマンドにより以下の結果が表示されました。(一部伏せてあります)
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME httpd 109 root 4u IPv6 0----------------- 0t0 TCP *:http (LISTEN) httpd 678 _www 4u IPv6 0----------------- 0t0 TCP *:http (LISTEN) httpd 2045 _www 4u IPv6 0----------------- 0t0 TCP *:http (LISTEN)
補足情報(FW/ツールのバージョンなど)
以下の記事での内容は古く、githubによれば現在は使えないようです。
https://qiita.com/hidekuro/items/a94025956a6fa5d5494f
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/12/23 01:12
2020/12/23 01:52
退会済みユーザー
2020/12/23 02:18