PHP遠程鏈接mysql報錯處理辦法

在萬網弄了個虛擬主機,想遠程連mysql調試(本地4G若是開mysql內存不夠!),一直報錯:mysql

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 filesql

解決方法以下:this

SET old_passwords = 0;
SET PASSWORD = PASSWORD('estudyadmin123');
FLUSH PRIVILEGES; spa

相關文章
相關標籤/搜索