Modify the maximum number of mysql connections and configuration files in docker

Modify the maximum number of mysql connections and configuration files in docker

1. Find the mysql image

docker ps 

insert image description here

2. Enter the mirror mysql image

docker exec -it 05138413c565 /bin/bash

3. Install vim

Because the docker image does not have a vim command, you need to install it manually, or you can use the docker cp command to copy it from the host machine.

apt-get update
apt-get install vim

4. Edit the configuration file

vim /etc/mysql/mysql.conf.d/mysqld.cnf 

insert image description here

Add max_connections=1024 to the file and save and exit

5. Restart the image

docker kill 05138413c565 
docker start 05138413c565

6. Check whether the number of MySQL connections has changed

show variables like '%max_connections%'; 

insert image description here

As shown in the figure, it has become 1024

This is the end of this article about modifying the maximum number of MySQL connections and the implementation of the configuration file in Docker. For more information about modifying the maximum number of MySQL connections in Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Tutorial on integrating MySQL with springboot's yml configuration file through db2
  • IDEA uses properties configuration file to connect to MySQL database
  • How to find the my.ini configuration file in MySQL 5.6 under Windows
  • How to modify the mysql configuration file under docker
  • How to configure the My.ini file when installing MySQL5.6.17 database
  • MySql 5.7.20 installation and configuration of data and my.ini files
  • Mysql file configuration analysis

<<:  CSS syntax for table borders

>>:  Detailed explanation of the production principle of jQuery breathing carousel

Recommend

Example of Html shielding right-click menu and left-click typing function

Disable right-click menu <body oncontextmenu=s...

7 useful new TypeScript features

Table of contents 1. Optional Chaining 2. Null va...

Mini Program to implement Token generation and verification

Table of contents process Demo Mini Program Backe...

JavaScript to implement slider verification code

This article shares the specific code of JavaScri...

How to set Nginx log printing post request parameters

【Foreword】 The SMS function of our project is to ...

Detailed explanation of two points to note in vue3: setup

Table of contents In vue2 In vue3 Notes on setup ...

Detailed explanation of the use of props in React's three major attributes

Table of contents Class Component Functional Comp...

How to pass the value of the select drop-down box to the id to implement the code

The complete code is as follows : HTML code: Copy ...

Best Practices for Deploying ELK7.3.0 Log Collection Service with Docker

Write at the beginning This article only covers E...

Implementation of Vue package size optimization (from 1.72M to 94K)

1. Background I recently made a website, uidea, w...

Detailed explanation of MySQL semi-synchronization

Table of contents Preface MySQL master-slave repl...

The most convenient way to build a Zookeeper server in history (recommended)

What is ZooKeeper ZooKeeper is a top-level projec...

Limit input type (multiple methods)

1. Only Chinese characters can be input and pasted...