2022年12月30日
摘要: 项目工程集成quartz2.3.2,需要在内网环境重新部署一套,包括需要dump表结构和数据。 将原数据库所有表结构和表内数据导出并导入到内网数据库,并没有做任何特殊处理,启动工程后项目启动报错: 在网上搜索了许多上图错误信息都没得到启发,知道看到大佬一篇随笔 postgres 中报错 org.qu 阅读全文
posted @ 2022-12-30 16:25 圣上有喜 阅读(2664) 评论(0) 推荐(1) 编辑
摘要: 1.TCP端口的连通性 TCP端口的连通性,一般通过telnet检测,命令格式如下: telnet <targetHost> <targetPort> 如果出现以下内容,则表示TCP端口连通性是OK的: [root@localhost ~]# telnet localhost 33401 Tryin 阅读全文
posted @ 2022-12-30 15:57 圣上有喜 阅读(4018) 评论(0) 推荐(0) 编辑
摘要: keepalived配置如下 ! Configuration File for keepalived global_defs { notification_email { root@localhost } notification_email_from root@localhost smtp_ser 阅读全文
posted @ 2022-12-30 15:54 圣上有喜 阅读(72) 评论(0) 推荐(0) 编辑
摘要: nginx配置如下: 1 # For more information on configuration, see 2 # * Official English Documentation: http://nginx.org/en/docs/ 3 # * Official Russian Docum 阅读全文
posted @ 2022-12-30 15:53 圣上有喜 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 通过自己编码VB脚本,实现连接Linux ssh。 脚本内容如下: 1 Dim WshShell 2 Set WshShell=WScript.CreateObject("WScript.Shell") 3 WshShell.Run "cmd.exe" 4 WScript.Sleep 10000 5 阅读全文
posted @ 2022-12-30 15:49 圣上有喜 阅读(394) 评论(0) 推荐(0) 编辑