首先cmd中输入 net stop mysql,或者在系统服务中关闭MySQL注册的服务。
然后在my.ini文件中的[mysqld]下面一行添加:skip_grant_tables mysql -uroot
-p输入任意的密码都可以登录数据库,输入下面2行命令:UPDATE mysql.user....
分类:
数据库 时间:
2014-06-12 14:50:14
阅读次数:
234
在my.ini的段[mysqld]中增加skip-grant-tables(只增加它即可)2.重启mysql服务3.打开cmd,转向mysql的安装路径C:\ProgramFiles\MySQL\MySQLServer5.1\bin4.输入mysql-uroot-p5.密码输入空,这时会自动转向sql输入方式6.输入usemysql7.输入updateusersetpassword=password(‘新..
分类:
数据库 时间:
2014-06-10 23:21:56
阅读次数:
342
在用root用户登录mysql时发现密码错了[root@gk~]#mysql-uroot-pEnterpassword:ERROR1045(28000):Accessdeniedforuser‘root‘@‘localhost‘(usingpassword:NO)解决方法1.停止mysqld服务[root@gk~]#servicemysqldstop停止mysqld:[确定]2.执行mysqld_safe--skip-grant-tables[root@..
分类:
数据库 时间:
2014-06-10 22:36:18
阅读次数:
330
系统centOS-6.3
方法操作很简单,如下:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
# mysql>use mysql ;
mysql> UPDATE user SET Password=PAS...
分类:
数据库 时间:
2014-06-05 02:54:40
阅读次数:
331
1. mysql忘记密码
vim /etc/my.conf 文件在mysqld下添加skip-grant-tables,表示mysql在登录的时候不检查权限。登录mysql。直接运行mysql> use mysql;
> update user set Password=password('root') where User='root'
> flush privileges;
> qu...
分类:
数据库 时间:
2014-06-03 02:24:16
阅读次数:
283
公司mysql dba把数据库root密码丢失需要破解,方法如下,适合linux、unix机器
service mysqld stop
/opt/mysql/bin/mysqld_safe --skip-grant-tables &
/opt/mysql/bin/mysql -u root
update mysql.user set password=PASSWORD('...') ...
分类:
数据库 时间:
2014-05-26 04:08:37
阅读次数:
397
ERROR1045(28000):Accessdeniedforuser‘root‘@‘localhost‘(usingpassword:YES)解决:1、先停止mysql服务,命令如下:#/etc/init.d/mysqlstop2、重新启动服务,命令如下:#/etc/init.d/mysqlstop#mysqld_safe--user=mysql--skip-grant-tables--skip-networking&3、登入mysql..
分类:
数据库 时间:
2014-05-14 16:36:13
阅读次数:
368
#servicemysqlstop#servicemysqlstart--skip-grant-tables//跳过授权表启动MySQL服务程序#mysql-uroot//不需要密码登录mysql>updatemysql.usersetpassword=password(‘123456‘)wherehost="localhost";//通过修改mysql库中user表的相关记录重置密码QueryOK,0rowsaffected(0.38..
分类:
数据库 时间:
2014-05-06 16:52:46
阅读次数:
439
mysql密码丢失后,在mysql命令行下执行如下命令,即可将root用户密码清空:
mysqld_safe --skip-grant-tables&mysql修改密码 mysql修改,可在mysql命令行执行如下: mysql -u
root mysql mysql> UPDATE use...
分类:
数据库 时间:
2014-05-05 10:34:48
阅读次数:
366