Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello All,
Can we connect jira software to postgresql database other than public schema ?
If so how the schema should be configured for privileges so that it connects to jira application.
Thanks & Regards,
Vishwas
I also have this problem, and did some study on it, there are serveral ways to solve it.
1. Use @Fadoua metioned method, set search_path.
2. Modify dbconfig.xml, add currentSchema paremeter to jdbc url:
<url>jdbc:postgresql://ip:5432/yourdb?currentSchema=jira</url>
3. Create the schema same as your jira db login user.
In postgresql, show search_path command will show the search_path settings, default result is "$user", public. It means default schema is same as current logon username.
Yes you can. In fact I had issues 2 days ago configuring the Postgres to Jira because I was using the public schema.
ALTER DATABASE <database name> SET search_path TO <your schema>,public;
Run the command above after adding your schema.
Best,
Fadoua
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.