9
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 3 years have passed since last update.

MSpanList_Insert|docker-machineコマンドでのエラー

Posted at

当方で解決できた方法

最新バージョンのdocker-machineをインストールしたら治りました。

installmachine.sh

curl -L https://github.com/docker/machine/releases/download/v0.13.0/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
  chmod +x /usr/local/bin/docker-machine

>>参考サイト

状況

dockerは使えている状態で
docker-machineを実行しようとしたらコマンドが見つからないと出た。

notfound.sh
$ docker-machine version
bash : command not found

環境

macOS 10.14.6 Mojave
docker desktop 19.03.5
virtualbox 6.0.16

not foundが出て行なった作業

インストール

miss.sh

curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && chmod +x /usr/local/bin/docker-machine

エラーメッセージ一部抜粋

error.sh

$docker-machine version
failed MSpanList_Insert 
fatal error: MSpanList_Insert
~go/src/runtime~
~go/src/runtime~
~go/src/runtime~

エラーが出て行なった作業

検索をするとどうやらソフトウェア間の
バージョン互換性の食い違い時にMSpanList_Insertという
エラーが出やすいとの情報が多かったので以下を実施。

goのアップデート

エラーメッセージにgoファイルが羅列されていたことと
検索したらgolangでもMSpanList_Insertのエラーで
バージョンアップしたら治ったとあったので実行。

update.sh

brew upgrade go

無事アップデートされるが
docker-machineコマンドの結果は変わらず。

virtualboxのアップデート

こちらもアップデートが出ていたのでguiからインストール。

>>参考サイト

無事アップデートされるもdocker-machineコマンドの結果は変わらず。

その後検索していたら
本家のサイトと最初にインストールしたdocker-machineのバージョンが違うことに気がついた。
気がつけてよかったっす。まじでここ見逃したらさらにハマってたかも知れません。
kubernetesも関連あるのか?とか考え始めていたので。

miss.sh

curl -L https://github.com/docker/machine/releases/download/v0.7.0/docker-machine-`uname -s`-`uname -m` > /usr/local/bin/docker-machine && chmod +x /usr/local/bin/docker-machine

installmachine.sh

curl -L https://github.com/docker/machine/releases/download/v0.13.0/docker-machine-`uname -s`-`uname -m` >/usr/local/bin/docker-machine && \
  chmod +x /usr/local/bin/docker-machine

>>参考サイト

教訓

1次情報大事。英語頑張る。

9
1
2

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
9
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?