1 2 3 4 5 ··· 13 下一页
摘要: 官网地址:https://clickhouse.com/docs/zh/install/redhat 本次部署版本是25.7.8.71,github下载地址https://github.com/ClickHouse/ClickHouse/releases 一、单机版 采用tgz方式部署 cd /op 阅读全文
posted @ 2025-10-19 20:16 苦逼yw 阅读(86) 评论(0) 推荐(0)
摘要: 1、需求:testinfo.org域名下的所有子域名都转发到pgs-gateway的service。试了以下配置, - host: "*.testinfo.org" 不生效 apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name: 阅读全文
posted @ 2025-09-13 02:12 苦逼yw 阅读(8) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/ashic/article/details/104722975 参考:https://blog.csdn.net/nmsoftklb/article/details/149118188 canal的github地址:https://github.co 阅读全文
posted @ 2025-09-09 10:40 苦逼yw 阅读(14) 评论(0) 推荐(0)
摘要: 简单来说,重定向是告诉客户端“你要的资源在另一个地方,请去那里找”,而重写是服务器内部“悄悄地”把请求换个样子来处理,客户端对此一无所知。 下面我们详细解释并举例说明。 核心区别 特性重定向 (Redirect)重写 (Rewrite) 本质 客户端行为 服务器内部行为 HTTP响应 返回 3xx  阅读全文
posted @ 2025-09-02 14:08 苦逼yw 阅读(218) 评论(0) 推荐(0)
摘要: import json import requests import threading #多线程import osimport sysimport reimport time import pymysql import logging import pandas as pd import sign 阅读全文
posted @ 2025-08-22 00:54 苦逼yw 阅读(7) 评论(0) 推荐(0)
摘要: 1、创建指标采集脚本,该脚本结合crontab的* * * * *表示每15s运行一次 mkdir /opt/custom_metrics/ vim /opt/custom_metrics/disk_usage_monitor.sh #!/bin/bash # /opt/custom_metrics 阅读全文
posted @ 2025-08-17 01:35 苦逼yw 阅读(40) 评论(0) 推荐(0)
摘要: deepseek解释 1、cpu使用率 promql表达式:100 - (avg(irate(node_cpu_seconds_total{mode="idle"}[5m])) by(instance) * 100) 可以拆解为: node_cpu_seconds_total{mode="idle" 阅读全文
posted @ 2025-08-17 01:20 苦逼yw 阅读(148) 评论(0) 推荐(0)
摘要: 1、部署 MySQL(若无可先部署) 注意storageClassName名字 vim nacos-mysql.yaml apiVersion: apps/v1 kind: StatefulSet metadata: name: nacos-mysql namespace: nacos spec: 阅读全文
posted @ 2025-06-06 12:11 苦逼yw 阅读(324) 评论(0) 推荐(0)
摘要: Derby + PVC 方案 + 鉴权配置 1、创建configmap存储nacos配置 vim nacos-auth-configmap.yaml apiVersion: v1 kind: ConfigMap metadata: name: nacos-auth-config namespace: 阅读全文
posted @ 2025-06-05 15:26 苦逼yw 阅读(145) 评论(0) 推荐(0)
摘要: 1、创建configmap存储redis配置 vim redis-configmap.yaml apiVersion: v1 kind: ConfigMap metadata: name: redis-cluster-config data: redis.conf: | cluster-enable 阅读全文
posted @ 2025-06-04 10:41 苦逼yw 阅读(89) 评论(0) 推荐(0)
1 2 3 4 5 ··· 13 下一页