上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页
摘要: 概念 k8s/kubernetes 容器化部署 解决容器编排问题,kubernetes为容器编排软件的佼佼者 kubernets为一组服务器集群 功能 自我修复 一个容器崩溃,另一个容器起来 弹性伸缩 根据需要调整容器数量 服务发现 自动发现的形式找到所需依赖 负载均衡 一起分担流量 版本回退 新版 阅读全文
posted @ 2022-04-10 15:19 supermao12 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 安装docker组件 配置本地源或者自带的网络源2选1 1.切换镜像源 wget https://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo -O /etc/yum.repos.d/docker-ce.repo 2.查看docke 阅读全文
posted @ 2022-04-10 15:06 supermao12 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 环境 VMware1 网卡与 主机ping通 创建文件夹将文件解压进去 删除压缩包 创建虚拟机 下一步下一步,完成虚拟机 编辑虚拟机设置 否 账号密码 admin Admin@storage 等待 导入License 解压5000并上传03 激活 修改时间 旋转虚拟机点那个接口 设置接口有ip 发起 阅读全文
posted @ 2022-04-07 21:30 supermao12 阅读(76) 评论(0) 推荐(0) 编辑
摘要: 1.发布自己的镜像 hub.docker.com 创建账号 docker login -u supermao -p xxxx docker tag ls supermaofox/ls:1.0 先打标签 supermaofox(dockerhub账户) docker push mqy/ls:1.0 2 阅读全文
posted @ 2022-04-07 11:02 supermao12 阅读(115) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2022-04-07 09:46 supermao12 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 当pip升级时报错 python -m pip uninstall pip setuptools pip3 install --upgrade pip c:\users\25671\appdata\local\programs\python\python38\python.exe -m pip in 阅读全文
posted @ 2022-04-03 17:16 supermao12 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 存储虚拟化 raid0 利用率100 没有保护性 但性能最好 raid1 利用率50 有保护 盘数得是偶数 写性能慢 raid3 利用率75 有保护(有奇偶校验盘) 但反复的读写,使磁盘寿命下降 raid5 把效验数据分配到所有盘 raid实验 mdadm -C /dev/md0 -l 0 -n 3 阅读全文
posted @ 2022-03-31 17:35 supermao12 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 实战tomcat镜像 准备镜像文件 编写dockerfile 首先将tomcat和jdk软件包上传 创建tomcat文件夹,将文件传送到tomcat文件夹 创建Dockerfile(不用加-f指定)文件 add自动解压 jdk与apache在云服务器 构建镜像 [root@docker tomcat 阅读全文
posted @ 2022-03-30 22:44 supermao12 阅读(80) 评论(0) 推荐(0) 编辑
摘要: FROM scratch 很多镜像都是从他开始 创建自己的centos FROM centos 基于官方的centos开始写 构建自己的centos [root@docker dockerfile]# cat mydockerfile FROM centos (没有镜像时会拉取) MAINTAINE 阅读全文
posted @ 2022-03-30 22:43 supermao12 阅读(250) 评论(0) 推荐(0) 编辑
摘要: dockerfile是用来构建docker镜像文件!命令参数脚本 构建步骤 1.编写一个dockerfile文件 2.dockerbuild构建成为一个镜像 3.docker run运行镜像 4.docekerpush 发布镜像(dockerhub 阿里云镜像仓库) docker每个指令都是大写字母 阅读全文
posted @ 2022-03-30 22:41 supermao12 阅读(36) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 29 下一页