• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Remove MariaDB and install mySQL 5.7

caitanya

New Pleskian
I have a fresh Centos 7 with latest Plesk 18.x and would like to remove MariaDB 5.5. Is this possible? What would be the best way to do it? thx
 
yes I have Maria 10.3 on another server, but here I would need mySQL - there are some issues that the old System was programmed using INSERT INTO name (column1, column2 ,colum3) VALUES (1,2,3) but mariaDB needs INSERT INTO name (`column1`, `column2` , `colum3`) VALUES (1,2,3) and we can not find any way around it.
 
Why not use a MySQL Docker?

#docker run --name=mysql -v /root/MySQL/datadir:/var/lib/mysql -e MYSQL_ROOT_PASSWORD=Your-Password -p 127.0.0.1:3307:3306 "mysql:5.5.62"

Tools & Settings > Database Servers > Add Database Server

Host name or IP address - 127.0.0.1
Port - 3307
Username - root
Password - Your-Password
 
Last edited:
Updated docker run command,

Code:
#docker run --name=mysql55 -v /root/mysql55/datadir:/var/lib/mysql -v /root/mysql55/conf.d:/etc/mysql/conf.d -e MYSQL_ROOT_PASSWORD=Your-Password   -p 127.0.0.1:3307:3306 -p 127.0.0.1:33061:33060 "mysql:5.5.62"
 
If use Docker to install the MySql.
That mean we need to run 2 database system in the server.
One is MariaDB for Plesk, the other is MySql for our project
 
hi, not sure if it is best to create a new thread, but I have a need to do this. I am running database on my plesk server, however when I run a query, it never completes and just times out.
When I run the same query on my local mysql 5.7 the query executes in seconds. When I change to MariaDB on my localhost I get the same problem, the query just hangs.
 
hi, not sure if it is best to create a new thread, but I have a need to do this. I am running database on my plesk server, however when I run a query, it never completes and just times out.
When I run the same query on my local mysql 5.7 the query executes in seconds. When I change to MariaDB on my localhost I get the same problem, the query just hangs.
@mudassarkhan, yes please open a new topic and provide as many details as possible.
 
Back
Top