111111
上一页 1 2 3 4 5 6 7 ··· 17 下一页
摘要: kubeadm是官方社区推出的一个用于快速部署kubernetes集群的工具。 这个工具能通过两条指令完成一个kubernetes集群的部署: # 创建一个 Master 节点$ kubeadm init​# 将一个 Node 节点加入到当前集群中$ kubeadm join <Master节点的I 阅读全文
posted @ 2020-07-20 09:57 赵SIR 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 转换磁盘格式qemu-img convert -f raw -O qcow2 k8s.node1.img k8s.node1.qcow2修改虚拟机配置文件修改磁盘格式,与新qcow2格式的磁盘。virsh edit k8s-node1 <driver name='qemu' type='qcow2' 阅读全文
posted @ 2020-07-20 09:39 赵SIR 阅读(690) 评论(0) 推荐(0) 编辑
摘要: 一. Jennkins概念 二.Jenkins安装环境准备 2台服务器 安装docker-ce 注:如果系统已安装docker此步骤可忽略 1. 安装docker-ce版本 2. 参考文档:https://mirrors.tuna.tsinghua.edu.cn/help/docker-ce/ 3. 阅读全文
posted @ 2020-07-13 22:15 赵SIR 阅读(198) 评论(0) 推荐(0) 编辑
摘要: #! jenkins官网 https://www.jenkins.io/zh/ 英文去掉zh jenkins是java的 所以下载 JDK 和jenkins安装包 ###关于gitlab安装 查看 我以前的文章 https://www.cnblogs.com/zhaobin-diray/p/1322 阅读全文
posted @ 2020-07-06 22:47 赵SIR 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 1、时间同步 #di.time sync /usr/sbin/ntpdate time.apple.com echo '#time sync by oldboy at 2019-3-30' >> /var/spool/cron/root echo '*/5 * * * * /usr/sbin/ntp 阅读全文
posted @ 2020-07-04 21:34 赵SIR 阅读(485) 评论(0) 推荐(0) 编辑
摘要: Linux安装Docker # 安装依赖包 yum install -y yum-utils # 添加Docker软件包源 yum-config-manager \ --add-repo \ https://download.docker.com/linux/centos/docker-ce.rep 阅读全文
posted @ 2020-07-03 14:15 赵SIR 阅读(349) 评论(0) 推荐(0) 编辑
摘要: gitlab安装流程 官网 https://about.gitlab.com/install/#centos-7 安装流程 装之前关闭防火墙 selinux yum install -y curl policycoreutils-python openssh-server curl https:// 阅读全文
posted @ 2020-07-01 21:13 赵SIR 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 一 环境情况: LB 10.240.35.55 web1 10.240.35.56 web2 10.240.35.57 web3 10.240.35.58 二.负载均衡 LB 配置: server{ listen 80; server_name www.ceshi.com; location /{ 阅读全文
posted @ 2020-06-30 22:20 赵SIR 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 一. LNMP组成 二. 下载源码包 wget http://nginx.org/download/nginx-1.17.2.tar.gz wget https://www.php.net/distributions/php-7.3.7.tar.gz wget https://dev.mysql.c 阅读全文
posted @ 2020-06-28 22:15 赵SIR 阅读(202) 评论(0) 推荐(0) 编辑
摘要: server { listen 88; server_name www.ceshi.com; location /www { root /data/; root是当匹配www的时候到/data/www/下找index.html 如果data下没有www目录就会报错 index index.html; 阅读全文
posted @ 2020-06-28 20:49 赵SIR 阅读(298) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 17 下一页