首先service mysql stop mysqld --skip-grant-tables & 开启数据库 然后就可以mysql -uroot 直接进数据库, update mysql.user set Password=PASSWORD('xxxxxxx') where User='root' ...
分类:
数据库 时间:
2017-03-13 11:33:24
阅读次数:
238
*********************************感谢互联网 解决方案: 1、打开MySQL目录下的my.ini文件,在文件的最后添加一行“skip-grant-tables”,保存并关闭文件。 2、重启MySQL服务。 3、在命令行中输入“mysql -uroot -p”(不输入密 ...
分类:
数据库 时间:
2017-03-12 00:42:22
阅读次数:
233
1.关闭正在运行的MySQL。2.打开DOS窗口,转到mysql\bin目录。3.输入mysqld --skip-grant-tables回车。如果没有出现提示信息,那就对了。4.再开一个DOS窗口(因为刚才那个DOS窗口已经不能动了),转到mysql\bin目录。5.输入mysql回车,如果成功, ...
分类:
数据库 时间:
2017-03-04 15:17:46
阅读次数:
644
1、关闭数据库 脚本:[root@mysql etc]# service mysql stop 2、使用脚本: mysqld_safe --skip-grant-tables 启动数据库 使用/usr/bin/mysqld_safe --skip-grant-tables&启动数据库 3、使用空密码 ...
分类:
数据库 时间:
2017-03-01 13:58:40
阅读次数:
233
修改配置文件:my.cnf 加上skip-grant-tables 重启mysql mysql -uroot 登录 mysql> USE mysql ; mysql> UPDATE user SET Password = password ( 'new-password' ) WHERE User ...
分类:
数据库 时间:
2017-01-24 15:46:21
阅读次数:
192
1、输入cmd进入命令行窗口。 2、进入到MySQL安装目录,比如我的安装目录是C:\mysql,进入C:\mysql\bin; 3、跳过权限检查。 c:\mysql\bin>mysqld ––skip-grant-tables。 4、重新打开一个命令行窗口,进入C:\mysql\bin;(在此步骤 ...
分类:
数据库 时间:
2017-01-15 15:59:00
阅读次数:
185
Host 'localhost' is not allowed to connect to this MySQL server 手贱误操作将root用户删除,解决办法: 找到mysql的配置文件 my.ini ,找到 [mysqld],在下面添加 skip-grant-tables ,然后重启mys ...
分类:
数据库 时间:
2017-01-01 09:26:16
阅读次数:
178
1.修改my.ini,在[mysqld]下增加一行:skip-grant-tables(登录时跳过密码检查)2.重启mysql3.updatemysql.usersetauthentication_string=PASSWORD(‘newpassword‘)whereUser=‘root‘;其中PASSWORD为mysql的加密函数,按mysql的加密方式加密,再运行FLUSHPRIVILEGES;4.把my.ini修改..
分类:
数据库 时间:
2016-12-23 10:05:25
阅读次数:
215
在/etc/my.cnf文件,在[mysqld]部分加入skip-grant-tables
然后重新启动mysqld登录修改mysql的root密码
/usr/bin/mysql
WelcometotheMySQLmonitor.Commandsendwith;or\g.
YourMySQLconnectionidis3toserverversion:3.23.56
Type‘help;’or‘\h’forhelp.Type‘\c’tocleartheb..
分类:
数据库 时间:
2016-12-22 20:42:29
阅读次数:
161
一、更改my.cnf配置文件 1.用命令编辑/etc/my.cnf配置文件,即:vim /etc/my.cnf 或者 vi /etc/my.cnf 2.在[mysqld]下添加skip-grant-tables,然后保存并退出 3.重启mysql服务:service mysqld restart 二 ...
分类:
数据库 时间:
2016-12-22 19:51:11
阅读次数:
198