Help setting up using an external database

Richie

Valued Member!
Hello,

Can anyone help me get Reality working when using an external database ?
I have phpmyadmin setup on another server but can't get past perl db_migrate.pl , It fails with
Could Not Connect To MySQL - access denied for user 'Dayz'@'HOST1' <using password:yes>
Line 48

The user, password & database have already been setup, I think my issue is the host name ?

I'm trying
Code:
perl db_migrate.pl --host Database.MyDomain.com --user Dayz --pass DayzPassword --name DB-Name --port 3306

Thanks in advance
 
It looks like you did not grant permissions for the user. Do you see the appropriate grants?
Code:
SHOW GRATNS FOR 'Dayz'@'HOST1';
 
I hadn't waited long enough for the domain to resolve, It now works
Thanks for the replies though :)
 
Back
Top