Uninstall the old version of MySQL (skip this step if you don’t have one) ( Note: When reinstalling a new version of MySQL in steps 3-6, be sure to uninstall the previous version completely to avoid errors; when installing MySQL for the first time on a new virtual machine, only steps 1-2 are required) 1. View old versions of MySQL rpm -qa | grep mysql 2. Delete old components one by one Use the rpm -e --nodeps {-file-name} command to remove the files. There may be dependencies when removing the files, so pay attention to the order. After deleting, check to see if there are any old versions. 3.rm -rf /var/lib/mysql 4.find / -name mysql Clear all directories and files related to MySQL and other configurations and settings. If so, delete it. It is also necessary to consider that other software will not be affected. rm -rf /usr/lib/mysql rm -rf /usr/share/mysqlwhereis mysql 6. Self-starting service chkconfig --list | grep -i mysql chkconfig --del mysqld Install MySQL 1. Upload the MySQL installation package to the /usr/local/mysql/ folder on centos 2. Enter /usr/local/mysql/ 3. Start installing MySQL Run the rpm -ivh {-file-name} command to perform the installation operation. rpm -ivh mysql-community-common-8.0.16-2.el7.x86_64.rpm rpm -ivh mysql-community-libs-8.0.16-2.el7.x86_64.rpm rpm -ivh mysql-community-client-8.0.16-2.el7.x86_64.rpm rpm -ivh mysql-community-server-8.0.16-2.el7.x86_64.rpm Solution to errors when installing libs; Clear all mysql dependency packages in yum yum remove mysql-libs 4. Installation successful 5. Start mysql After installation, start the MySQL service using the command: (If the mysql service cannot be started, restart the system) systemctl start mysqld.service (service mysqld start) starts mysql systemctl status mysqld.service (service mysqld status) View mysql status systemctl stop mysqld.service (service mysqld stop) Shut down mysql 6. Change MySQL password First use the following command to find the password: grep 'temporary password' /var/log/mysqld.log Login to mysql with password mysql -uroot -p To change your password: alter user root@localhost identified by 'your password'; (Note that the password here should be as complex as possible, otherwise it will fail (ERROR 1819 (HY000): Your password does not satisfy the current policy requirements) (If you want to make the password simpler, you need to execute the following two commands first: 7. Login mysql -uroot -p 8. Check the mysql process ps -ef | grep mysql 9. Check port 3306 netstat -anop | grep 3306 10. Grant remote access to the root user 1) use mysql; 2) select user, host from user; 3) update user set host='%' where user = 'root'; 4) grant all privileges on . to 'root'@'%' identified by 'tsk007' with grant option; 5) flush privileges; 11.systemctl stop firewalld.service (turn off the firewall) 12. Remote login (MySQL must be installed on this machine) mysql -uroot -p -h (accessed IP) Reference article: How to completely uninstall MySQL under CentOS Wonderful topic sharing: MySQL different versions installation tutorial MySQL 5.7 installation tutorials for various versions MySQL 5.6 installation tutorials for various versions mysql8.0 installation tutorials for various versions The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Specific use of Bootstrap5 breakpoints and containers
>>: Docker uses the mysqldump command to back up and export mysql data in the project
Preface Everyone knows that many sites now charge...
Table of contents 1. typeof operator 2. instanceo...
Download the compressed version of MySQL-5.7.11-w...
1. Install openssh-server yum install -y openssl ...
Color contrast and harmony In contrasting conditi...
Table of contents 1. Define object methods 2. Def...
= Only when setting and updating does it have the...
When the data changes, the DOM view is not update...
Preface Vue (pronounced /vjuː/, similar to view) ...
Table of contents 1. Concurrent access control 2....
According to null-values, the value of null in My...
This article compares and summarizes four ways of...
MySQL 8.0 compressed package installation method,...
Overview Today I will mainly share how to correct...
How to use CSS to control the arc movement of ele...