摘要: 引入Microsoft.Extensions.Logging.Debug包,DbContext public class MySqlDbContext : Microsoft.EntityFrameworkCore.DbContext { public static readonly LoggerF 阅读全文
posted @ 2025-06-16 15:42 杜子烟 阅读(4) 评论(0) 推荐(0)
摘要: 1.安装java环境 2.上传jar包到服务器/home/test/web.jar 3.上传start.sh到/home/test #!/bin/sh RESOURCE_NAME=web.jar BUILD_ID=dontKillMe tpid=`ps -ef|grep $RESOURCE_NAME 阅读全文
posted @ 2025-04-21 18:13 杜子烟 阅读(58) 评论(0) 推荐(0)
摘要: 1.创建Nginx用户和组 groupadd nginx useradd nginx -g nginx -s /sbin/nologin -M 2.安装依赖 yum install pcre pcre-devel openssl openssl-devel yum install zlib zlib 阅读全文
posted @ 2025-04-21 17:41 杜子烟 阅读(162) 评论(0) 推荐(0)
摘要: 一、optimize table会重组表和索引数据,磁盘空间被回收: 1、创建临时表:与原表结构相同;2、复制数据:将原表数据复制到临时表中;3、优化数表:复制时,MySQL会重新整理和重组数据,去除碎片,提高数据连续性;4、重命名表:将临时表重命名为原表。 optimize table your_ 阅读全文
posted @ 2024-09-14 16:57 杜子烟 阅读(947) 评论(0) 推荐(0)
摘要: 引入包 <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.31</version> </dependency> import cn.hutool.core.map.Ma 阅读全文
posted @ 2024-08-26 11:09 杜子烟 阅读(375) 评论(0) 推荐(0)
摘要: 需要安装 nuget 包 Microsoft.Extensions.Configuration 、Microsoft.Extensions.Configuration.FileExtensions 、Microsoft.Extensions.Configuration.Json、NLog using 阅读全文
posted @ 2024-07-05 18:25 杜子烟 阅读(129) 评论(0) 推荐(0)
摘要: 安装全局工具: # 安装全局工具 dotnet tool install --global Microsoft.Playwright.CLI # 创建项目 dotnet new console -n Console1 cd Console1 # 安装依赖 dotnet add package Mic 阅读全文
posted @ 2024-07-04 15:44 杜子烟 阅读(895) 评论(0) 推荐(1)
摘要: MYSQL SELECT table_name, table_rows FROM information_schema.tables WHERE table_schema = 'your_database_name' ORDER BY table_rows DESC; Oracle SELECT t 阅读全文
posted @ 2024-06-13 17:41 杜子烟 阅读(392) 评论(0) 推荐(0)
摘要: C#使用RSA加密解密 /// <summary> /// RSA加密解密 /// </summary> public class RSAHelper { /// <summary> /// 生成公钥和私钥 /// </summary> /// <param name="keySize">密钥大小 阅读全文
posted @ 2024-06-05 11:20 杜子烟 阅读(187) 评论(0) 推荐(0)
摘要: 1.DataX3.0开源版本,rdbms里面默认是达梦7的驱动,因此,如果像链接达梦8需要替换驱动。需要将达梦8的驱动放在D:\datax\lib、D:\datax\plugin\reader\rdbmsreader\lib和D:\datax\plugin\reader\rdbmswriter\li 阅读全文
posted @ 2024-05-17 14:19 杜子烟 阅读(1886) 评论(1) 推荐(1)