I am trying to import users from an existing JIRA setup to our Crowd server. The products are running on different servers.
According to the JIRA information, the database URL is jdbc:postgresql://localhost:5432/jira, so on the Crowd "Atlassian Product Importer", I've changed this to jdbc:postgresql://<FQDN>:5432/jira. I've set the database driver to org.postgresql.Driver and I've set the username/password to the values in dbconfig.xml on the JIRA server.
When I try to continue, Crowd reports "Could not load database connection". I have checked that I can ping the JIRA server from the Crowd server and that the JIRA server doesn't have any iptable rules running.
Both servers are running Ubuntu. Crowd is 2.5.3 and JIRA is 5.0.2.
Any suggestions on how I can troubleshoot/proceed with this, please?
Thanks.
Philip
Postgres can be blocking external connections:
Check the /etc/postgresql/./main/pg_hba.conf
You may need to add a line here to allow external connections.
Example:
host all all 192.168.1.64/24 md5
Also check /etc/postgresql/./main/postgresql.conf to make postgres work on all network interfaces:
A line here may need to be added allowing external connections - to allow the range 192.168.1.64/24, add the line
listen_address='*'
Hope it helps!
Brilliant! Thank you.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As an update to this, I've tried putting the Crowd logging on maximum whilst trying to proceed with the import and the log doesn't make *any* mention of the JIRA server, perhaps suggesting that Crowd isn't getting as far as trying to make a connection to JIRA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.