1 2 3 4 5 ··· 13 下一页
  2026年6月13日
摘要: 1、检查磁盘设备 fdisk -l 2、创建GPT分区 parted /dev/vdb # 磁盘上创建一个新的 GPT(GUID 分区表)分区表标签 mklabel gpt #创建一个名为 primary 的新分区,从磁盘的 0% 位置(起始)延伸到 100% 位置(末尾) mkpart prima 阅读全文
posted @ 2026-06-13 15:49 MhaiM 阅读(5) 评论(0) 推荐(0)
  2026年6月10日
摘要: #安装higress省略 1、添加模型服务商 2、添加消费者令牌 3、添加AI模型路由接口 4、请求验证 curl -sv http:// <higress-gateway-ip>/v1/chat/completions \ -X POST \ -H 'Content-Type: applicati 阅读全文
posted @ 2026-06-10 15:31 MhaiM 阅读(5) 评论(0) 推荐(0)
  2025年12月9日
摘要: 现象:使用nerdctl 工具删除容器报如下错误 1、借用自带的ctr工具查看容器 ctr -n k8s.io container list 查看任务 ctr -n k8s.io tasks list 2、删除容器 先kill任务 kill -9 $(ctr -n k8s.io tasks list 阅读全文
posted @ 2025-12-09 10:25 MhaiM 阅读(17) 评论(0) 推荐(0)
  2025年10月22日
摘要: 背景:在特殊情况,会出现删除不掉资源的情况 1、导出json 文件资源 kubectl get namespace arms-prom -o json > temp.json 2、去掉finalizers 3、开启代理到api服务 kubectl proxy --port=8080 4、调用api 阅读全文
posted @ 2025-10-22 15:15 MhaiM 阅读(16) 评论(0) 推荐(0)
  2025年10月14日
摘要: 1、安装jdk yum install java-11-openjdk-devel -y 2、安装包下载地址并解压 https://dist.apache.org/repos/dist/release/rocketmq/5.3.3/rocketmq-all-5.3.3-bin-release.zip 阅读全文
posted @ 2025-10-14 11:45 MhaiM 阅读(75) 评论(0) 推荐(0)
  2024年12月14日
摘要: #下载ApacheMavenwget https://dlcdn.apache.org/maven/maven-3/3.9.6/binaries/apache-maven-3.9.6-bin.tar.gztar -xvf apache-maven-3.9.6-bin.tar.gzmv apache- 阅读全文
posted @ 2024-12-14 10:51 MhaiM 阅读(264) 评论(0) 推荐(0)
  2024年8月15日
摘要: 1、下载,安装 https://github.com/jesseduffield/lazydocker/releases/download/v0.2.4/lazydocker_0.2.4_Linux_x86_64.tar.gzmkdir -p ~/root/lazydockermv lazydock 阅读全文
posted @ 2024-08-15 09:39 MhaiM 阅读(443) 评论(0) 推荐(0)
  2024年8月13日
摘要: 1、创建配置文件 mkdir -p /usr/lib/systemd/system/docker.service.d/ vim /usr/lib/systemd/system/docker.service.d/proxy.conf [Service]Environment="HTTP_PROXY=h 阅读全文
posted @ 2024-08-13 16:17 MhaiM 阅读(72) 评论(0) 推荐(0)
  2024年8月9日
摘要: 1、先安装prometheus-operator和Ollama大模型服务【这里忽略】 2、安装k8sgpt-operator helm repo add k8sgpt https://charts.k8sgpt.ai/helm repo updatehelm install release k8sg 阅读全文
posted @ 2024-08-09 17:28 MhaiM 阅读(428) 评论(0) 推荐(0)
  2024年8月1日
摘要: 1、创建kubectl目录 mkdir -p /home/meta/bin 2、拷贝 kubectl 文件到/home/meta/bin 下 3、配置/etc/profile echo "export PATH="$PATH:/home/meta/bin"" >> /etc/profile 4、测试 阅读全文
posted @ 2024-08-01 11:13 MhaiM 阅读(239) 评论(0) 推荐(0)
1 2 3 4 5 ··· 13 下一页