2017-05-30 119 views
0

我在一個服務器上我想要連接的套接字實際上是一個文件。確切地說是/var/opt/gitlab/postgresql/.s.PGSQL.5432使sonarqube連接到unix套接字

我發現覆蓋sonarqube的dp連接的文檔是https://jdbc.postgresql.org/documentation/80/connect.htmlhttps://docs.sonarqube.org/display/SONAR/Installing+the+Server會導致我相信連接到unix套接字是不可能的。

是否有可能,以及sonar.jdbc.url完成此操作的格式是什麼?

這是sonarqube文檔使用示例:我試圖做這樣的事情

sonar.jdbc.url=jdbc:postgresql://localhost/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance 

sonar.jdbc.url=jdbc:postgresql://var/opt/gitlab/postgresql/.s.PGSQL.5432/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true&useConfigs=maxPerformance 

感謝您的時間。

回答

2

不幸的是,據我所知,通過Postgresql JDBC驅動程序連接到Unix套接字是不可能的。

您必須在postgresql配置中打開TCP/IP套接字服務器。

相關問題