fab5freddie
Basic Pleskian
Hi folks,
I've got a Cloud Server with Plesk Onyx 17.0.17 on CentOS 7
I have to install a Magento Shop v.2.1. But that's not possible because the database server which is installed out of the box with CentOS 7 is mysql v.5.5.
So I did the following steps to upgrade the database server:
01. I removed watchdog because deactivating wasn't possible
02. I copied the password from /etc/psa/.psa.shadow to my clipboard
03. I made a mysql dump from all databases - mysqldump -u admin -p'.psa.shadow' --all-databases > /tmp/all-database.sql
04. I created an actual repository on https://downloads.mariadb.org/mariadb/repositories
05. touch /etc/yum.repos.d/MariaDB.repo
06. vi /etc/yum.repos.d/MariaDB.repo
07. I inserted the created repository from step 4 into MariaDB.repo
08. yum -y update
09. systemctl stop mariadb
10. yum remove mariadb-server mariadb mariadb-libs
11. yum clean all
12. yum -y install MariaDB-server MariaDB-client
13. systemctl start mysql
14. systemctl enable mysql
15. mysql_upgrade -uadmin -p'.psa.shadow'
16. mysql -V
17. mysql -u admin -p'.psa.shadow' < /tmp/all-database.sql
After successfull MariaDB 10.1 Upgrade I wanted to login to Plesk Onyx to install watchdog. But sometimes I get a 403 Error which means to me that there should be a rights problem and sometimes (like now) the Plesk Login Site is not available at all.
What did I do wrong? Any suggestions?
I'm very grateful for any help I can get. Any help is appreciated.
Thanks in advance
Regards fab5freddie
I've got a Cloud Server with Plesk Onyx 17.0.17 on CentOS 7
I have to install a Magento Shop v.2.1. But that's not possible because the database server which is installed out of the box with CentOS 7 is mysql v.5.5.
So I did the following steps to upgrade the database server:
01. I removed watchdog because deactivating wasn't possible
02. I copied the password from /etc/psa/.psa.shadow to my clipboard
03. I made a mysql dump from all databases - mysqldump -u admin -p'.psa.shadow' --all-databases > /tmp/all-database.sql
04. I created an actual repository on https://downloads.mariadb.org/mariadb/repositories
05. touch /etc/yum.repos.d/MariaDB.repo
06. vi /etc/yum.repos.d/MariaDB.repo
07. I inserted the created repository from step 4 into MariaDB.repo
08. yum -y update
09. systemctl stop mariadb
10. yum remove mariadb-server mariadb mariadb-libs
11. yum clean all
12. yum -y install MariaDB-server MariaDB-client
13. systemctl start mysql
14. systemctl enable mysql
15. mysql_upgrade -uadmin -p'.psa.shadow'
16. mysql -V
17. mysql -u admin -p'.psa.shadow' < /tmp/all-database.sql
After successfull MariaDB 10.1 Upgrade I wanted to login to Plesk Onyx to install watchdog. But sometimes I get a 403 Error which means to me that there should be a rights problem and sometimes (like now) the Plesk Login Site is not available at all.
What did I do wrong? Any suggestions?
I'm very grateful for any help I can get. Any help is appreciated.
Thanks in advance
Regards fab5freddie