You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm trying to setup a JIRA instance on gcloud which connects to a BYOD MySql 5.7 server.
I've created the keystore and truststore and validated connectivity with a simple Java main but when I try set the JAVA_OPTS with the corresponding -Djavax.net.ssl.keyStore= and -Djavax.net.ssl.trustStore= values, I get the following warning:
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate
Ion - You need to add "useSSL=false&" this parameters in the dbconfig file.
Example: <url>jdbc:mysql://localhost:3003/jiradatabase?useUnicode=true&"---ADD HERE---"characterEncoding=UTF8&sessionVariables=default_storage_engine=InnoDB</url>
Hello @Ion McCusker ,
Thank for reaching out and as covered in the error message you are going to want to add "useSSL=false" value. The location to place this is going to be in your dbconfig.xml file via adding the following to the end of the db URL:
&useSSL=false
and this is discussed a bit further in the following Thread:
Regards,
Earl
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.