Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Example Analysis of Mysqld_multi in MySQL

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)05/31 Report--

This article will explain in detail the example analysis of Mysqld_multi in MySQL. The editor thinks it is very practical, so I share it with you for reference. I hope you can get something after reading this article.

Mysqld_multi multiple instances

Mysql multi-instance refers to running multiple mysqld processes on one server at the same time. This article shows the deployment process of multi-instance, which is managed simply through a single configuration file and mysqld_multi command.

1) prepare the parameter file / etc/my.cnf or / etc/mysqld_multi.cnf

[root@db1 ~] # cat / etc/mysqld_multi.cnf

[mysqld_multi]

Mysqld = / usr/bin/mysqld_safe

Mysqladmin = / usr/bin/mysqladmin

User = multi_admin

Password = multipass

[mysqld1]

Port=3306

Basedir=/usr

Datadir=/data/mysql/data

Socket=/data/mysql/mysql.sock

Pid-file=/var/run/mysqld/mysqld.pid

Log-error=/data/mysql/log/mysqld.log

User=mysql

[mysqld2]

Port=3307

Basedir=/usr

Datadir=/data/mysql/data2

Socket=/data/mysql/mysql2.sock

Pid-file=/var/run/mysqld/mysqld2.pid

Log-error=/data/mysql/log/mysqld2.log

User=mysql

2) initialize the database

Method 1:

Mysql_install_db-datadir=/data/mysql/data-user=mysql

Mysql_install_db-datadir=/data/mysql/data2-user=mysql

The temporary password for mysql_install_db initialization data is ~ / .mysql_secret

Method 2:

/ usr/sbin/mysqld-initialize-datadir=/data/mysql/data2-user=mysql

Temporary passwords are recorded in log-error (usually / var/log/mysqld.log)

/ usr/sbin/mysqld-defaults-file=/etc/my.cnf-initialize-datadir=/data/mysql/data2-user=mysql

Method 3:

Mysqld_multi start 2

(it is actually mysql_install_db that initializes the database)

3) create a multi_admin administrative user

Mysql > create user multi_admin@localhost identified by 'multipass'

Mysql > grant shutdown on *. * to multi_admin@localhost identified by 'aa12AA,.'

4) start and stop multiple instances

Mysqld_multi start 1

Mysqld_multi start 2

Mysqld_multi start 1,2

Mysqld_multi start 1-2

Mysqld_multi stop 1

Mysqld_multi stop 2

Mysqld_multi stop 1,2

Mysqld_multi stop 1-2

Mysqladmin-S / data/mysql/mysql2.sock-umulti_admin-p shutdown

This is the end of this article on "sample Analysis of Mysqld_multi in MySQL". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, please share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report