赞
踩
1、mysql报错出现ERROR1698(28000):Access denied for user root@localhost错误解决方法
安装完成后,登录mysql的时候就出现了如下错误:
因为安装的过程中没让设置密码,可能密码为空,但无论如何都进不去mysql。
下面是我的处理过程:
Step1:修改mysqld.cnf配置文件
在ubuntu的terminal(也即终端)上输入sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf,进入到这个配置文件,然后在这个配置文件中的[mysqld]这一块中加入skip-grant-tables这句话。
[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
skip-grant-tables
作用:就是让你可以不用密码登录进去mysql。
保存:ctrl+x => y,退出。输入:service mysql restart,重新启动mysql。
step2:设置root密码
在终端上输入mysql -u root -p,遇见输入密码的提示直接回车即可
进入mysql后,分别执行下面三句话:
1 use mysql; 然后敲回车
2 update user set authentication_string=password(“你的密码”) where user=“root”; 敲回车
3 flush privileges; 然后敲回车
然后输入quit,退出mysql。
step3:注释掉skip-grant-tables
重新进入到mysqld.cnf(输入指令:sudo nano /etc/mysql/mysql.conf.d/mysqld.cnf)文件中去将刚开始加的skip-grant-tables这条语句给注释掉。
[mysqld]
#
# * Basic Settings
#
user = mysql
pid-file = /var/run/mysqld/mysqld.pid
socket = /var/run/mysqld/mysqld.sock
port = 3306
basedir = /usr
datadir = /var/lib/mysql
tmpdir = /tmp
lc-messages-dir = /usr/share/mysql
skip-external-locking
#skip-grant-tables
再返回终端输入mysql -u root -p,应该就可以进入数据库了。
step4:问题解决
如果此时还是报出错误的话
那么就需要返回step3中,把注释掉的那条语句重新生效(就是删除#符号),然后输入service mysql restart重启数据库,最后重新进入mysql中,先任意选择一个数据库,比如use mysql;
然后输入select user, plugin from user; 看下图:
从图中可以看到在执行了select user, plugin from user; 后,错误原因是因为plugin root的字段是auth_socket,那我们改掉它,替换为mysql_native_password就行了。
输入:
update user set authentication_string=password(“密码”),plugin=‘mysql_native_password’ where user=‘root’;
然后回车执行以下,再输入select user,plugin from user;
回车,我们能看到root用户的字段改成功了。
最后quit退出。返回执行step3(继续将skip-grant-tables注释掉)。
然后重新进入mysql,那么这个问题就完全解决了。
2、授权命令:
Mysql授权允许远程登录后,linux中安装的mysql可以与Navicat for Mysql(可视化)等连接,在可视化软件下管理数据库。
注意:不能使用临时密码
设置密码命令:
alter user ‘root’@‘localhost’ identified by ‘这里是你的密码’;
授权允许远程访问
grant all privileges on . to ‘root’@‘%’ identified by ‘@123456’;
注意:请把命令中的【@123456】更改为自己的Mysql密码。
刷新授权: flush privileges;
此时,你的Mysql就可以被远程连接了。
关闭授权 revoke all on . from dba@localhost;
3、mysql连接报错:ERROR 2002 (HY000):Can’t connect to MySQL server on ‘172.18.0.4’ (115)
打开 /etc/mysql/mariadb.config.d/50-server.cnf
注释掉 bind-address = 127.0.0.1
写入bind-address = 0.0.0.0
4、MySql 1045 Access denied for user ‘root‘@‘localhost‘ (using password: YES)
打开 /etc/mysql/mariadb.config.d/50-server.cnf
写入skip-grant-tables
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。