-
Error from cpmysql wrapper:
Error from cpmysql wrapper:
Can't open and lock privilege tables: Table 'mysql.servers' doesn't exist
The above error has following three possible solutions
1) try to fix privileges
#mysql_fix_privilege_tables --password=[YOUR PASSWORD] --verbose
2) update mysql to remove all possible errors
#/scripts/mysqlup --force
3) recreate table mysql.servers
#mysql
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';
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks