PDA

View Full Version : World and MySQL problems?


Quickfoot60
06-20-2008, 09:11 PM
hey all,

I got 2 problems here. when I start the "Start.bat" file, I get this in the "eqemu_debug_world_2704.log"

06.20. - 19:52:24] Starting Log: logs/eqemu_debug_world_2704.log
[06.20. - 19:52:24] [WORLD__INIT] Loading server configuration..
[06.20. - 19:52:24] [WORLD__INIT] Log settings loaded from log.ini
[06.20. - 19:52:24] [WORLD__INIT] CURRENT_WORLD_VERSION:EQEMu 0.7.0
[06.20. - 19:52:24] [WORLD__INIT] Connecting to MySQL...
[06.20. - 19:52:24] [WORLD__INIT_ERR] Cannot continue without a database connection.


and also I get this in the "eqemu_error_world_2704.log"

[06.20. - 19:52:24] Starting Log: logs/eqemu_error_world_2704.log
[06.20. - 19:52:24] Failed to connect to database: Error: #1251: Client does not support authentication protocol requested by server; consider upgrading MySQL client.


thats what it says in the log files when I start that "Start.bat" file. really need help. so yeah.

also, I have the lastest update for EQEmu, I have the lastest MySQL and the lastest MySQL GUI Tools.

Thanks.

Andrew80k
06-21-2008, 12:22 AM
You need to use old password type.


mysql> UPDATE mysql.user SET Password = OLD_PASSWORD('newpwd')
-> WHERE Host = 'some_host' AND User = 'some_user';
mysql> FLUSH PRIVILEGES;