2Fast2BCn
New member
- Joined
- May 27, 2016
- Messages
- 10
- Points
- 0
In this post I will show you how to upgrade MySQL server to version 5.5 in CentOS Web Panel (CWP).
Default CWP using MySQL 5.1, so if you previously used the website MySQL 5.5 will surely error occurred while importing data. So, update MySQL to 5.5 when installed just CWP.
1) Create full database backup of your mysql databases before upgrading your MYSQL
To install, you first stop the MySQL running away.
2) Load this package
3) Run 2 these commands
4) Restart MySQL Server.
If you want to do a fresh install of MySQL Server.
You are done with upgrading. Hope it helps!
Default CWP using MySQL 5.1, so if you previously used the website MySQL 5.5 will surely error occurred while importing data. So, update MySQL to 5.5 when installed just CWP.
1) Create full database backup of your mysql databases before upgrading your MYSQL
Code:
mysqldump --events --all-databases | gzip > /home/alldatabases.sql.gz
Code:
service mysqld stop
Code:
rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
Code:
yum install mysql.`uname -i` yum-plugin-replace
yum replace mysql --replace-with mysql55w
Code:
service mysqld restart
Code:
yum --enablerepo=remi install mysql-server