目录
一、添加文本数据源(EXCEL&TEXT)
二、添加Mysql数据源
一、添加文本数据源(EXCEL&TEXT)
略
二、添加Mysql数据源
1.添加Mysql驱动
2.问题:
问题①
原因:
Jar文件上传校验,只允许配置为白名单的Jar上传。 bi.properties里如果没有配置此属性时,对一些常见的驱动Jar,已默认添加了SHA256值,这些Jar为白名单Jar,可以直接上传。 如需上传内置白名单以外的其他Jar,如驱动管理里添加驱动Jar或集群管理中上传产品Jar,需要在bi.properties里通过配置此属性添加需要上传的Jar的SHA256值,多个值用英文逗号分割。
如果将此属性配置成空,则不进行白名单校验,任何Jar都可以上传。
方法:
在文件夹中打开bi.properties,一般位于vividime Desktop\vividimeBI\vividime\bihome
增加
allow.jar.digest=
问题②
点击测试时,出现错误:
g5.util.exception.ConnException: The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.
方法:
使用URL登录
初始模板:jdbc:mysql://<Databaseserver>:3306/<DatabaseName>
在URL后面加入:
?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=GMT%2B8
即完整的URL为:
jdbc:mysql://127.0.0.1:3306/mydb?useUnicode=true&characterEncoding=UTF-8&zeroDateTimeBehavior=CONVERT_TO_NULL&serverTimezone=GMT%2B8
解决The server time zone value ‘Öйú±ê׼ʱ¼ä‘ is unrecognized or represents more than one time zone问题_the server time zone value '脰脨鹿煤卤锚脳录脢卤录盲' is unrec-CSDN博客