Loading

上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 创建文件夹 mkdir ssl cd ssl #IP.2 改成自己电脑的IP地址或服务器IP vi ext.ext keyUsage = nonRepudiation, digitalSignature, keyEncipherment extendedKeyUsage = serverAuth, 阅读全文
posted @ 2023-05-10 11:41 亚里士多智 阅读(213) 评论(0) 推荐(0) 编辑
摘要: celery僵死导致jumpserver提示连接WebSocket失败 Celery的任务监控位于堡垒机 ”作业中心“下的”任务监控“ 中,点击打开新的页面如下图所示 刷新页面这里的status状态一会Online,一会又会Offline,如果尝试推送系统用户,那么遇到的页面的就是满屏幕的省略号 主 阅读全文
posted @ 2023-02-09 17:57 亚里士多智 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 3.4.0之后版本 查看kafka topic列表 #集群需要先执行unset JMX_PORT kafka-topics.sh --bootstrap-server 127.0.0.1:9092 --list 查看topic详情 kafka-topics.sh --bootstrap-server 阅读全文
posted @ 2023-02-08 11:18 亚里士多智 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 原因 原因是Mac os Ventura升级了ssh到9.0,ssl到3.3.6,而服务器上的sshd还是老版本;服务器上的老版本ssh和ssl无法和mac上的新版本ssh和ssl交互,新版本ssh加密算法有更改;需要在mac上添加一些兼容老版本的参数。 ~ ssh -V OpenSSH_9.0p1 阅读全文
posted @ 2022-11-23 16:09 亚里士多智 阅读(1294) 评论(0) 推荐(0) 编辑
摘要: kubectl get pods --all-namespaces -o jsonpath="{..image}" | tr -s '[[:space:]]' ' ' | sort | uniq -c 阅读全文
posted @ 2022-09-23 16:08 亚里士多智 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 本文介绍如何通过 ob-operator 来部署 OceanBase 数据库。 背景信息 ob-operator 与其他 operator 一样,旨在让 OceanBase 以容器的方式,无缝运行在 Kubernetes 集群上。 ob-operator 现已支持 OceanBase 集群的创建、删 阅读全文
posted @ 2022-08-19 16:18 亚里士多智 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 压缩 ll drwxrwxrwx 4 postgres postgres 20480 Oct 10 14:54 gitee-repo #分段压缩 tar czf - gitee-repo/ | split -db 200m - yum-repo- #效果 ll -h total 824M drwxr 阅读全文
posted @ 2022-08-01 17:37 亚里士多智 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 忽略某些库 MySQL通过以下两个参数来控制某些库是否写入binlog。 --binlog-do-db=db_name --binlog-ignore-db=db_name --binlog-do-db 指定的库名,其内部表数据修改都会写入binlog。 --binlog-ignore-db 指定的 阅读全文
posted @ 2022-07-22 11:51 亚里士多智 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 创建步骤 1.创建分区 2.创建PV 3.创建VG 4.创建LV 5.格式化及挂载 创建分区 使用分区工具(如fdisk等)创建LVM分区。 创建PV $ pvcreate /dev/sdb5 #将每个分区转换成PV Physical volume "/dev/sdb5" successfully 阅读全文
posted @ 2022-06-13 17:02 亚里士多智 阅读(110) 评论(0) 推荐(0) 编辑
摘要: #查看是否支持扩容 $ kubectl get sc ** -o yaml ··· allowVolumeExpansion: true #拥有该字段表示允许动态扩容 ··· #找到需要扩容的pvc $ kubectl get pvc NAME STATUS VOLUME CAPACITY ACCE 阅读全文
posted @ 2022-06-01 18:19 亚里士多智 阅读(299) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页