🗂

Homebrewでcolimaのスタートアップ起動しようとしたらエラーが出た時

2024/06/10に公開

brew services start colimaしたら以下のエラーがでて、スタートアップ時に自動でcolimaをスタートできない人向け

Bootstrap failed: 5: Input/output error
Try re-running the command as root for richer errors.
Error: Failure while executing; `/bin/launchctl bootstrap gui/501 /Users/soshi/Library/LaunchAgents/homebrew.mxcl.colima.plist` exited with 5.

TL;DR

brew install dockerを実行する
これで治らなかったらブラウザバックか、下記を参照

詳細に

エラーに出ているplistのファイルを見る
vim ~/Library/LaunchAgents/homebrew.mxcl.colima.plist

そこにあるであろうStandardErrorPathを探して、そのログファイルを見る
今回は/opt/homebrew/var/log/colima.logだった

こういう感じのエラーがあればおk

time="2024-06-10T11:20:15+09:00" level=info msg="starting colima"
time="2024-06-10T11:20:15+09:00" level=info msg="runtime: docker"
time="2024-06-10T11:20:15+09:00" level=fatal msg="dependency check failed for docker: docker not found, run 'brew install docker' to install"

今回はdockerをいれていないことが原因だったので、brew install dockerをしてからbrew services restart colimaしたら上手くいった。

補足

記事にするほどでもなさそうだが、一応...

GitHubで編集を提案

Discussion