• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Cannot add user to the database

W

wer0ckz

Guest
Hi guys. I'm trying to add a user to a specific database but i got an error mesasge:

Error: Connection to the database server has failed:

Table 'mysql.servers' doesn't exist

See screenshot: http://postimage.org/image/gjt1kzidp/

Any suggestions?

Thanks in advanced
 
Usually after the upgrade there errors that arise with MySQL in Plesk while creating users, errors such as "Table 'mysql.servers' doesn't exist" to solve do the following:

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

Then RUN the following:

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';

That is all for now ...
 
Back
Top