Answers for "update mysql on centos 7"

SQL
1

update mysql centos

# WARNING: Backup before you do this as it will delete all your databases
wget http://repo.mysql.com/mysql57-community-release-el7.rpm -P /tmp/
yum remove mysql-community-release
rpm -ivh /tmp/mysql57-community-release-el7.rpm
yum update mysql
sudo systemctl start mysqld
sudo systemctl status mysqld
sudo mysql_upgrade
sudo systemctl restart mysqld
sudo systemctl status mysqld
Posted by: Guest on July-05-2021
-1

how to setup mysql on centos 7

sudo grep 'temporary password' /var/log/mysqld.log
Posted by: Guest on March-20-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language