Stuff…

I know I will forget.

Stuff… header image 2

Table ‘mysql.servers’ doesn’t exist

August 12th, 2010 · No Comments

Was trying to add a database user via the control panel and received the above error message.

Fix by running:

mysql_upgrade -uroot -ppassword

Or add the table servers in database mysql:

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

Links:

Tags: Control Panels · Linux · Operating System

0 responses so far ↓

  • There are no comments yet...

Leave a Comment