03 2020 档案

摘要:一、下载v2.0.0-rc4版本 # wget https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-rc4/aio/deploy/recommended.yaml 二、cat 改过的 recommended.yaml文件如下 # 阅读全文
posted @ 2020-03-28 17:12 凡人半睁眼 阅读(773) 评论(0) 推荐(0) 编辑
摘要:一、Kubernetes集群部署方式 1、https://mp.weixin.qq.com/s/P90Z_rudmI548aOfD9aRtA 二进制版 Download Kubernetes https://github.com/easzlab/kubeasz 二进制部署工具 2、https://b 阅读全文
posted @ 2020-03-26 10:53 凡人半睁眼 阅读(1258) 评论(0) 推荐(0) 编辑
摘要:一、安装docker最新版 curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun 二、安装cubelet 1、sources.list先配置sources.list源才能继续下面步骤 # vim /etc/apt/sou 阅读全文
posted @ 2020-03-23 16:34 凡人半睁眼 阅读(317) 评论(0) 推荐(0) 编辑
摘要:1、容器运行时,传统意义上来说就是代表容器从拉取镜像到启动运行再到中止的整个生命周期 2、OCI标准: Docker 公司与 CoreOS 和 Google 共同创建了 OCI (Open Container Initial),并提供了两种规范: 运行时规范(https://github.com/o 阅读全文
posted @ 2020-03-22 11:31 凡人半睁眼 阅读(2029) 评论(0) 推荐(0) 编辑
摘要:一、cat EOF的覆盖与追加 1、覆盖 这里有两种格式可以使用 格式一 #!/bin/bash cat << EOF > /root/test.txt Hello! My site is www.361way.com My site is www.91it.org Test for cat and 阅读全文
posted @ 2020-03-10 16:22 凡人半睁眼 阅读(486) 评论(0) 推荐(0) 编辑
摘要:一、容器部署prometheus 1、下载images docker pull prom/node-exporter docker pull google/cadvisor docker pull prom/prometheus docker pull grafana/grafana 2、导入ima 阅读全文
posted @ 2020-03-09 21:14 凡人半睁眼 阅读(858) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/chengyinwu/article/details/103281476 有待整理 kvm集群管理 ovirt 、 proxmox 一、简单介绍 KVM(Kernel-based Virtual Machine)是内核级虚拟化技术 1、kvm和qemu k 阅读全文
posted @ 2020-03-04 11:09 凡人半睁眼 阅读(783) 评论(0) 推荐(0) 编辑
摘要:一、介绍两种日志 1、redo log是InnoDB存储引擎层的日志,又称重做日志文件,用于记录事务操作的变化,记录的是数据修改之后的值,不管事务是否提交都会记录下来。在实例和介质失败(media failure)时,redo log文件就能派上用场,如数据库掉电,InnoDB存储引擎会使用redo 阅读全文
posted @ 2020-03-04 10:19 凡人半睁眼 阅读(239) 评论(0) 推荐(0) 编辑