The mysql on the server is installed with version 8.0.12, and the local one is version 5.7. Today I deleted the 5.7 version and reinstalled it. Below are all the commands to follow and it will be installed. Configuration Source wget http://dev.mysql.com/get/mysql57-community-release-el7-8.noarch.rpm yum localinstall mysql57-community-release-el7-8.noarch.rpm # yum repolist enabled | grep "mysql.*-community.*" Install: Start mysql Automatic startup systemctl enable mysqld systemctl daemon-reload Get the initial password grep 'temporary password' /var/log/mysqld.log UjmO#ZA9nt,Y Change the root password (need to log in to mysql) mysql -u root -p set global validate_password_policy=0; set global validate_password_length=1; ALTER USER 'root'@'localhost' IDENTIFIED BY 'admin'; Authorize other accounts to log in remotely CREATE USER 'admin'@'%' IDENTIFIED BY 'admin'; GRANT ALL ON *.* TO 'admin'@'%'; flush privileges Summarize The above is the detailed command for installing mysql5.7 database under centos7.2 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:
|
<<: How to import Excel files into MySQL database
>>: Implementation of Vue3 style CSS variable injection
In the previous article, after configuring the we...
1. Resume nacos database Database name nacos_conf...
Use of clip-path polygon The value is composed of...
Web front end 1 Student ID Name gender age 01 Zha...
Set the background image for the table header. Yo...
Without further ado, let me give you the code. Th...
Before talking about data responsiveness, we need...
Today, let’s discuss an interesting topic: How mu...
Since I often install the system, I have to reins...
A: Usually stored in the client. jwt, or JSON Web...
Recently I want to use native JS to implement som...
For several reasons (including curiosity), I star...
1. First prepare the MySQL and Eclipse environmen...
This article example shares the specific code of ...
Here we take the Jenkins container as an example ...