摘要:
Console [Unit] Description=Long running service/daemon created from .NET worker template [Service] # will set the Current Working Directory (CWD). Wor 阅读全文
摘要:
先安装dotnet sdk 然后把nuget包下载好 “1”为文件夹名称 dotnet tool install --global dotnet-counters --version 3.1.141901 --add-source "1" 阅读全文
摘要:
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. 阅读全文
摘要:
下载字节版minio 配置成服务: https://github.com/minio/minio-service mv minio /usr/local/bin/ cat <<EOT >> /etc/default/minio # Volume to be used for MinIO server 阅读全文
摘要:
#显示硬盘 lsblk -l fdisk -lu #格式化硬盘 fdisk /dev/sda #GPT g #保存 w #显示硬盘 lsblk -l #格式化硬盘 mkfs -t ext4 /dev/sda1 # 另外一种文件系统 mkfs -t xfs /dev/sda1 # xfs 日志放在其他 阅读全文
摘要:
参考:https://www.cnblogs.com/yunh/p/3172716.html /// <summary> /// 权重轮询算法 /// </summary> public static class WeightedRoundRobin { private static readonl 阅读全文
摘要:
/etc/docker/daemon.json { "registry-mirrors": ["http://hub-mirror.c.163.com"], "data-root": "/home/dockerHome", "log-driver": "json-file", "log-opts": 阅读全文
摘要:
@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 阅读全文
摘要:
本文章内容来自于:https://docs.microsoft.com/en-us/dotnet/core/diagnostics/metrics-collection OpenTelemetry /təˈlemətri/ 是CNCF(Cloud Native Computing Foundatio 阅读全文
摘要:
以安装dotnet-counters为例: 使用 https://www.nuget.org/packages/dotnet-counters/找到合适版本 复制 dotnet tool install --global dotnet-counters --version 6.0.327302 命令 阅读全文