美文网首页让前端飞
nodejs连接mySQL数据库连接失败问题

nodejs连接mySQL数据库连接失败问题

作者: 尤小小 | 来源:发表于2019-04-25 15:21 被阅读2次

    正常写的nodejs代码,user和password都是对的,但是就是连接不上。

    const mysql = require('mysql')
    
    // 创建链接对象
    const connection = mysql.createConnection({
        host: '127.0.0.1',
        user: 'root',
        password: '123456',
        port: '3306',
        database: 'myblog',
        insecureAuth: true
    })
    
    // 开始连接
    connection.connect() 
    
    // 执行 sql 语句
    const sql = 'select * from blogs;'
    connection.query(sql, (err, result) => {
        if(err) {
            console.error('error connecting: ' + err.stack);
            return 
        }
        console.log(connection.threadId)
    })
    
    
    // 关闭连接
    connection.end()
    

    报错提示:


    报错提示.jpg

    客户端不支持服务器请求的身份验证协议;请考虑升级MySQL客户端。于是我就将MySQL升级为最新版本。还是提示这个报错。

    后来google查询到一种解决方案,在 workbench输入:

    alter user 'root'@'localhost' identified with mysql_native_password by '123456';
    

    执行这句代码,再次连接数据库成功了。

    相关文章

      网友评论

        本文标题:nodejs连接mySQL数据库连接失败问题

        本文链接:https://www.haomeiwen.com/subject/lnlzgqtx.html