Let try this: (Anacondaqq readme.txt)
"Very important:
---------------
After downloading the package, you MUST change credentials inside conf/import/inter_conf.txt
I talk about MySQL login and password. Please do it! You can leave everything as is, but it's very insecure.
For making that, imagine you wish to change MySQL user credentials to next:
mysweetuser
theuserpass
You need to do in theory next:
1. Open conf/import/inter_conf.txt
2. Replace rathena_user_db to mysweetuser
3. Replace pass to theuserpass
4. Make a new user at MySQL database and remove old user.
How to change MySQL user credentials:
1. Run OpenServer (green flag)
2. Run on flag, select -> Advanced -> Console
3. You will open a console where you need connect to MySQL database
4. Enter to the window: MySQL -uroot
5. Press enter
6. You now at MySQL-server console
7. You need to enter a proper command to change your user, enter something like:
grant create, select, update, delete, drop, alter, insert ON rathena_PRERE_db.* TO 'mysweetuser'@'localhost' IDENTIFIED BY 'theuserpass';
grant create, select, update, delete, drop, alter, insert ON rathena_PRERE_log.* TO 'mysweetuser'@'localhost' IDENTIFIED BY 'theuserpass';
grant create, select, update, delete, drop, alter, insert ON rathena_RENEWAL_db.* TO 'mysweetuser'@'localhost' IDENTIFIED BY 'theuserpass';
grant create, select, update, delete, drop, alter, insert ON rathena_RENEWAL_log.* TO 'mysweetuser'@'localhost' IDENTIFIED BY 'theuserpass';
flush privileges;
Where `mysweetuser` and `theuserpass` please replace with your own credentials.
8. Hit enter after each line
9. At this point, you have changed your credentials.
10. Try to run the emulator, if you did it correctly, you will be able to connect to MySQL and emulator will run without any errors in console.
If you made some fails, please check again guide above, and use phpmyadmin for adding a new user (google for guides how to make a MySQL user)"