上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页
摘要: 一、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 凡人半睁眼 阅读(1248) 评论(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 凡人半睁眼 阅读(314) 评论(0) 推荐(0) 编辑
摘要: 1、容器运行时,传统意义上来说就是代表容器从拉取镜像到启动运行再到中止的整个生命周期 2、OCI标准: Docker 公司与 CoreOS 和 Google 共同创建了 OCI (Open Container Initial),并提供了两种规范: 运行时规范(https://github.com/o 阅读全文
posted @ 2020-03-22 11:31 凡人半睁眼 阅读(1997) 评论(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 凡人半睁眼 阅读(461) 评论(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 凡人半睁眼 阅读(809) 评论(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 凡人半睁眼 阅读(592) 评论(0) 推荐(0) 编辑
摘要: 一、介绍两种日志 1、redo log是InnoDB存储引擎层的日志,又称重做日志文件,用于记录事务操作的变化,记录的是数据修改之后的值,不管事务是否提交都会记录下来。在实例和介质失败(media failure)时,redo log文件就能派上用场,如数据库掉电,InnoDB存储引擎会使用redo 阅读全文
posted @ 2020-03-04 10:19 凡人半睁眼 阅读(227) 评论(0) 推荐(0) 编辑
摘要: https://blog.51cto.com/egon09/1845226 阅读全文
posted @ 2020-02-05 10:02 凡人半睁眼 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 一、redis简介 1、Redis,全称是远程数据服务(Remote Dictionary Server) 它作为一款由 C 语言编写的内存高速缓存数据库,在互联网产品中应用甚广。很多云服务提供商还以 Redis 为基础构建了相应的缓存服务、消息队列服务以及内存存储服务,当你使用这些服务时,实际上就 阅读全文
posted @ 2020-01-11 22:11 凡人半睁眼 阅读(612) 评论(0) 推荐(0) 编辑
摘要: 1、批量打包镜像 docker save $(docker images | grep -v REPOSITORY | awk 'BEGIN{OFS=":";ORS="\n"}{print $1,$2}') -o k8s-master.tar 除了awk常用于拼接镜像名和版本号,更快地方法 dock 阅读全文
posted @ 2020-01-09 17:22 凡人半睁眼 阅读(592) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 34 下一页