Solve the problem that Docker cannot ping the host machine under Mac

Solve the problem that Docker cannot ping the host machine under Mac

Solution

Abandon the Linux virtual machine that comes with Docker for Mac (although it is lightweight, it communicates with OSX using socket files) and use docker-machine

Install virtualbox. After virtualbox is created, a virtual network card will be added, which can be viewed through the ifconfig command. The way we implement it is to use this virtual network card.

Use docker-machine to create a default Linux virtual machine, command docker-machine create

Switch the docker environment and use the eval $(docker-machine env) command

Check the IP address of the created virtual machine: docker-machine ip default or directly docker-machine ip, if it is 192.168.99.100

Execute the route command, use 192.168.99.100 as the gateway, and route the IP segment of the docker container to this IP. If the network segment of the Docker container is 172.17.0.0/16, use the sudo route -n add -net 172.17.0.0/16 192.168.99.100 command to add routing information.

Start a Docker container. This test uses the redis:alpine image: docker run -d redis:alpine. Check the running mirror IP. And ping test. If nothing unexpected happens, the host machine can now ping the container.

Replenish:

eval "$(docker-machine env -u)"

It will unset the DOCKER_* variables.

For the record, this is the output of docker-machine env -u:

unset DOCKER_TLS_VERIFY
unset DOCKER_HOST
unset DOCKER_CERT_PATH
unset DOCKER_MACHINE_NAME

Additional knowledge: Mac Docker Host mode cannot be used

Today I installed fastdfs in docker on Mac, and started tracker and storage in host mode, but it didn't work.

Turns out the host network driver only works with Linux hosts, and is not supported on Docker for Mac, Docker for Windows, or Docker EE for Windows Server.

There is actually this limitation. Damn, a day wasted.

The above article on solving the problem that docker cannot ping the host machine under Mac is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to the Docker container being unable to access the host port
  • How to use Docker container to access host network
  • The docker container directly runs to obtain the public IP operation through ping

<<:  A brief discussion on the understanding of TypeScript index signatures

>>:  Write a formal blog using XHTML CSS

Recommend

Forever+nginx deployment method example of Node site

I recently bought the cheapest Tencent cloud serv...

Linux Check the installation location of the software simple method

1. Check the software installation path: There is...

How to completely delete the MySQL 8.0 service under Linux

Before reading this article, it is best to have a...

How to deploy nginx with Docker and modify the configuration file

Deploy nginx with docker, it's so simple Just...

Why do code standards require SQL statements not to have too many joins?

Free points Interviewer : Have you ever used Linu...

How to migrate the data directory in Docker

Table of contents View Disk Usage Disk Cleanup (D...

MySQL InnoDB transaction lock source code analysis

Table of contents 1. Lock and Latch 2. Repeatable...

Detailed explanation of how two Node.js processes communicate

Table of contents Preface Communication between t...

Detailed explanation of slots in Vue

The reuse of code in vue provides us with mixnis....

How to implement web stress testing through Apache Bench

1. Introduction to Apache Bench ApacheBench is a ...

Vue implements click feedback instructions for water ripple effect

Table of contents Water wave effect Let's see...

If I change a property randomly in Vue data, will the view be updated?

Interviewer: Have you read the source code of Vue...

MySQL 8.0.11 compressed version installation tutorial

This article shares the installation tutorial of ...

How to install Docker using scripts under Linux Centos

What is the main function of Docker? At present, ...

mysql-8.0.17-winx64 deployment method

1. Download mysql-8.0.17-winx64 from the official...