摘要: docker network create -d bridge frp-net # ip库 wget https://download.db-ip.com/free/dbip-country-lite-2022-02.mmdb.gz gunzip dbip-country-lite-2022-02. 阅读全文
posted @ 2022-06-12 14:31 ChasingDreams 阅读(227) 评论(0) 推荐(0) 编辑
摘要: 下载字节版minio 配置成服务: https://github.com/minio/minio-service mv minio /usr/local/bin/ cat <<EOT >> /etc/default/minio # Volume to be used for MinIO server 阅读全文
posted @ 2022-06-10 16:45 ChasingDreams 阅读(473) 评论(0) 推荐(0) 编辑
摘要: #显示硬盘 lsblk -l fdisk -lu #格式化硬盘 fdisk /dev/sda #GPT g #保存 w #显示硬盘 lsblk -l #格式化硬盘 mkfs -t ext4 /dev/sda1 # 另外一种文件系统 mkfs -t xfs /dev/sda1 # xfs 日志放在其他 阅读全文
posted @ 2022-06-10 13:43 ChasingDreams 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/yunh/p/3172716.html /// <summary> /// 权重轮询算法 /// </summary> public static class WeightedRoundRobin { private static readonl 阅读全文
posted @ 2022-06-06 10:19 ChasingDreams 阅读(104) 评论(0) 推荐(0) 编辑
摘要: /etc/docker/daemon.json { "registry-mirrors": ["http://hub-mirror.c.163.com"], "data-root": "/home/dockerHome", "log-driver": "json-file", "log-opts": 阅读全文
posted @ 2022-06-02 16:21 ChasingDreams 阅读(195) 评论(0) 推荐(0) 编辑
摘要: @echo off for /l %%i in (1,1,2147483647) do ( echo %%i TIMEOUT /T 180 "C:\Users\admin\FastCopy\fastcopy.exe" /filelog /cmd=sync /balloon /no_ui /error 阅读全文
posted @ 2022-06-01 13:52 ChasingDreams 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 本文章内容来自于:https://docs.microsoft.com/en-us/dotnet/core/diagnostics/metrics-collection OpenTelemetry /təˈlemətri/ 是CNCF(Cloud Native Computing Foundatio 阅读全文
posted @ 2022-05-28 21:33 ChasingDreams 阅读(436) 评论(0) 推荐(0) 编辑
摘要: 以安装dotnet-counters为例: 使用 https://www.nuget.org/packages/dotnet-counters/找到合适版本 复制 dotnet tool install --global dotnet-counters --version 6.0.327302 命令 阅读全文
posted @ 2022-05-27 21:37 ChasingDreams 阅读(194) 评论(0) 推荐(0) 编辑
摘要: tasklist | findstr 80 netsh interface portproxy show all netsh interface portproxy delete v4tov4 listenport=80 listenaddress=192.168.253.2 netsh inter 阅读全文
posted @ 2022-04-10 10:23 ChasingDreams 阅读(50) 评论(0) 推荐(0) 编辑
摘要: Get-PhysicalDisk Set-PhysicalDisk -FriendlyName "HDD1" -MediaType HDD Set-PhysicalDisk -FriendlyName "Msft Virtual Disk" -MediaType SSD Set-PhysicalDi 阅读全文
posted @ 2022-04-09 22:54 ChasingDreams 阅读(75) 评论(0) 推荐(0) 编辑