• 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!
  • 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.

Database Error after Upgrade to PHP5.2

T

teddy

Guest
Hi,

i upgrade today my php 5.1.6 tp php 5.2.13
php and all user mysql-database works correctly, but i have not access as root (over the plesk panel) to mysql.
i can´t create new databases or change databases (e.g. password or user)
also i can´t change the admin-password.

error-message on plesk - when i will create a db-user:
Table 'mysql.servers' doesn't exist

all permission from plesk to the database not avaible.

what can i do?
 
Mysql root user is replaced to admin user during Plesk installation. You can use following command for full access to mysql:

mysql -uadmin -p`cat /etc/psa/.psa.shadow`
 
Fixed

Hi,

the Problem was fixed.
The error was not a problem from plesk - but i´ve installed the php5 update from http://www.atomicorp.com/
In this update i alos installed a mysql upgrade.
On this it gives an error - but one database table are not present an mysql was looking for them.

I create the table with server in the database mysql with:

CREATE TABLE `servers` (
`Server_name` char(64) NOT NULL,
`Host` char(64) NOT NULL,
`Db` char(64) NOT NULL,
`Username` char(64) NOT NULL,
`Password` char(64) NOT NULL,
`Port` int(4) DEFAULT NULL,
`Socket` char(64) DEFAULT NULL,
`Wrapper` char(64) NOT NULL,
`Owner` char(64) NOT NULL,
PRIMARY KEY (`Server_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8
COMMENT='MySQL Foreign Servers table';
 
Back
Top