I was trying to recover a lost space through MS SQL Server snapshots. I did this: installed MS SQL Server Express on my machine. Created a local account for Confluence. Attached the snapshot. Looks good from a cursory view of the tables. Access works for the Confluence login using MS SQL Server Management Studio with tcpip protocol.
I installed Confluence 4.3 standalone (different from our other EAR/WAR install, but thought it would be easier), inserted our license and came to the database configuration. I could not get the database setup to succeed. I tried both jdbc:jtds and microsoft drivers. I copied both of those drivers' .jar files into Confluence's lib dir and restarted Confluence. I tried these connect strings:
1. jdbc:jtds:sqlserver://localhost:1433/Confluence
Error: Configuring the database failed. Couldn't create the database schema. java.sql.SQLException: Network error IOException: Connection refused: connect
2. jdbc:sqlserver://localhost:1433;databaseName=Confluence;
Error: Configuring the database failed. Couldn't create the database schema.Java Runtime Environment (JRE) version 1.6 is not supported by this driver. Use the sqljdbc4.jar class library, which provides support for JDBC 4.0.
(Note, I had downloaded the MS 4.0 driver!)
Any suggestions?
As mentioned here: https://confluence.atlassian.com/display/DOC/Database+Setup+for+SQL+Server
You need to insert this:
jdbc:jtds:sqlserver://<server>:<port>/<database>;instance=SQLExpress
Change the instance name from SQLExpress to something else if you name it differently.
|
Thanks - this worked
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess you need to find the connection for the SQLExpress instance.
jdbc:sqlserver://localhost\sqlexpress:1433;databaseName=Confluence
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.