Today, I will record how to install MySQL 8.0.18 on a CentOS 6.8 server. Without further ado, let’s get straight to the point. 1. Uninstall MySQL that comes with CentOS 6.8 First, uninstall the built-in MySQL on the CentOS 6.8 server. Enter the following command in the command line to view the built-in MySQL on the CentOS 6.8 server. [root@binghe151 src]# rpm -qa | grep -i mysql mysql-libs-5.1.73-7.el6.x86_64 As you can see, mysql-libs-5.1.73-7.el6.x86_64 is installed by default in the CentOS 6.8 server. Next, uninstall mysql-libs-5.1.73-7.el6.x86_64 as shown below. [root@binghe151 src]# rpm -e mysql-libs-5.1.73-7.el6.x86_64 --nodeps [root@binghe151 src]# Check the MySQL installed on the CentOS 6.8 server again, as shown below. [root@binghe151 src]# rpm -qa | grep -i mysql [root@binghe151 src]# This indicates that the MySQL installed on the CentOS 6.8 server has been uninstalled successfully. 2. Install MySQL Dependency Environment Before officially installing MySQL, you first need to install the basic environment that MySQL depends on, as shown below. yum -y install wget gcc-c++ ncurses ncurses-devel cmake make perl bison openssl openssl-devel gcc* libxml2 libxml2-devel curl-devel libjpeg* libpng* freetype* make gcc-c++ cmake bison-devel ncurses-devel bison perl perl-devel perl perl-devel net-tools* numactl* 3. Add mysql user Run the following command on the command line to add a mysql user. groupadd mysql useradd -g mysql mysql 4. Download and install the MySQL RPM installation package First, execute the following command in the command line of the CentOS 6.8 server to download the RPM installation package of MySQL 8.0.18. wget https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.18-1.el6.x86_64.rpm-bundle.tar Next, check the downloaded RPM installation package of MySQL 8.0.18, as shown below [root@binghe151 src]# ll total 744876 -rw-r--r--. 1 root root 762746880 Nov 18 14:32 mysql-8.0.18-1.el6.x86_64.rpm-bundle.tar Next, unzip the downloaded installation package as shown below. [root@binghe151 src]# tar xvf mysql-8.0.18-1.el6.x86_64.rpm-bundle.tar mysql-community-client-8.0.18-1.el6.x86_64.rpm mysql-community-test-8.0.18-1.el6.x86_64.rpm mysql-community-server-8.0.18-1.el6.x86_64.rpm mysql-community-libs-compat-8.0.18-1.el6.x86_64.rpm mysql-community-common-8.0.18-1.el6.x86_64.rpm mysql-community-devel-8.0.18-1.el6.x86_64.rpm mysql-community-libs-8.0.18-1.el6.x86_64.rpm Next, install them in order mysql-community-common-8.0.18-1.el6.x86_64.rpm mysql-community-libs-8.0.18-1.el6.x86_64.rpm mysql-community-client-8.0.18-1.el6.x86_64.rpm mysql-community-server-8.0.18-1.el6.x86_64.rpm During installation, you need to strictly follow the above order. First, install [root@binghe151 src]# rpm -ivh mysql-community-common-8.0.18-1.el6.x86_64.rpm warning: mysql-community-common-8.0.18-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY Preparing... ############################################# [100%] 1:mysql-community-common ############################################### [100%] Next, install mysql-community-libs-8.0.18-1.el6.x86_64.rpm as shown below. [root@binghe151 src]# rpm -ivh mysql-community-libs-8.0.18-1.el6.x86_64.rpm warning: mysql-community-libs-8.0.18-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY Preparing... ############################################# [100%] 1:mysql-community-libs ############################################### [100%] Next, install [root@binghe151 src]# rpm -ivh mysql-community-client-8.0.18-1.el6.x86_64.rpm warning: mysql-community-client-8.0.18-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY Preparing... ############################################# [100%] 1:mysql-community-client ############################################### [100%] Finally, install mysql-community-server-8.0.18-1.el6.x86_64.rpm as shown below. [root@binghe151 src]# rpm -ivh mysql-community-server-8.0.18-1.el6.x86_64.rpm warning: mysql-community-server-8.0.18-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY Preparing... ############################################# [100%] 1:mysql-community-server ############################################## [100%] If you get an error when installing mysql-community-server-8.0.18-1.el6.x86_64.rpm, as shown below. [root@binghe151 src]# rpm -ivh mysql-community-server-8.0.18-1.el6.x86_64.rpm warning: mysql-community-server-8.0.18-1.el6.x86_64.rpm: Header V3 DSA/SHA1 Signature, key ID 5072e1f5: NOKEY error: Failed dependencies: libnuma.so.1()(64bit) is needed by mysql-community-server-8.0.18-1.el6.x86_64 libnuma.so.1(libnuma_1.1)(64bit) is needed by mysql-community-server-8.0.18-1.el6.x86_64 libnuma.so.1(libnuma_1.2)(64bit) is needed by mysql-community-server-8.0.18-1.el6.x86_64 As you can see, the libnuma library is missing. Run the following command to install libnuma. After executing the command, install mysql-community-server-8.0.18-1.el6.x86_64.rpm again. 5. Initialize MySQL data First, let’s talk about the official MySQL restrictions on running MySQL. In MySQL 8.x, to initialize data, you need to ensure that the owner of the database directory and files is the mysql login account. If you are running the mysqld service as root, you need to confirm this by executing the following command with the --user option: shell> bin/mysqld --initialize --user=mysql shell> bin/mysqld --initialize-insecure --user=mysql If you log in as a mysql account and execute the program, you can remove the --user option from the command, as shown below. shell> bin/mysqld --initialize shell> bin/mysqld --initialize-insecure Through the above official MySQL restrictions on running MySQL, we can conclude. If you are logged in as the root user on a CentOS 6.8 server, you can execute the following command. mysqld --initialize --user=mysql mysqld --initialize-insecure --user=mysql If you log in to the CentOS 6.8 server as the mysql user, you can execute the following command. mysqld --initialize mysqld --initialize-insecure Because I use the root account to log in to the CentOS 6.8 server, I execute the following command when initializing the database. mkdir -p /usr/local/mysql chown -R mysql.mysql /usr/local/mysql mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data Note: Here, I specified the MySQL installation directory when executing the mysqld --initialize command. During the MySQL installation process, it is recommended to specify the MySQL installation directory. If there is a data directory under the /usr/local/mysql directory, initialization will fail. You must ensure that there is no data directory under /usr/local/mysql. 6. Start MySQL Enter the following command on the CentOS 6.8 server command line to start the MySQL service. [root@binghe151 src]# service mysqld start Starting mysqld: [ OK ] When you start MySQL, a temporary login password is generated for the MySQL root account. This password can be viewed in the /var/log/mysqld.log file. Use the vim editor to open the /var/log/mysqld.log file, as shown below. vim /var/log/mysqld.log 2019-11-18T08:16:08.162464Z 0 [System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.18) initializing of server in progress as process 2111 2019-11-18T08:16:12.451542Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: -8cagKkdK#5G 2019-11-18T08:17:13.269505Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld (mysqld 8.0.18) started as process 2378 2019-11-18T08:17:16.568836Z 0 [Warning] [MY-010068] [Server] CA certificate ca.pem is self signed. 2019-11-18T08:17:16.642494Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: ready for connections. Version: '8.0.18' socket: '/var/lib/mysql/mysql.sock' port: 3306 MySQL Community Server - GPL. 2019-11-18T08:17:16.652000Z 7 [Warning] [MY-013360] [Server] Plugin sha256_password reported: ''sha256_password' is deprecated and will be removed in a future release. Please use caching_sha2_password instea d' 2019-11-18T08:17:16.801986Z 0 [System] [MY-011323] [Server] X Plugin ready for connections. Socket: '/var/run/mysqld/mysqlx.sock' bind-address: '::' port: 33060 Find the following line of code. 2019-11-18T08:16:12.451542Z 5 [Note] [MY-010454] [Server] A temporary password is generated for root@localhost: -8cagKkdK#5G You can see that the temporary login password generated when starting MySQL is -8cagKkdK#5G. 7. Log in to MySQL Log in to MySQL using the temporary password as shown below. [root@binghe151 src]# mysql -uroot -p-8cagKkdK#5G mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 9 Server version: 8.0.18 Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> At this point, an error message appears when executing the SQL statement in the MySQL command line, requiring you to reset the password, as shown below. mysql> SHOW DATABASES; ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. mysql> use mysql; ERROR 1820 (HY000): You must reset your password using ALTER USER statement before executing this statement. mysql> Next, change the MySQL root account password as shown below. mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'root'; Query OK, 0 rows affected (0.03 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) Next, enter the exit command in the MySQL command line to exit MySQL. Log back into MySQL using the modified root password as shown below. mysql> exit Bye [root@binghe151 src]# mysql -uroot -proot mysql: [Warning] Using a password on the command line interface can be insecure. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 10 Server version: 8.0.18 MySQL Community Server - GPL Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> This indicates that the MySQL root account password has been changed successfully. Next, execute the SQL statement in the MySQL command line again as shown below. mysql> SHOW DATABASES; +--------------------+ | Database | +--------------------+ | information_schema | |mysql | | performance_schema | |sys| +--------------------+ 4 rows in set (0.36 sec) mysql> USE mysql; Reading table information for completion of table and column names You can turn off this feature to get a quicker startup with -A Database changed mysql> It can be seen that after changing the MySQL root account password, SQL statements can be executed correctly in the MySQL command line. 8. Install the default directory of MySQL using rpm 1. Database directory 2. Configuration File 3. Related commands 4. Startup Script 9. Configure my.cnf file MySQL 8.0 does not have my.cnf by default. You can manually create a my.cnf file in the /etc directory and initialize the data with the command that specifies the MySQL directory as follows. mkdir -p /usr/local/mysql chown -R mysql.mysql /usr/local/mysql mysqld --initialize --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data Then you can configure the my.cnf file as shown below. [client] port = 3306 #Adjust mysql.sock configuration according to actual situation socket = /tmp/mysql.sock [mysqld] #Unique ID of MySQL service Each MySQL service ID needs to be unique server-id = 1 #The default service port number is 3306 port = 3306 #mysql installation root directory basedir = /usr/local/mysql #mysql data file location datadir = /usr/local/mysql/data #pid pid-file = /usr/local/mysql/mysql.pid #Set the directory where the socke file is located socket = /tmp/mysql.sock #Set the temporary directory tmpdir = /tmp # User user = mysql # Allow access to the IP network segment bind-address = 0.0.0.0 # Skip password login#skip-grant-tables #Mainly used for MyISAM storage engine. If multiple servers are connected to one database, it is recommended to comment the following content skip-external-locking #Only use IP address to check client login, not host name skip_name_resolve = 1 #Transaction isolation level, the default is repeatable read, MySQL default repeatable read level (at this level, there may be many gap locks in the parameters, affecting performance) transaction_isolation = READ-COMMITTED #The database default character set, the mainstream character set supports some special emoticons (special emoticons occupy 4 bytes) character-set-server = utf8mb4 #The database character set corresponds to some sorting rules. Note that it should correspond to character-set-server collation-server = utf8mb4_general_ci #Set the character set when the client connects to mysql to prevent garbled characters init_connect='SET NAMES utf8mb4' #Whether to case-sensitive SQL statements, 1 means insensitive lower_case_table_names = 1 #Maximum number of connections max_connections = 400 #Maximum number of connection errors max_connect_errors = 1000 #TIMESTAMP If NOT NULL is not explicitly declared, NULL values are allowed explicit_defaults_for_timestamp = true #SQL data packet size, if there is a BLOB object, it is recommended to change it to 1G max_allowed_packet = 128M #MySQL connections will be forcibly closed after being idle for a certain period of time (in seconds) #MySQL's default wait_timeout value is 8 hours, and the interactive_timeout parameter needs to be configured at the same time to take effect interactive_timeout = 1800 wait_timeout = 1800 #The maximum value of the internal memory temporary table is set to 128M. #For example, a temporary table may be used when grouping or ordering large amounts of data. #If the value exceeds this value, the table will be written to disk, increasing the system IO pressure. tmp_table_size = 134217728 max_heap_table_size = 134217728 #Disable MySQL's cache query result set function #Decide whether to enable it based on business situation tests later #In most cases, turn off the following two items query_cache_size = 0 query_cache_type = 0 #Database error log file log_error = error.log #Slow query sql log setting slow_query_log = 1 slow_query_log_file = slow.log #Check the sql that does not use the index log_queries_not_using_indexes = 1 #After log_queries_not_using_indexes is turned on, the frequency of slow SQL and the number of records per minute are recorded log_throttle_queries_not_using_indexes = 5 #Effective when used as a slave. Any slow SQL statements in slave replication will also be recorded. log_slow_slave_statements = 1 #The number of seconds that the slow query executes. This value must be reached to be recorded long_query_time = 8 #The number of rows retrieved must reach this value to be marked as a slow query min_examined_row_limit = 100 #mysql binlog log file expiration time, automatically deleted after expiration expire_logs_days = 5 Summarize The above is the tutorial for installing MySQL8.0.18 on CentOS6.8 (RPM method) introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you! You may also be interested in:
|
<<: How to quickly modify the root password under CentOS8
>>: Vue+js realizes video fade-in and fade-out effect
In enterprises, database high availability has al...
Table of contents Initialize computed Dependency ...
Without further ado, I will post the code for you...
Generate SSL Key and CSR file using OpenSSL To co...
Preface As Linux operation and maintenance engine...
This article is a simple calculator written using...
Since myeclipse2017 and idea2017 are installed on...
Virtual machines are very convenient testing soft...
In this system, the # sign represents the root us...
Preface The effect problems used in personal actu...
The specific code for using jQuery to implement t...
Experimental environment A minimally installed Ce...
Table of contents Review of Object.defineProperty...
Customizing images using Dockerfile Image customi...
This article shares the specific code of js to re...