Grails MySQL connection

435 Views Asked by At

When I try to connect to MySQL on GGTS I get the following error thrown:

java.lang.IllegalArgumentException: Bad artifact coordinates mysql-connector-java-5.1.36-bin, expected format is :[:[:]]:

I am running GGTS on Ubuntu on a VM.

I have read that there was a problem with Windows. Could that be similar with Ubuntu?

1

There are 1 best solutions below

1
On

You don't have configured correctly grails data sources in grails-app/conf/application.groovy.

It should be something like these:

dataSource {
    dbCreate = "update"
    url = "jdbc:mysql://localhost:3306/my_database"
    driverClassName = "com.mysql.jdbc.Driver"
    dialect = org.hibernate.dialect.MySQL5InnoDBDialect
    username = "username"
    password = "password"
}

Keep in mind that if you have a specific configuration for your current execution environment (e.g. production), you must edit the relative configuration:

environments {
    production {
        dataSource {
            url = "jdbc:mysql://liveip.com/liveDb"
            // other environment-specific settings here
        }
    }
}

For a complete reference see the grails data source documentation.