Implementation example of specifying container ip when creating a container in docker

Implementation example of specifying container ip when creating a container in docker

When Docker creates a container, it uses the bridge network by default and allocates the IP address by itself, and does not allow you to specify it yourself.

In actual deployment, we need to specify the container IP and not allow it to allocate the IP by itself. Especially when building a cluster, a fixed IP is necessary.

We can create our own bridge network: mynet. When creating a container, specify the network as mynet and specify the IP.

View Network Mode

docker network ls 

Create a new bridge network

docker network create --driver bridge --subnet=172.18.12.0/16 --gateway=172.18.1.1 mynet

View network information

docker network inspect mynet 

Create a container and specify the container ip

docker run -e TZ="Asia/Shanghai" --privileged -itd -h hadoop01.com --name hadoop01 --network=mynet --ip 172.18.12.1 centos /usr/sbin/init

Running the container

docker exec -it hadoop01 /bin/bash 

CentOS minimal installation does not have ifconfig command, it can be installed through yum

yum install -y net-tools 

Install ssh service

yum install -y openssh-server

yum install -y openssh-clients

systemctl start sshd.service

Add a non-root user

useradd brock

passwd brock 

Access through a local client (by specifying a port or configuring an independent IP when creating a container)

docker run -e TZ="Asia/Shanghai" -p 6001:22 --privileged -itd -h hadoop01.com --name hadoop01 --network=mynet --ip 172.18.12.1 centos /usr/sbin/init

or

route -p add 172.18.12.0 MASK 255.255.255.0 10.0.75.2 

You may also be interested in:
  • Each time Docker starts a container, the IP and hosts specified operations
  • Docker container specifies a fixed IP/static IP address in a custom network segment
  • How to specify container IP for Docker network bridge mode

<<:  About the difference between inspecting elements and viewing the source code of a web page

>>:  Simple implementation of vue drag and drop

Recommend

How to skip errors in mysql master-slave replication

1. Traditional binlog master-slave replication, s...

How to use Vue to develop public account web pages

Table of contents Project Background start Create...

Detailed explanation of common Docker Compose commands

1. The use of Docker compose is very similar to t...

Solution to Nginx 500 Internal Server Error

Today, when I was using Nginx, a 500 error occurr...

Installation method of mysql-8.0.17-winx64 under windows 10

1. Download from the official website and unzip h...

In-depth explanation of the style feature in Vue3 single-file components

Table of contents style scoped style module State...

Detailed explanation of three commonly used web effects in JavaScript

Table of contents 1 element offset series 1.1 Off...

A brief introduction to the general process of web front-end web development

I see many novice students doing front-end develop...

Markup Languages ​​- Lists Again

Click here to return to the 123WORDPRESS.COM HTML ...

Steps to restore code from a Docker container image

Sometimes the code is lost and you need to recove...

Detailed explanation of using Docker to build externally accessible MySQL

Install MySQL 8.0 docker run -p 63306:3306 -e MYS...

Introduction to version management tool Rational ClearCase

Rational ClearCase is a software configuration ma...

25 Examples of News-Style Website Design

bmi Voyager Pitchfork Ulster Grocer Chow True/Sla...

Use vertical-align to align input and img

Putting input and img on the same line, the img ta...