扰扰博客

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 34 下一页
摘要: 一、单机模式 version: '3.1' services: zoo1: image: zookeeper:latest restart: always ports: - 2181:2181 二、集群模式 version: '3.1' services: zoo1: image: zookeepe 阅读全文
posted @ 2021-11-19 22:48 扰扰 阅读(785) 评论(0) 推荐(0)
摘要: Pod、Pod控制器、Services、存储 阅读全文
posted @ 2021-11-02 11:17 扰扰 阅读(100) 评论(0) 推荐(0)
摘要: 1、引入maven包 <dependencies> <dependency> <groupId>com.101tec</groupId> <artifactId>zkclient</artifactId> <version>0.10</version> </dependency> </depende 阅读全文
posted @ 2021-10-25 15:14 扰扰 阅读(65) 评论(0) 推荐(0)
摘要: 一、基础环境配置 1、检查操作系统版本 # 此方式要求k8s集群要求在centos7.5版本或者以上版本 [root@k8s-master /]# cat /etc/redhat-releaseCentOS Linux release 7.9.2009 (Core) 2、主机名解析 为了方便后面集群 阅读全文
posted @ 2021-09-17 15:51 扰扰 阅读(1249) 评论(0) 推荐(0)
摘要: 烧录固件工具 ESP FLASH DOWNLOAD TOOL 第一步,安装Python环境。这里要注意一下,Python环境分2和3两种,esptool.py是需要在Python2环境下运行的,在Python3环境下会报错。我安装的是Python27,下载地址 安装完成后会提示是否添加环境变量,选择 阅读全文
posted @ 2021-08-26 23:15 扰扰 阅读(618) 评论(0) 推荐(0)
摘要: 1、结构设计 1.1、 逻辑结构设计 Activiti使用到的表都是ACT_开头的。 ACT_RE_*: ’RE’表示repository(存储),RepositoryService接口所操作的表。带此前缀的表包含的是静态信息,如,流程定义,流程的资源(图片,规则等)。 ACT_RU_*: ‘RU’ 阅读全文
posted @ 2021-08-13 20:35 扰扰 阅读(388) 评论(0) 推荐(0)
摘要: 佛学按照语言分为三大系,即汉语系、藏语系、巴利语系。中国佛教按古印度传入途径的位置分为北传佛教,南传佛教。北传佛教细分为藏传佛教,汉传佛教。 因着周末心旅的契机,我尝试通过网络资料搜索、摘录归纳出中国佛教的发展历史和源流。中国佛教的历史粗略可分为古印度佛教传入中国前和传入中国后这两大阶段。 传入中国 阅读全文
posted @ 2021-08-13 19:55 扰扰 阅读(1799) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/python-cat/p/13524093.html https://blog.csdn.net/tushanpeipei/article/details/118395393 https://www.ywcsb.vip/blog/94.html 阅读全文
posted @ 2021-08-07 17:27 扰扰 阅读(51) 评论(0) 推荐(0)
摘要: 一、安装python3.7 1、下载源码包 # 切换到root目录 [root@localhost ~] cd /root/ # 安装wget [root@localhost ~] yum -y install wget # 使用wget下载到目录 [root@localhost ~] wget h 阅读全文
posted @ 2021-07-24 16:19 扰扰 阅读(1303) 评论(0) 推荐(0)
摘要: 一、cpu占用过高分析 1、通过ps命令查询cpu占用过高的进程pid top -c 2、通过top -H -p <PID>命令查看具体的线程id,记住占用高的线程TID top -H -p <PID> 3、导出堆栈日志文件 jstack -l <pid> >> jstackLog.out 4、线程 阅读全文
posted @ 2021-07-24 14:11 扰扰 阅读(183) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 34 下一页