Why does the JIRA database URL have slashes in it?

Chris Flynn July 10, 2015

Has anyone else noticed that the JIRA (v6.4.1) database URL looks really odd with slashes instead of or in addition to semi colons?

this

<url>jdbc:oracle:thin:@//hostname:port/dbname</url>

instead of

<url>jdbc:oracle:thin:@hostname:port:dbname</url>

1 answer

1 accepted

1 vote
Answer accepted
Sergey Svishchev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
July 11, 2015

This configures a connection via service name (as opposed to SID) – reasons are explained in https://jira.atlassian.com/browse/JRA-29755 :

  1. High-availability clusters can only be connected to using the service name using a newer URL syntax
  2. The Oracle documentation says that the old syntax is no longer supported as of 10g
Chris Flynn August 6, 2015

Thank you very much for the education...

Suggest an answer

Log in or Sign up to answer