RE: Fresh install gives phpMyAdmin error
08-11-2014, 12:03 AM
(This post was last modified: 08-11-2014, 12:10 AM by Jason.Kenyon.)
(08-10-2014, 07:26 PM)Ron-e Wrote: I am testing around with Sentora on a VPS of mine.
But i got an phpMyAdmin error after an fresh install, i needed to upgrade to MySQL 5.5.0 or later.
Sentora is using 5.1.73..
The script should only install the versions, and packages that your linux has. But below is a work around.
What OS are you running, Cent or Ubuntu?
If you are running CentOS you can install the new mysql using the replace.
Code:
sudo service mysqld stop
# install repo webtatic
yum -y install http://mirror.webtatic.com/yum/el6/latest.rpm
# install yum-replace
yum -y install yum-plugin-replace
# update MySQL
yum -y replace mysql --replace-with=mysql55
sudo service mysqld start
Steps taken from @andykimpe, from the old ZpanelCP forums