Hey there,
I'd like to write an installation howto for installing open-xchange community edition on an ubuntu 8.04 LTS server using the open-xchange repository.
Right now I'm on step "Creating your first context and users" of the Quick Install Guide for the Hosting Edition. Unfortunately, when running the createcontext script, I get a Java exception error and I don't know what's wrong:
Error message:
[Edit]
When using a wrong password I get this error message, so connection seems to be possible somehow...
[/Edit]
I can access the database using user "root" (no password) or user "openexchange" via the mysql client console without problems...
Any hints?
I'd like to write an installation howto for installing open-xchange community edition on an ubuntu 8.04 LTS server using the open-xchange repository.
Right now I'm on step "Creating your first context and users" of the Quick Install Guide for the Hosting Edition. Unfortunately, when running the createcontext script, I get a Java exception error and I don't know what's wrong:
Code:
$ sudo /opt/open-xchange/sbin/createcontext -A oxadminmaster -P mysecret -c 1 -N mycontext -u administrator -d "System Administrator" -g System -s Administrator -p myothersecret -e administrator@mydomain.tld -q 1024 -L defaultcontext --access-combination-name=all
Code:
context 1 could not be created: Server response: com.mysql.jdbc.exceptions.MySQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.
When using a wrong password I get this error message, so connection seems to be possible somehow...
Code:
context 1 could not be created: Server response: Authentication failed
I can access the database using user "root" (no password) or user "openexchange" via the mysql client console without problems...
Code:
mysql> SELECT User, Host from mysql.user; +------------------+---------------------+ | User | Host | +------------------+---------------------+ | openexchange | % | | root | % | | root | 127.0.0.1 | | openexchange | 192.168.178.10 | | openexchange | eriador | | root | eriador | | debian-sys-maint | localhost | | openexchange | localhost | | root | localhost | | openexchange | host.mydomain.tld | +------------------+---------------------+ 10 rows in set (0.00 sec)
Comment