0
我在一個服務器上我想要連接的套接字實際上是一個文件。確切地說是/var/opt/gitlab/postgresql/.s.PGSQL.5432
。使sonarqube連接到unix套接字
我發現覆蓋sonarqube的dp連接的文檔是https://jdbc.postgresql.org/documentation/80/connect.html和https://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
感謝您的時間。