上一页 1 2 3 4 5 6 7 ··· 12 下一页
摘要: golang 在 Mac , Linux , Windows 下交叉编译 https://blog.csdn.net/weixin_30359021/article/details/101164752 #linux 下运行 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 阅读全文
posted @ 2024-05-10 17:33 zhaoguanhao 阅读(5) 评论(0) 推荐(0) 编辑
摘要: zabbix 安装教程 https://blog.csdn.net/zzzxxx520369/article/details/137771649 阅读全文
posted @ 2024-04-30 18:09 zhaoguanhao 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 慢SQL(增删改查)记录 SELECT TOP 100 (total_elapsed_time / execution_count)/1000 N'平均时间ms' ,total_elapsed_time/1000 N'总花费时间ms' ,total_worker_time/1000 N'所用的CPU 阅读全文
posted @ 2024-04-28 09:43 zhaoguanhao 阅读(6) 评论(0) 推荐(0) 编辑
摘要: golang 1.20.13 定时执行bat shell 脚本 package main import ( "fmt" _ "github.com/CodyGuo/godaemon" "os/exec" "time" ) func main() { // 设置定时任务的时间 t := time.No 阅读全文
posted @ 2024-04-26 13:55 zhaoguanhao 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 定时清理1年前过期log日志数据 select min(createtime),max(createtime) from dbo.Sys_LoggerOperate SELECT count(1) FROM dbo.Sys_LoggerOperate WHERE createtime < DATEA 阅读全文
posted @ 2024-04-25 16:21 zhaoguanhao 阅读(67) 评论(0) 推荐(0) 编辑
摘要: golang 实现文件下载 http://localhost/files package main import ( "fmt" "net/http" ) func main() { // 指定要共享的文件或目录路径 shareDirectory := "G:\\Databackup" // 替换为 阅读全文
posted @ 2024-04-24 19:46 zhaoguanhao 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 编写Shell脚本以备份和还原规则在清空规则之前,可以使用iptables-save命令将当前规则保存到文件中,以备之后的恢复。之后,可以使用iptables-restore命令来还原规则。 保存规则到文件: shelliptables-save > backup.rules 清空所有规则: she 阅读全文
posted @ 2024-04-24 14:57 zhaoguanhao 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: Sql Server 各版本秘钥 2019,2017,2016,2014,2012 R2 SQL Server 2019 Enterprise:HMWJ3-KY3J2-NMVD7-KG4JR-X2G8G Enterprise Core:2C9JR-K3RNG-QD4M4-JQ2HR-8468J St 阅读全文
posted @ 2024-04-24 14:15 zhaoguanhao 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 在Debian系统中配置Docker CE并使用阿里云的镜像源可以通过以下步骤完成: 更新软件包索引: sudo apt-get update 安装必要的软件包以使apt能够通过HTTPS来使用仓库: sudo apt-get install apt-transport-https ca-certi 阅读全文
posted @ 2024-04-22 11:13 zhaoguanhao 阅读(805) 评论(0) 推荐(0) 编辑
摘要: DBCC SHRINKFILE (N'templog', 256); USE lqtestGO -- Truncate the log by changing the database recovery model to SIMPLE.ALTER DATABASE lqtestSET RECOVER 阅读全文
posted @ 2024-04-11 14:48 zhaoguanhao 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页