摘要:
报错1:The server selected protocol version TLS10 is not accepted 解决:找到Java的java.security文件,并删除“TLSv1, TLSv1.1, 3DES_EDE_CBC”,这三个参数: 报错2:PKIX path buildi 阅读全文
摘要:
本文介绍springboot工程在Linux下,打包、部署、日志配置、shell脚本自启动等一系列操作。 1、springboot工程打包 使用springboot自带的Run/Debug Configurations: 新建一个Maven Configuration: 把以下命令copy到Run中 阅读全文
摘要:
有两个方案(本文介绍方案1的使用) 1、将windows共享目录,挂载到linux系统下,通过使用本地目录访问windows共享目录 2、通过samba的java实现包,不过需要开个windows共享目录的账户 https://www.samba.org/ 1、下载samba https://blo 阅读全文
摘要:
ref:https://blog.csdn.net/weixin_55909413/article/details/114767079 https://blog.csdn.net/h610443955/article/details/83185528 阅读全文
摘要:
TagLoggingExport.sql脚本如下: USE [CC_oval_21_10_27_09_20_33R] GO --存储过程如果存在,则先删除存储过程 IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[ 阅读全文
摘要:
目录 1. Linked Server 1). 登录Sql Server Management Studio 2). 添加Linked Server 2. 存储过程 1). 修改SQL脚本 2). 运行SQL脚本 3). 测试存储过程 (a). 存储过程说明 (b). 存储过程调用 (c). 检查调 阅读全文
摘要:
1、创建hive分区表 create table if not exists tb1(id string,name string)partitioned by(dt string) 2、分区表的字段个数可以大于数据源表 项目背景:数据源为SQLServer,每天新增200W条数据,需要每天定时导入到 阅读全文
摘要:
es关联mysql实现模糊查询的数据流: 1、使用logstash同步mysql数据到es logstash简介及基本操作:https://blog.csdn.net/yurun_house/article/details/109025588 win10安装logstash:https://www. 阅读全文
摘要:
es介绍:https://blog.csdn.net/qq_38262266/article/details/90311086 1、安装 Win10下安装es,ref:https://blog.csdn.net/qq_40880022/article/details/126561619 注:es的版 阅读全文
摘要:
1、npm install 2、npm run dev 阅读全文