- 论坛徽章:
- 0
|
本帖最后由 chinafenghao 于 2013-08-28 12:04 编辑
运行环境如下:
[root@aaa ~]# uname -r
2.6.18-308.el5
[root@aaa ~]# 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@aaa ~]# mysql --version
mysql Ver 14.12 Distrib 5.0.95, for redhat-linux-gnu (i386) using readline 5.1
vmvare安装的centos,VMware® Workstation版本是8.0.2 build-591240
用yum方式安装的mysql,所用安装命令
yum install mysql* -y
所用的my.cnf是系统默认的
cat /etc/my.cnf
[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
user=mysql
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1
# Disabling symbolic-links is recommended to prevent assorted security risks;
# to do so, uncomment this line:
# symbolic-links=0
[mysqld_safe]
log-error=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid
现象描述:
启动mysql之后,曾用命令修改了root的密码,
再次登录mysql,发现修改的密码无效,提示拒绝访问
具体描述如下
[root@aaa ~]# /etc/init.d/mysqld start
Starting mysqld: [ OK ]
#之前已把密码改为123456
[root@aaa ~]# mysql -uroot -p'123456'
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
就停止数据库,尝试用mysqld_safe忽略授权表的方式登录并修改密码
[root@aaa ~]# /etc/init.d/mysqld stop
Stopping mysqld: [ OK ]
[root@aaa ~]# mysqld_safe --skip-grant-tables --skip-networking &
[1] 10432
[root@aaa ~]# Starting mysqld daemon with databases from /var/lib/mysql
[root@aaa ~]#mysql -u root
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.0.95 Source distribution
Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
数据库的基本信息
mysql> show databases;
+--------------------+
| Database |
+--------------------+
| information_schema |
| mysql |
| test |
+--------------------+
3 rows in set (0.13 sec)
mysql> use mysql;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
####发现数据库中mysql的所有表都是空的#### #### 不知道为什么###
mysql> select * from user;
Empty set (0.03 sec)
mysql> select * from db;
Empty set (0.00 sec)
mysql> select * from proc;
Empty set (0.00 sec)
mysql> select * from procs_priv;
Empty set (0.00 sec)
mysql> select * from tables_priv;
Empty set (0.00 sec)
mysql> select * from columns_priv;
Empty set (0.00 sec)
###个人觉得上面显示mysql库下的所有表都是空的,是不是意味着连root用户都不存在,因此给root修改密码也是无效的###
尝试修改密码,没有提示错误,但是没有行匹配
发现当前似乎是空用户登录进来的
mysql> select user();
+--------+
| user() |
+--------+
| root@ |
+--------+
1 row in set (0.00 sec)
于是尝试删除空用户并刷新权限
mysql> delete from user where USER='';
Query OK, 0 rows affected (0.00 sec)
mysql> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.01 sec)
修改密码
用这样的方式修改过,但是看提示信息,似乎修改无效,没有行命中
mysql> UPDATE mysql.user SET password=PASSWORD('123456') where user='root' AND host='localhost';
Query OK, 0 rows affected (0.01 sec)
Rows matched: 0 Changed: 0 Warnings: 0
然后,退出数据库
mysql> quit;
Bye
再关闭数据库
/etc/init.d/mysqld stop
[root@aaa ~]# /etc/init.d/mysqld stop
STOPPING server from pid file /var/run/mysqld/mysqld.pid
130819 19:41:47 mysqld ended
Stopping mysqld: [ OK ]
[1]+ Done mysqld_safe --skip-grant-tables --skip-networking
#确认数据库已被关闭
[root@aaa ~]# ps -ef | grep "mysql" | grep "mysql"
root 10956 8049 0 19:42 pts/0 00:00:00 grep mysql
root 10957 8049 0 19:42 pts/0 00:00:00 grep mysql
[root@aaa ~]# ps -ef | grep "mysql" | grep -v "mysql"
再重新启动数据库
/etc/init.d/mysqld start
[root@aaa ~]# /etc/init.d/mysqld start
Starting mysqld: [ OK ]
再用刚才设置的密码123456登录就拒绝访问了
[root@aaa ~]# mysql -uroot -p123456
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
为什么?怎么改才能重设密码?
|
|