Originally, this was set up to read via a JNDI database name, now with 6.0.2 we use dbconfig.xml to name the database and the custom database field is not able to read from it.
How do I restore the custom database field's capability?
As it turned out, after some experimentation, the problem was the persistence manager in config.xml Previously it was set to
<Manager className="org.apache.catalina.session.PersistentManager" saveOnRestart="false">
The recommended setting in 6.0.2 is
<Manager pathname=""/>
It turns out that the previous persistence manager setting never works when a JNDI resource is defined in the config.xml and it mostly works when the JNDI entry is omitted.
We were using the old persistence manager, so we had to remove the JNDI entry and try a few times to launch Jira.
By going to the new, recommended persitence manager setting, we were able to launch with the JNDI resource defined.
You should define your data source in the context.xml file, under the JIRA_HOME/conf folder, as described here: http://confluence.kepler-rominfo.com/display/DBCF/Data+Source+Configuration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Actually I was already aware of this answer from the custom database field documentation, but it doesn't fully address the problem.
I tried with setting up a JNDI resource in config.xml (the way it used to be) and Jira failed to load at all. I had to back that out so I could keep the Jira instance running while I figured it out.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What was the error in the log when setting the JNDI resource in the context.xml file? I have tested on Jira 6.0.2 and it works fine declaring the data source as described in documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There was no error or even any progress trace in the Jira log. I don't think Jira ever got close to launching. The tomcat log had
SEVERE: No Store configured, persistence disabled
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.