摘要: 一、问题1 1.k8s集群拉起的kafka集群可以正常启动,使用命令发送消息,消费消息都正常 /opt/kafka/bin/kafka-console-producer.sh --topic pero-test --bootstrap-server localhost:9092 /opt/kafka 阅读全文
posted @ 2023-10-17 15:37 wdgde 阅读(76) 评论(0) 推荐(0)
摘要: 以下方法alertmanager,prometheus,node-exporter都适用 1.加密密码 yum install -y httpd-tools #生成加密密码 htpasswd -nBC 12 '' | tr -d ':\n' New password: # 这里输入密码 Re-typ 阅读全文
posted @ 2023-09-08 20:39 wdgde 阅读(1201) 评论(0) 推荐(0)
摘要: 1.原代码 public void execCommand(String command){ List<String> inputStreamList=new LinkedList<>(); List<String> errorStreamList=new LinkedList<>(); try { 阅读全文
posted @ 2023-08-31 10:01 wdgde 阅读(1144) 评论(0) 推荐(0)
摘要: 1.github https://github.com/digitalocean/ceph_exporter 2.dockerfile FROM golang:1.17ENV GO111MODULE=on \ GOPROXY="https://goproxy.cn,direct"COPY ceph_ 阅读全文
posted @ 2023-08-17 17:28 wdgde 阅读(136) 评论(0) 推荐(0)
摘要: 1.引入依赖 <dependency> <groupId>io.kubernetes</groupId> <artifactId>client-java</artifactId> <version>15.0.1</version> </dependency> 2.代码实现 @Service publ 阅读全文
posted @ 2023-07-19 18:34 wdgde 阅读(1808) 评论(0) 推荐(0)
摘要: 先阅读以下链接 https://iswbm.com/192.html 1.python有一个ansible-api的包,可以提供restful api接口,通过如下命令可以查询 pip search ansible-api#注意pip search可能在某些版本不能使用了,需要安装新的命令#pip 阅读全文
posted @ 2023-07-19 18:11 wdgde 阅读(569) 评论(0) 推荐(0)
摘要: 一.在线安装 1.安装依赖的第三方的epel源 yum install epel-release -y 安装第三方的epel源后可能会有如下报错 [root@localhost ansible]# yum list | grep ansible One of the configured repos 阅读全文
posted @ 2023-07-18 16:42 wdgde 阅读(67) 评论(0) 推荐(0)
摘要: 1.引入依赖 <!--postgresql--> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>42.2.2</version> </dependency> 2. 阅读全文
posted @ 2023-07-13 17:08 wdgde 阅读(101) 评论(0) 推荐(0)
摘要: 1.在使用powerjob的时候,启动项目有报netty相关ClassNotFoundException的问题 <dependency> <groupId>tech.powerjob</groupId> <artifactId>powerjob-client</artifactId> <versio 阅读全文
posted @ 2023-07-06 19:10 wdgde 阅读(464) 评论(0) 推荐(0)
摘要: 1.背景 springboot项目,引入nacos做配置中心,pom.yaml导入依赖 <dependency> <groupId>com.alibaba.boot</groupId> <artifactId>nacos-config-spring-boot-starter</artifactId> 阅读全文
posted @ 2023-07-06 19:00 wdgde 阅读(1479) 评论(0) 推荐(0)