mysql数据库密码忘记了怎么办
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql数据库密码忘记了怎么办相关的知识,希望对你有一定的参考价值。
面提供了5种linux忘记mysql密码找回方法哦。方法一:
# /etc/init.d/mysql stop
# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &
# mysql -u root mysql
mysql> update user set password=password(newpassword) where user=root;
mysql> flush privileges;
mysql> quit
# /etc/init.d/mysql restart
# mysql -uroot -p
enter password: <输入新设的密码newpassword>
mysql>
方法二:
直接使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码:
# mysql -udebian-sys-maint -p
enter password: <输入[client]节的密码>
mysql> update user set password=password(newpassword) where user=root;
mysql> flush privileges;
mysql> quit
# mysql -uroot -p
enter password: <输入新设的密码newpassword>
mysql>
方法三:
这种方法我没有进行过测试,因为我的root用户默认密码已经被我修改过了,那位有空测试一下,把结果告诉我,谢谢!!
# mysql -uroot -p
enter password: <输入/etc/mysql/debian.cnf文件中[client]节提供的密码>
方法四:
方法如下: 1, 关闭mysql服务 /etc/init.d/mysqld stop 2,使用 –skip-grant-tables选项启动mysql服务,可以修 改/etc/inin.d/mysqld脚本启动位置增加此选项, vi /etc/init.d/mysqld
方法如下:
1, 关闭mysql服务
/etc/init.d/mysqld stop
2,使用 –skip-grant-tables选项启动mysql服务,可以修 改/etc/inin.d/mysqld脚本启动位置增加此选项,
vi /etc/init.d/mysqld
在下面运行启动的语句里增加--skip-grant-tables
/usr/bin/mysqld_safe --skip-grant-tables --datadir="$datadir" --socket="$socketfile"
--log-error="$errlogfile" --pid-file="$mypidfile"
加入--skip-grant-tables的意思是启动mysql服务的时候跳 过权限表认证。启动后,连接到mysql的root不需要口令
3,重新启动mysql服务
/etc/init.d/mysqld start
4. 修改root用户的密码;
mysql> update mysql.user set password=password(123456) where user=root;
mysql> flush privileges;
mysql> quit
5. 重新启动mysql,就可以使用 新密码登录了。
mysql
mysql -u root –p
输入密码:123456
6,关闭mysql服务
/etc/init.d/mysqld stop
7, 重新修改第2步修改的/etc/init.d/mysqld,使其保持原来不变,也就是取消--skip-grant-tables语句
8,重新 启动mysql服务
/etc/init.d/mysqld start 参考技术A 回答
你好亲,mysql忘记密码怎么办、以管理员的身份打开cmd,然后跳过权限启动mysql,命令:xxx --skip-grant-tables 前面是mysql配置文件的位置,然后回车。2、新打开个cmd窗口,进入到mysql配置文件目录bin下,然后输入 mysql -uroot -p 再回车,这步是以空密码进入mysql 3、空密码进入mysql后,如果前面都设置正确的话,这步显示的界面是Welcome to the MariaDB monitor。4、然后可以show database; 查看当前的数据库,回车后会列举出当前数据库的列表。5、然后执行命令:update user set password=password(\'新密码\') where user=\'root\'; 并回车,其中括号中的就是将要设置的新密码。6、执行完后会提示你 Query OK,表示执行成功了,再用新密码登录就可以了。
你好,如果我的回答对您有所帮助,还请给个赞哦,您的赞是对我的最大的支持,祝您生活愉快,事事顺心,谢谢亲了~
提问怎么进入到mysql配置文件目录bin下
回答打开命令行窗口(cmd),如果安装的Mysql服务名为mysql,则netstartmysql(此步也可直接在控制面板->管理->服务中启动Mysql)输入命令进入到Mysql的安装目录中的bin目录内,如安装目录为c:\\programfiles\\Mysql,则输入命令cdc:\\programfiles\\Mysql\\bin;使用命令启动mysql服务,如用户名为root密码为123456,则命令mysql-uroot-p123456;如果登录成功,则说明mysql服务启动成功。Linux下:直接在命令行窗口中servicemysqlstart(假设服务名称为mysql);然后按windows下的第2和第3步进行同样验证;
点开始->运行,输入 services.msc 在打开的"服务管理器"中找到mysql并双击,会弹出来个属性框框,"常规"选项卡里面有个"执行路径",从这个路径你就可以看到它的bin目录在哪.
你好,如果我的回答对您有所帮助,还请给个赞哦,您的赞是对我的最大的支持,祝您生活愉快,事事顺心,谢谢亲了~
MySQL补充——忘记密码怎么办
MySQL补充——忘记密码怎么办
摘要:本文主要记录了在忘记密码时怎么办。
部分内容来自以下博客:
https://www.cnblogs.com/wuotto/p/9682400.html
关闭MySQL数据库
使用命令检查MySQL数据库是否已经关闭:
1 [root@localhost ~]# systemctl status mysql
出现“Active: inactive (dead)”表示数据库已关闭,如果是“Active: active (exited)”表示已开启,需要手动关闭:
1 [root@localhost ~]# systemctl stop mysql
修改MySQL的配置文件
找到MySQL的配置文件“my.cnf”,默认路径是:“/etc/my.cnf”。
打开文件并在“[mysqld]”下添加:
1 skip-grant-tables
这句话的作用是在登录MySQL的时候可以跳过密码直接登录。
保存修改并退出。
启动MySQL
使用命令启动MySQL:
1 [root@localhost ~]# systemctl start mysql
输入“mysql”即可进入数据库。
修改密码
连接“mysql”数据库,修改用户密码:
1 mysql> use mysql; 2 Reading table information for completion of table and column names 3 You can turn off this feature to get a quicker startup with -A 4 5 Database changed 6 mysql> update mysql.user set password=password(\'123456\') where user=\'root\'; 7 Query OK, 5 rows affected (0.00 sec) 8 Rows matched: 5 Changed: 5 Warnings: 0 9 10 mysql>
将root用户的密码设为123456。
刷新使改动生效:
1 mysql> flush privileges; 2 Query OK, 0 rows affected (0.00 sec)
回改文件并重启
退出MySQL,重新打开“my.cnf”配置文件,删除“skip-grant-tables”,保存退出。
重启MySQL,需要密码登录,输入设置的密码即可:
1 [root@localhost ~]# vim /etc/my.cnf 2 [root@localhost ~]# systemctl restart mysql 3 [root@localhost ~]# mysql 4 ERROR 1045 (28000): Access denied for user \'root\'@\'localhost\' (using password: NO) 5 [root@localhost ~]# mysql -u root -p 6 Enter password: 7 Welcome to the MySQL monitor. Commands end with ; or \\g. 8 Your MySQL connection id is 4 9 Server version: 5.6.45 MySQL Community Server (GPL) 10 11 Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved. 12 13 Oracle is a registered trademark of Oracle Corporation and/or its 14 affiliates. Other names may be trademarks of their respective 15 owners. 16 17 Type \'help;\' or \'\\h\' for help. Type \'\\c\' to clear the current input statement. 18 19 mysql>
以上是关于mysql数据库密码忘记了怎么办的主要内容,如果未能解决你的问题,请参考以下文章