今天尝试在Ubuntu虚拟机上安装MySql 数据库(版本是:5.7.23-0Ubuntu0.18.04.1),数据库安装很简单,就是三行命令:

  1.  
    sudo apt-get install mysql-server # 下载安装mysql的服务端
  2.  
    sudo apt-get install mysql-client # 下载安装mysql的客户端
  3.  
    sudo apt-get install libmysqlclient-dev

但是,看似很顺利简单的安装过程,在第一次登陆的时候却遇到了麻烦。

  1.  
    ~$ mysql -u root -p
  2.  
    Enter password:
  3.  
    ERROR 1698 (28000): Access denied for user 'root'@'localhost'

然后,在网上找了很多的教程,最后实验成功的是这个方案:

解决步骤:

(1) 停止mysql服务:

~$ sudo service mysql stop

(2)以安全模式启动MySQL:

~$ sudo mysqld_safe --skip-grant-tables &

(3)MySQL启动之后就可以不用密码登陆了:

  1.  
    ~$ mysql -u root
  2.  
    Welcome to the MySQL monitor. Commands end with ; or \g.
  3.  
    Your MySQL connection id is 2
  4.  
    Server version: 5.7.10 MySQL Community Server (GPL)

(4)查看一下user表,错误的起因就是在这里, root的plugin被修改成了auth_socket,用密码登陆的plugin应该是mysql_native_password。

  1.  
    mysql> select user, plugin from mysql.user;
  2.  
    +-----------+-----------------------+
  3.  
    | user | plugin |
  4.  
    +-----------+-----------------------+
  5.  
    | root | auth_socket |
  6.  
    | mysql.sys | mysql_native_password |
  7.  
    | dev | mysql_native_password |
  8.  
    +-----------+-----------------------+
  9.  
    3 rows in set (0.01 sec)

(5)关于auth_socket,在官方有说明: https://dev.mysql.com/doc/mysql-security-excerpt/5.5/en/socket-authentication-plugin.html ,反正现在暂时不用它, 那就把这里改了。

  1.  
    mysql> update mysql.user set authentication_string=PASSWORD('newPwd'), plugin='mysql_native_password' where user='root';
  2.  
    Query OK, 1 row affected, 1 warning (0.00 sec)
  3.  
    Rows matched: 1 Changed: 1 Warnings: 1
  4.  
     
  5.  
    mysql> flush privileges;
  6.  
    Query OK, 0 rows affected (0.00 sec)

(6)重启服务,问题就解决了:

  1.  
    ~$ sudo service mysql stop
  2.  
    ...
  3.  
    * MySQL Community Server 5.7.10 is stopped
  4.  
    ~$ sudo service mysql start
  5.  
    ..
  6.  
    * MySQL Community Server 5.7.10 is started
  7.  
    ~$ mysql -u root -p
  8.  
    Enter password:
  9.  
    Welcome to the MySQL monitor. Commands end with ; or \g.
  10.  
    Your MySQL connection id is 2
  11.  
    Server version: 5.7.10 MySQL Community Server (GPL)

解决MySql ERROR 1698 (28000) 错误:Access denied for user 'root'@'localhost'的更多相关文章

  1. (转载)解决MySql 数据库 提示:1045 access denied for user 'root'@'localhost' using password yes

    今天想用用MySQL 数据库  谁知道老提示 1045 access denied for user 'root'@'localhost' using password yes 最后在csdn 上找到 ...

  2. 解决MySql 数据库 提示:1045 access denied for user 'root'@'localhost' using password yes

    今天想用用MySQL 数据库  谁知道老提示 1045 access denied for user 'root'@'localhost' using password yes 最后在csdn 上找到 ...

  3. 数据库之MySQL ERROR 1698 (28000) 错误:Access denied for user 'root'@'localhost'" error【摘抄】

    声明:全文均摘抄于MySQL ERROR 1698 (28000) 错误 //错误起源: ~$ mysql -u root -p Enter password: ERROR 1698 (28000): ...

  4. CDbConnection failed to open the DB connection: SQLSTATE[28000] [1045] Access denied for user 'root'@'localhost' (using password: YES)

    连接mysql出错:CDbConnection failed to open the DB connection: SQLSTATE[28000] [1045] Access denied for u ...

  5. MySQL ERROR 1698 (28000) 错误

    之前MySQL服务端本机上使用密码登陆root账号是没有问题的,但是今天不知道是因为动了哪里,登陆失败并有这个错误代码: ~$ mysql -u root -p Enter password: ERR ...

  6. mysql 创建帐号出现 Access denied for user 'root'@'localhost'错误(转载)

    从供应商那边接手一个MySQL数据库(数据库版本为5.7.21 MySQL Community Server (GPL)),在创建账号时遇到了“ERROR 1044 (42000): Access d ...

  7. eclipse不正常编译导致错误:Access denied for user 'root'@'localhost' (using password: YES)

    使用eclipse连接mysql报错:Access denied for user 'root'@'localhost' (using password: YES) 连接代码没有任何问题,网上找了很多 ...

  8. phpMyAdmin出现错误 Access denied for user 'root'@'localhost' (using password: NO)

    今天安装wmpp,之后启动后点击phpMyAdmin 报拒绝连接错误:#1045 - Access denied for user 'root'@'localhost' (using password ...

  9. 解决:MySQL 报错:1045 - Access denied for user 'root'@'localhost'(using password YES)

    一.前言 今年疯狂迷上了开源,只要看到好的开源项目,就会不顾一切一股脑扎进去研究,五一期间发现一个很好的关于众筹的开源项目,但不巧,这个项目竟然是 PHP 写的,没学过 PHP,自然对这个开源项目毫无 ...

随机推荐

  1. Oracle队列实现

    Oracle队列实现 -- 核心技术点:for update 创建测试表 create table t ( id       number primary key, processed_flag va ...

  2. Spring 实例化Bean的3种方式

    要使用Spring中的Bean,需要先创建这个Bean的实例. 实例化Bean有3种方式: 构造器方式 静态工厂方式 实例工厂方式 构造器方式 构造器方式是最常用的.在Bean中写构造函数,然后在配置 ...

  3. sql 查询某个字段最长的记录

    sql  查询文本字段中值的长度最长的记录 一.函数1.SQL ServerLEN() 函数返回文本字段中值的长度.SELECT LEN(column_name) FROM table_name;2. ...

  4. 后端接收json数据交互

    学习记录,后端接收json数据几种方式 1.直接接收或者通过HttpServletRequest接收 public void test(String userid, HttpServletReques ...

  5. Linux NFS 共享

    通过NFS网络文件系统,可以通过网络共享目录,让网络上的其他主机可以通过挂载访问共享目录的数据. Server 安装相关软件包 [root@server ~]# yum install nfs-uti ...

  6. NAT实验

    实验内容 实验拓扑   实验编址 实验步骤1.基础配置根据编址表配置,检测ping 2.配置静态NAT在公司网关路由器R1上配置访问外网的默认路由 由于内网使用的都是私有IP地址,员工无法直接访问公网 ...

  7. AD10生成Gerber文件详细步骤

    参考:https://wenku.baidu.com/view/faf0363c195f312b3069a5d2.html

  8. c风格的字符串

    c风格的字符串的标注库 #include <cstring> 使用c 风格的字符串,牢记,其必须以null为结束标志 如 char ca[]={'c','+','='}; cout< ...

  9. app开发-3

    一.Audio 模块实现开启手机摄像头 基于html5 plus http://www.html5plus.org/doc/zh_cn/audio.html 栗子:   自定义: scanQR.HTM ...

  10. mysql类似to_char()to_date()函数mysql日期和字符相互转换方法date_f

    mysql 类似to_char() to_date()函数mysql日期和字符相互转换方法 date_format(date,'%Y-%m-%d') -------------->oracle中 ...