Reputation: 64
I got an error
Cannot create JDBC driver of class 'org.postgresql.Driver' for connect URL 'jdbc:postgresql://192.168.0.169:5432/synapse?autoReconnect=true'
Upvotes: 1
Views: 9156
Reputation: 1
I had the same problem, it turned out that the reason was in the "space" when inserting before the connection address
_jdbc:postgresql://
After deleting it, the error disappeared
Upvotes: 0
Reputation: 816
Upvotes: 0
Reputation: 318
Give it a try using
jdbc:postgresql://192.168.0.169:5432/synapse?tcpKeepAlive=true
If this does not work check the Postgres Driver class in lib folder.
Upvotes: 4
Reputation: 34566
You most probably forgot to add the Postgres Driver class in lib folder.
Read this:
Upvotes: 5