How to change the root password in a container using Docker

How to change the root password in a container using Docker

1. Use the following command to set the ssh password when making dockerfile

RUN echo "root:root" | chpasswd

2. Now you need to change the root password in the container after the container is generated

The docker exec -it centos7.5 root:newpassword | chpasswd command was executed successfully, but the password update failed.

The correct way is as follows:

PASS='newpassword ' && echo -e "KaTeX parse error: Expected 'EOF', got '\n' at position 5: PASS\̲n̲PASS" | docker exec -i centos7.5

Supplement: What is the password after docker pull centos? 【Xiaobaitiankeng】

For the record, the first time I used Baota's docker to pull centos8, when I started the centos8 container, I was prompted to enter a password. I was confused at the time. What was the password? After an hour of work, I finally figured out how to do it. I just ssh to my server and then run

docker exec -it your container name/bin/bash

This will take you directly into the new container. So where is the name of your container? See the picture below

So, I directly execute

docker exec -it funny_tesla /bin/bash

You can enter the centos8 container and do whatever you want. . End~

The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me.

You may also be interested in:
  • How to obtain a permanent free SSL certificate from Let''s Encrypt in Docker
  • Docker solution for logging in without root privileges
  • How to modify the root password of mysql in docker
  • How to obtain root permissions in a docker container
  • docker cp copy files and enter the container
  • Docker uses root to enter the container
  • Solution to the Docker container not having permission to write to the host directory
  • How to add a certificate to docker

<<:  Summary of some common methods of JavaScript array

>>:  The difference between html Frame, Iframe and Frameset

Recommend

VMware Workstation 15 Pro Installation Guide (for Beginners)

01. VMware Workstation Pro 15 Download Download: ...

Detailed explanation of MySQL database triggers

Table of contents 1 Introduction 2 Trigger Introd...

Tutorial on installing Apache 2.4.41 on Windows 10

1. Apache 2.4.41 installation and configuration T...

A brief understanding of the three uses of standard SQL update statements

1. Environment: MySQL-5.0.41-win32 Windows XP Pro...

MySQL 8.0.3 RC is about to be released. Let’s take a look at the changes

MySQL 8.0.3 is about to be released. Let’s take a...

JavaScript function encapsulates random color verification code (complete code)

An n-digit verification code consisting of number...

Detailed steps for using jib for docker deployment in Spring Cloud

Introduction to Jib Jib is a library developed by...

Summary of 6 skills needed to master web page production

It has to be said that a web designer is a general...

Example code for implementing 3D Rubik's Cube with CSS

Let's make a simple 3D Rubik's Cube today...

How to create components in React

Table of contents Preface Component Introduction ...

Detailed explanation of react setState

Table of contents Is setState synchronous or asyn...

Vue Element-ui implements tree control node adding icon detailed explanation

Table of contents 1. Rendering 2. Bind data and a...

The webpage cannot be opened because the div element lacks a closing tag

At first I thought it was a speed issue, so I late...