🎃
lando start時のエラー対応
ローカル開発環境構築ツールの一つであるLandoを使用してDrupalやOmekaのモジュール開発を行っていた際、以下のエラーが生じることがありました。
lando start
__ __ __ __ ___ _ __ __ __ ______
/ / / /__ ___/ /__ _/ /____ / _ |_ _____ _(_) /__ _/ / / /__ / / / /
/ /_/ / _ \/ _ / _ `/ __/ -_) / __ | |/ / _ `/ / / _ `/ _ \/ / -_)_/_/_/
\____/ .__/\_,_/\_,_/\__/\__/ /_/ |_|___/\_,_/_/_/\_,_/_.__/_/\__(_|_|_)
/_/
Updating helps us provide the best support and saves us tons of time
Use the link below to get the latest and greatest
https://github.com/lando/lando/releases/tag/v3.20.8
Lando is FREE and OPEN SOURCE software that relies on contributions from developers like you!
If you like Lando then help us spend more time making, updating and supporting it by contributing at the link below
https://github.com/sponsors/lando
If you would like to customize the behavior of this message then check out:
https://docs.lando.dev/config/releases.html
Let's get this party started! Starting app my-lando-app...
ERROR ==> connect ENOENT /var/run/docker.sock
██╗ ██╗██╗ ██╗ ██████╗ ██╗ ██╗██╗
██║ ██║██║ ██║ ██╔═══██╗██║ ██║██║
██║ ██║███████║ ██║ ██║███████║██║
██║ ██║██╔══██║ ██║ ██║██╔══██║╚═╝
╚██████╔╝██║ ██║ ╚██████╔╝██║ ██║██╗
╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝
An error occurred while starting up your app!
Here are a few things you can try to get back into a good state:
■ Try running lando rebuild
■ Try restarting in debug mode lando restart -vvv
■ Try checking the logs with lando logs
If those fail then consult the troubleshooting materials:
■ https://docs.lando.dev/help/logs.html
■ https://docs.lando.dev/help/updating.html
Or post your issue to Slack or GitHub
■ Slack - https://launchpass.com/devwithlando
■ GitHub - https://github.com/lando/lando/issues/new/choose
ERROR ==> connect ENOENT /var/run/docker.sock
本件について、以下のIssueで言及されていました。
以下を実行した上で、再度lando start
を実行すると、無事にコンテナが起動しました。
sudo ln -s ~/.docker/run/docker.sock /var/run/docker.sock
同様のことでお困りの方の参考になりましたら幸いです。
Discussion