Configuration Instructions Linux system: CentOS-7.0 MySQL version: 5.7.21 There are currently two known ways to start multiple MySQL instances under Linux. One is to use the official mysqld_multi.server, but I haven't studied how to do it yet. The other is to use the original method of installing multiple MySQL servers. I am currently using the second method. Successfully started two MySQL instances. Next, I will introduce the operation process. Please give me your advice. 1. Install the first MySQL (5.7.21) server First of all, I installed mysql using the binary package: mysql-5.7.21-linux-glibc2.12-x86_64.tar.gz 1. Get the MySQL binary package, then decompress it using the tar command. Rename the decompressed folder to a shorter name using the 2. After reading many MySQL installation method introductions on the Internet, they all mentioned adding new user groups and users: groupadd mysql and useradd -r -g mysql -s /bin/false mysql, adding mysql users and mysql user groups. This depends on your actual needs. Since I use it myself and there is no security issue, I did not add any new ones and used root directly. If you need to add new users and user groups, you can search for information online or see it in the official MySQL manual: https://dev.mysql.com/doc/refman/5.7/en/binary-installation.html 3. Create a new my.cnf or copy it from somewhere else. The main thing is to specify parameters such as basedir, datadir, port number and socket in the initialization file. The following figure is the content of my my.cnf. Please replace the relevant parameters according to your actual path and put it in the installation directory: 4. According to the installation steps of the official document, you also need to create a new mysql-files folder in the installation directory. I am not sure why you need to create this folder. Here is the content of the official document: "The mysql-files directory provides a convenient location to use as the value for the secure_file_priv system variable, which limits import and export operations to a specific directory." 5. Next, initialize mysql. First, create a new data folder under the installation directory, then enter the bin folder of the installation directory and execute the following command: 6. Next, create the certificate and key required for secure transmission. Execute the command in the bin directory: 7. At this point, the initialization of mysql is complete, and you can start the mysql server. After version 5.7, it seems that the service is started using the mysqld_safe command. You can also use mysql.server in the support-file directory to start it, but mysql.server is also started using mysqld_safe. The command of mysqld_safe is as follows: For detailed parameters of the mysql_safe command, please refer to: https://www.jb51.net/article/52259.htm 8. After starting the server, you can use the client to access the server. Execute the command in the bin directory: 9. At this point, the installation of mysql has been completed. 2. Install the nth MySQL (5.7.21) server With the above installation process, basically installing the nth MySQL is the same as above. Unzip the installation package, rename it to mysql_port, distinguish different MySQL servers by port number, and then replace the path parameters in my.cnf and the commands executed above with the corresponding paths. By specifying a specific path, you can install and start multiple MySQL instances on a Linux machine. When the client accesses the server, it needs to specify which port to use, using the parameter -P3306, with capital P. This is just a record and study of a simple installation process. There are still many configurations and functions of MySQL that need attention, and I will have the opportunity to sort them out later. Summarize The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. If you have any questions, you can leave a message to communicate. Thank you for your support for 123WORDPRESS.COM. You may also be interested in:
|
<<: Complete steps to upgrade Nginx http to https
>>: Vue implements the requirement of dragging and dropping dynamically generated components
The effect diagram is as follows: <!DOCTYPE ht...
Nginx is configured with the same domain name, wh...
<br />The official version of Baidu Encyclop...
This article records the process of upgrading MyS...
<a href="https://www.jb51.net/" titl...
CSS media query has a very convenient aspect rati...
Table of contents Overview Defining methods on an...
Rendering Commonly used styles in Blog Garden /*T...
Summary: What method should be used for MySQL JDB...
This article mainly introduces the implementation...
Table of contents Overview Code Implementation Pa...
This article introduces the characteristics of CS...
Preface The requirement implemented in this artic...
Payment countdown to return to the home page case...
Table of contents text 1. Prepare the machine 2. ...