我正在尝试从本地计算机在线远程连接到 MySQL 服务器,但出现以下错误:
Warning: PDO::__construct(): The server requested authentication
method unknown to the client [mysql_old_password] in
C:\xampp\htdocs\ticket\terminal\sync.php
SQLSTATE[HY000] [2054] The server requested authentication method
umknown to the client
我的本地 MySQL 服务器版本是 5.5.27,libmysql - mysqlnd 5.0.10 远程 MySQL 服务器版本是 5.5.23,mysqlnd 版本没有暴露。
我猜这是一个不兼容的密码哈希问题,但我不知道如何解决它。以下是我的连接代码的一部分
$dsn = 'mysql:host=184.173.209.193;dbname=my_db_name';
$options = array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8',
);
try {
$online_dbh = new PDO($dsn, 'myusername', 'mypassword', $options);
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
echo "Congratulations!";
} catch (PDOException $e) {
echo $e->getMessage();
}