[Tut] How to fix odinMS error: ''host'' is not allowd to connect to this mySQL.....

Joined
Jul 16, 2008
Messages
411
Reaction score
0
The only reason you are getting this error is beacause you edited your db.proporties


It should look like this:

Code:
# qualified class name of your JDBC driver
driver=com.mysql.jdbc.Driver
# JDBC URL to your database
url=jdbc:mysql://127.0.0.1:3306/odinms
# credentials for database access
user = root
password =
you guys probobly edited it to your ip to make it like this:

Code:
# qualified class name of your JDBC driver
driver=com.mysql.jdbc.Driver
# JDBC URL to your database
url=jdbc:mysql://[COLOR="Red"]YOUR IP HERE[/COLOR]:3306/odinms
# credentials for database access
user = root
password =

to fix that just change the cut all the text in your db.proporties and paste this

Code:
# qualified class name of your JDBC driver
driver=com.mysql.jdbc.Driver
# JDBC URL to your database
url=jdbc:mysql://127.0.0.1:3306/odinms
# credentials for database access
user = root
password =

and then it should work
 
Last edited:
Back