Answers for "upgrade mysql version centos"

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

Code answers related to "upgrade mysql version centos"

Code answers related to "SQL"

Browse Popular Code Answers by Language