We have an in house developed plugin that connects to a database in another server to pull data for a custom field.
In jira5 the database connection info for this plugin was located in server.xml in the following format
<Resource
name="jdbc/CustomPlugDS"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://192.168.0.112/ClientListDB"
username="roaccess"
password="9519wj84"
minEvictableIdleTimeMillis="4000"
timeBetweenEvictionRunsMillis="5000"
maxActive="20"/>
After updating to jira 6 that connection info wasnt migrated, and I have no idea where to specify it, any ideas?
customisations are not copied while migrating so you need to manually copy the this code to server.xml which will be located at ..../JIRA/conf/server.xml
i suggest to don't public your username and password for public :)
I'll try that, and dont worry, that username/pass is bogus :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Still doesnt work, I'll try to use https://marketplace.atlassian.com/plugins/org.deblauwe.jira.plugin.database-values-plugininstead of our custom plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
did you restarted after made changes on server.xml?
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.