소스 검색

PR951 [docs] Presto over HTTPS from HUE throws SSL Exception (#951)

sandeepreddy3647 6 년 전
부모
커밋
a7e4c597b9
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      docs/docs-site/content/administrator/configuration/editor/_index.md

+ 2 - 0
docs/docs-site/content/administrator/configuration/editor/_index.md

@@ -244,6 +244,8 @@ Direct interface:
       name=Presto SQL
       interface=presto
       ## Specific options for connecting to the Presto server.
+      ## To connect to Presto over HTTPS/SSL you will need to construct connection string like below:
+      ## "url": "jdbc:presto://localhost:8080/catalog/schema?SSL=true&SSLTrustStorePath=/path/to/key_file&SSLTrustStorePassword=${password}"   
       ## The JDBC driver presto-jdbc.jar need to be in the CLASSPATH environment variable.
       ## If 'user' and 'password' are omitted, they will be prompted in the UI.
       options='{"url": "jdbc:presto://localhost:8080/catalog/schema", "driver": "io.prestosql.jdbc.PrestoDriver", "user": "root", "password": "root"}'