页面树结构

版本比较

标识

  • 该行被添加。
  • 该行被删除。
  • 格式已经改变。

...

代码块
linenumberstrue
# keytool -genkeypair -alias smartbiunionserver -keyalg RSA -validity 3650 -keystore smartbiunionserver_keystore.jks


参数参数说明
alias证书别名
keyalg加密算法,一般配置为RSA
validity证书有效期,单位是(天)
keystore指定jks证书的名称


如下图,按要求输入keystore证书的密码及相关信息,即可在当前目录生成smartbiunionserver_keystore.jks证书文件

...

代码块
linenumberstrue
coordinator=true
node-scheduler.include-coordinator=true
query.max-memory=2GB
query.max-memory-per-node=1GB
discovery-server.enabled=true

http-server.https.enabled=true
http-server.https.port=8443
discovery.uri=https://BI-0082:8443

http-server.authentication.type=PASSWORD
http-server.https.keystore.path=C:\\Smartbi\\SmartbiUnionServer\\etc\\smartbiunionserver_keystore.jks
http-server.https.keystore.key=manager

internal-communication.https.required=true
internal-communication.https.keystore.path=C:\\Smartbi\\SmartbiUnionServer\\etc\\smartbiunionserver_keystore.jks
internal-communication.https.keystore.key=manager
node.internal-address-source=FQDN

配置说明:

参数值参数说明
http-server.https.enabled配置为true,开启https
http-server.https.port配置https端口,此处配置为8443,可以根据实际情况调整
discovery.uri

跨库联合数据源的连接url请求地址,配置为https://主机名称:https的端口.

此处必须写跨库联合数据源的服务器的主机名称,不能写ip地址。

https端口就是http-server.https.port配置的端口

http-server.authentication.type服务认证类型,此处配置为PASSWORD
http-server.https.keystore.path第1步生成的jks证书路径,建议写完整的绝对路径
http-server.https.keystore.key第1步生成的jks证书的密码
internal-communication.https.required配置为true,开启内部https连接请求
internal-communication.https.keystore.path内部连接请求证书,配置为第一步生成的jks证书路径即可,建议写完整的绝对路径
internal-communication.https.keystore.key内部连接请求证书的密码


注意

1、此处要禁用http请求,否则无法开启账户密码认证。

...

代码块
linenumberstrue
# htpasswd -B -C 10 -c password.db smartbiunionserver

参数说明

参数参数说明
-B强制使用bcrypt算法加密密码
-C

设置bcrypt算法的计算时间,默认是5。数值越大越安全,但是会花费更多时间,建议配置4-17

-c创建一个新的密码文件 password.db
smartbiunionserver用户名,可以自定义。

6)创建密码认证配置文件

创建<SmartbiUnionServer>/etc/password-authenticator.properties

代码块
linenumberstrue
password-authenticator.name=file
file.password-file=C:\\Smartbi\\SmartbiUnionServer\\etc\\password.db

说明:

参数参数说明
password-authenticator.name密码认证类型,配置值为file
file.password-file密码文件路径,填写上一步配置生成的password.db文件路径,建议写绝对路径

...

7)启动跨库联合数据源

Linux:

代码块
linenumberstrue
# nohup ./run.sh & 

...

代码块
linenumberstrue
# run.cmd

8)测试连接

连接url中,端口配置为之前配置的https端口,连接url后增加?SSL=true参数,具体如下图所示

...