MySQL安装完后密码设置不了,请问可以解决吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL安装完后密码设置不了,请问可以解决吗?相关的知识,希望对你有一定的参考价值。
access 这句,说明你的账号密码都是正确的,是你创建的root,密码是1234的这个用户没有访问的权限。你可以 >mysql -u root -p 回车 输入密码的时候,直接回车,进入mysql
grant all(表示权限。比如select insert 等,all表示全部) privileges on 库名.表名(*代表全部) to '用户 名'@'%(地址)' identified by '密码';
用这条sql,修改一下root 密码1234的权限
列如 grant all privileges on test.* to 'root'@'%' identified by '1234';
其中,% 表示的是,这个用户在任何地址下都可以访问test这个数据库,列如在 localhost , 127.0.0.1 等等下都可以访问。追问
好像还是不行,刚安装的,没有密码
ubantu 安装mysql 5.7 解决安装不提示设置密码问题
1、安装Mysql sudo apt-get install mysql-server sudo apt-get install mysql-client sudo apt-get install libmysqlclient-dev 2、修改root密码 sudo more /etc/mysql/debian.cnf 用文件里的用户名密码登陆Mysql use mysql update user set plugin=‘mysql_native_password‘ where user=‘root‘; update user set authentication_string=password(‘123‘) where user=‘root‘; flush privillege; 3、配置远程访问 注释掉在/etc/MySQL/mysql.conf.d/mysqld.cnf里面的bind-address = 127.0.0.1 连接mysql数据库,修改user表 Grantall on *.* to ‘root‘@‘%‘ identifiedby ‘root用户的密码‘ withgrant option;flush privileges;
以上是关于MySQL安装完后密码设置不了,请问可以解决吗?的主要内容,如果未能解决你的问题,请参考以下文章