博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
改动mysqlpassword
阅读量:6658 次
发布时间:2019-06-25

本文共 479 字,大约阅读时间需要 1 分钟。

1、假设没有password,则

  mysql -u root

  mysql> SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

2、假设已经有password,能够用:

  mysqladmin -u root password "newpass"

  假设root已经设置过password。採用例如以下方法

  mysqladmin -u root password oldpass "newpass"

3、能够在可视化界面中,找到mysql数据库的user表,改动,可是记得加权限:

grant all on mysql.* to 'root'@'localhost' identified by 'password'; 

最后那个password即是你要改动的root用户的密码 

假设不加这句的话。会没有权限而登不上,回报这种错误:

错误代码  1045 

Access denied for user 'root'@'localhost' (using password:YES) 

转载地址:http://ytqto.baihongyu.com/

你可能感兴趣的文章
jquery.ellipsis根据宽度(不是字数)进行内容截断,支持多行内容
查看>>
android中的bundle传送数据
查看>>
Ubuntu12.04 64bit最新环境安装教程
查看>>
OpenID简介
查看>>
.NET可靠UDP文件传输
查看>>
学习笔记(在商飞项目里 1)
查看>>
date 命令及实例讲解
查看>>
数组和链表的区别
查看>>
与众不同 windows phone (26) - Contacts and Calendar(联系人和日历)
查看>>
secureCRT linux shell显示中文乱码 解决方法
查看>>
[Express] Level 3: Reading from the URL
查看>>
android开发类似coverflow效果的3d旋转
查看>>
Codeforces 437B The Child and Set
查看>>
POJ训练计划2777_Count Color(线段树/成段更新/区间染色)
查看>>
取消mod_sofia的呼叫鉴权
查看>>
几何画板如何用描点法画二次函数
查看>>
老友记
查看>>
oracle12c ORA-28040: No matching authentication protocol
查看>>
matlab中如何求某一个矩阵的标准差和均值
查看>>
Leetcode: Find Peak Element
查看>>