0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

MacOSでのDocker起動時の“com.docker.vmnetd”エラー

Posted at

目的

今後自身の勉強も兼ねて調査する(かもしれない...)ため、備忘録として残す。

概要

Dockerインストール後、「マルウェアがブロックされました“com.docker.vmnetd”にはマルウェアが含まれているため開けませんでした」というエラーポップアップが消しても継続して出力される。
後述の解決策で解決はしたが、今後の詳細調査のため、とりあえず実施内容を備忘録として残す。

解決した方法

  1. Docker関連プロセスとサービスの停止

    • ターミナルを開き、以下のコマンドを順に実行する。

      sudo launchctl bootout system/com.docker.vmnetd 2>/dev/null || true
      sudo launchctl bootout system/com.docker.socket 2>/dev/null || true
      sudo rm /Library/PrivilegedHelperTools/com.docker.vmnetd || true
      sudo rm /Library/PrivilegedHelperTools/com.docker.socket || true
      ps aux | grep -i docker | awk '{print $2}' | sudo xargs kill -9 2>/dev/null
      
  2. 古いDocker Desktopの削除とゴミ箱の空にする
    古いDocker Desktopをアプリケーションフォルダからゴミ箱に移動し、ゴミ箱を空にする。

  3. 最新版Docker Desktopのインストール
    以下から、バージョン4.37.2のインストーラーをダウンロードし、インストール。
    自分の場合は、これで解決できました。
    (https://docs.docker.com/desktop/release-notes/#4372)

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?