zoukankan      html  css  js  c++  java
  • 【已解决】SQLSTATE[HY000] [2000] mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication.

    买的是别人公司的虚拟主机,在控制面板上把php版本由php5.2切换到7.1(据说PHP7性能高),切换后,只有首页可以打卡,内页提示数据库执行错误(打印的debug信息如下):

    Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication. Please use an administration tool to reset your password with the command SET PASSWORD = PASSWORD('your_existing_password'). This will store a new, and more secure, hash value in mysql.user. If this user is used in other scripts executed by PHP 5.2 or earlier you might need to remove the old-passwords

    百度了一下发现是mysql高版本驱动对mysql低版本的不太支持,低版本数据库密码模式为16位,高版本密码模式是41位,如果方便的话,让客户去修改再好不过了。

    我是自己打开phpmyadmin工具,执行下面两个SQL修改的.

    SET SESSION old_passwords = FALSE;
    SET PASSWORD = PASSWORD('这个括号里是密码');

    这样修改一下就行了。也不用重启mysql,刷新一下页面OK啦。

    参考:https://blog.csdn.net/aerchi/article/details/45949937

  • 相关阅读:
    mycat主要参数
    Linux上通过docker方式安装mysql
    Docker镜像拉取慢的解决方法
    mysql关联、子查询索引优化
    Mysql优化单表查询
    Mysql如何快速插入100万条记录?
    git连接到github
    git分支操作2
    git基本操作1
    git简介及安装(win10)
  • 原文地址:https://www.cnblogs.com/zhuque/p/13290308.html
Copyright © 2011-2022 走看看