Installation sequence rpm -ivh mysql-community-common-5.7.18-1.el7.x86_64.rpm mysql-community-libs-5.7.18-1.el7.x86_64.rpm (depends on common) mysql-community-client-5.7.18-1.el7.x86_64.rpm (depends on libs) mysql-community-server-5.7.18-1.el7.x86_64.rpm (depends on common, client) mysql-community-devel-5.7.18-1.el7.x86_64.rpm (MySQL header files and library files) yum install gcc gcc-c++ ncurses-devel perl yum install cmake -y groupadd mysql useradd -r -g mysql mysql mkdir -p /usr/local/mysql mkdir -p /data/mysqldb tar -zxvf mysql-boost-5.7.18.tar.gz and then install vi /etc/my.cnf datadir=/data/mysqldb/ socket=/data/mysqldb/mysql.sock explicit_defaults_for_timestamp=true mysqld --initialize ln –s /data/mysql/mysql.sock /var/lib/mysql/ chown mysql:mysql /var/lib/mysql -R chmod -R 777 /data/mysqldb service mysqld stop mysqld_safe --skip-grant-tables & mysql -uroot -p >use mysql; > update user set authentication_string=PASSWORD("password") where user="root"; update user set host='%' where user="root"; FLUSH PRIVILEGES; service mysqld restart mysql -uroot -ppassword SET PASSWORD = PASSWORD('password'); The above is the step record of installing MySQL 5.7.18 on Centos 6.9 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! You may also be interested in:
|
<<: A brief analysis of the configuration items of the Angular CLI release path
This article uses examples to illustrate the usag...
1. Implementation ideas The purpose of interface ...
Table of contents Why is IN slow? Which is faster...
Diversifying website layouts is our front-end spe...
Copy code The code is as follows: <div class=&...
Import the data exported from the Oracle database...
Preface: I heard a long time ago that MySQL 8.0 s...
Preface: MySQL master-slave architecture should b...
Text hiding code, hide a certain text in HTML Copy...
1. Experimental description In the virtual machin...
Usually, there are two options when we develop Li...
Docker Compose can realize the orchestration of D...
Recorded the installation tutorial of mysql 5.7.1...
I recently watched Apple's press conference a...
I encountered a problem today: Can I use the as a...