首页 > 代码库 > MySQL修改密码
MySQL修改密码
1.设置root密码(root密码为空时)
mysqladmin -uroot password "new123";
2.修改mysql密码(3种方法)
1)mysqladmin -uroot -poldboy123 password "new123"; 2)mysql>update mysql.user set password=password("oldboy123") where user=‘root‘ and host=‘localhost‘; mysql>flush privileges; 3)mysql> set password=password("123");
3.忘记密码
1)首先关闭mysql 2) 跳过验证启动 mysqld_safe --skip-grant-tables & 3)使用修改mysql密码的方式进行修改建议(第二种方法) 4)重新启动mysql
4.创建超级用户
mysql> grant all privileges on *.* to ‘system‘@‘localhost‘ identified by ‘oldboy123‘ with grant option; mysql> flush privileges;
5.多实例mysql修改密码
mysqladmin -uroot -poldboy123 password "new123" -S /data/3306/mysql.sock
6.忘记密码
mysqld_safe --defaults-file=/data/3306/my.cnf --skip-grant-tables &
MySQL修改密码
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。