登录
首页 >  文章 >  软件教程

MySQL 4.1+ using the old怎么解决?

时间:2025-01-22 21:46:01 218浏览 收藏

对于一个文章开发者来说,牢固扎实的基础是十分重要的,golang学习网就来带大家一点点的掌握基础知识点。今天本篇文章带大家了解《MySQL 4.1+ using the old怎么解决?》,主要介绍了,希望对大家的知识积累有所帮助,快点收藏起来吧,否则需要时就找不到了!

Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old ...

MySQL 4.1+ using the old怎么解决?

有些程序在安装时,出现如下错误:

MySQL 4.1+ using the old怎么解决?

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 flag from your my.cnf file in K:\WEB_2013\www.aerchi.com\***\***.php

这个问题主要就是因为数据库的登陆密码编码问题,将密码设置成41位,即可。

进入phpmyadmin,点击SQL。输入以下两条命令,然后执行即可。

  1. SET SESSION old_passwords = FALSE;
  2. SET PASSWORD = PASSWORD('your password');
复制代码

your password替换为你自己的密码。

好了,本文到此结束,带大家了解了《MySQL 4.1+ using the old怎么解决?》,希望本文对你有所帮助!关注golang学习网公众号,给大家分享更多文章知识!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>