Personal tools
You are here: Home CinnamonServer Upgrade upgrade to 2.1.0

upgrade to 2.1.0

How to upgrade the Cinnamon Server to version 2.1.0

The Cinnamon server itself does not need any configuration or database changes, but the administrative web-GUI (Dandelion) has a new configuration file: database-config.groovy. Into this file, which is placed along the existing dandelion-config.groovy, you should move the dbconnections block from the dandelion-config.groovy.

Example of content of the new database-config.groovy file:

dbconnections {
        demo {
                id = 1
                prefix = 'demo'
                driverClassName = 'net.sourceforge.jtds.jdbc.Driver'
                jdbcType = 'jtds:sqlserver'
       		host = 'cinnamon.dev'
       		cinnamonServerUrl = 'http://cinnamon.dev:8080/cinnamon/cinnamon'
                port = 1433
                dbname = 'demo'
                username = 'cinnamon'
                password = 'cinnamon'
                dbUser = 'cinnamon'
		dbPassword = 'cinnamon'               
		dbType = 'mssql'
                encryptPasswords = 'false'
        }
}
Document Actions