mysql -V
mysql Ver 14.14 Distrib 5.1.62, for pc-linux-gnu (i686) using readline 5.1
uname -r
2.6.18-308.el5
lsb_release -a
LSB Version: :core-4.0-ia32:core-4.0-noarch:graphics-4.0-ia32:graphics-4.0-noarch:printing-4.0-ia32:printing-4.0-noarch
Distributor ID: CentOS
Description: CentOS release 5.8 (Final)
Release: 5.8
Codename: Final
建立数据库,多实例,方式是每个实例一个单独的配置文件
已经给root用户赋予数据库密码,并可以用该密码登录数据库
进入后,用GRANT 授权从库
mysql> GRANT replication slave on *.* to 'rep'@'192.168.88.%' identified by '123456abc';
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
GRANT replication slave on *.* to 'rep'@'192.168.88.%' identified by '123456abc';
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
尝试给root授予所有权限
GRANT ALL *.* to 'root'@'localhost';
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
原因?已经登入数据库了,并有权限使用所有的库了(尝试use 各个库,均可以)
是否有什么权限错误,把权限表详情放在下面,大家帮忙看看:
个人初步确定问题可能在下面,User有空用户,但是尝试 delete from user where user is NULL or user=''; 并FLUSH PRIVIEGES;问题还是如上所述
mysql> select Host,User,Grant_priv from db;
+-----------+-----------+------------+
| Host | User | Grant_priv |
+-----------+-----------+------------+
| % | | N |
| % | | N |
| localhost | wordpress | N |
+-----------+-----------+------------+
3 rows in set (0.00 sec)
mysql> select Host,Grant_priv from host;
Empty set (0.00 sec)
mysql> select User,Grantor from procs_priv;
Empty set (0.00 sec)
mysql> select User,Host,Grant_priv from user;
+-----------+-----------+------------+
| User | Host | Grant_priv |
+-----------+-----------+------------+
| root | localhost | N |
| root | 127.0.0.1 | Y |
| rep | | N |
| wordpress | localhost | N |
+-----------+-----------+------------+
4 rows in set (0.00 sec)
这个地方是不是有问题?看起来,root@localhost没有grant权限,怎么解决?
mysql> select User,Host,Grant_priv from user;
+-----------+-----------+------------+
| User | Host | Grant_priv |
+-----------+-----------+------------+
| root | localhost | N |
| root | 127.0.0.1 | Y |
| rep | | N |
| wordpress | localhost | N |
+-----------+-----------+------------+
4 rows in set (0.00 sec)
mysql> select GRANTEE,PRIVILEGE_TYPE,IS_GRANTABLE from COLUMN_PRIVILEGES;
Empty set (0.00 sec)