会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
kerwin
博客园
首页
新随笔
联系
管理
上一页
1
2
3
4
5
6
7
8
9
···
14
下一页
2022年11月13日
Ubuntu 20.04 安装部署 MySQL 8.0
摘要: 1. 规划 官网:MySQL 社区官网,下载包需要创建oracle账户,本地使用的是Linux 通用的二进制包mysql-8.0.31-linux-glibc2.12-x86_64.tar md5:89e902edeb75216c366e878f3c9e85be hostname IP addres
阅读全文
posted @ 2022-11-13 21:50 kerwin-
阅读(382)
评论(0)
推荐(0)
2022年11月10日
问题记录-calico报错
摘要: 报错内容: Unhealthy 80s (x5315 over 2d4h) kubelet (combined from similar events): Readiness probe failed: 2022-11-10 13:23:27.611 [INFO][155224] confd/hea
阅读全文
posted @ 2022-11-10 22:40 kerwin-
阅读(497)
评论(0)
推荐(0)
2022年11月9日
StorageClass(nfs方式)使用
摘要: 前言:本地使用nfs服务作为挂载 动态挂载文档:https://kubernetes.io/zh-cn/docs/concepts/storage/storage-classes/#nfs GitHub:https://github.com/kubernetes-sigs/nfs-subdir-ex
阅读全文
posted @ 2022-11-09 22:32 kerwin-
阅读(595)
评论(0)
推荐(0)
2022年11月8日
rancher控制k8s
摘要: 前言:rancher主要可以管理和创建k8s集群并在rancher上面做操作,类似于k8s自带的控制面板能够监控集群但是功能有比面板多,详细专业的解释请看官网。🙈🙉🙊 官网:https://www.rancher.cn/、GitHub:https://github.com/rancher/ra
阅读全文
posted @ 2022-11-08 17:45 kerwin-
阅读(280)
评论(0)
推荐(0)
harbor双主方案
摘要: 前言:部署方式:本地部署,采用高可用去访问harbor 两台机器离线部署harbor 两台机器部署keepalived harbor仓库配置镜像同步操作 上传镜像,测试三个地址(node01、node02、vip) 项目地址:https://github.com/goharbor/harbor、官网
阅读全文
posted @ 2022-11-08 14:55 kerwin-
阅读(400)
评论(0)
推荐(0)
2022年11月7日
k9s部署实践
摘要: GitHub:https://github.com/derailed/k9s 官网:https://k9scli.io/ 各系统安装:https://snapcraft.io/k9s(环境有坑,需要进一步排查) 兼容列表:https://github.com/derailed/k9s/tree/v0
阅读全文
posted @ 2022-11-07 16:37 kerwin-
阅读(791)
评论(0)
推荐(0)
2022年10月30日
二进制安装Kubernetes v1.25.0
摘要: 部署步骤: 先部署一个master + 两个node节点集群 在加入两个master进来 加入负载均衡 1. 部署规划表 hostname IP Software Version k8s-master01 192.168.80.61 kube-apiserver、kube-controller-ma
阅读全文
posted @ 2022-10-30 00:05 kerwin-
阅读(629)
评论(0)
推荐(0)
2022年9月9日
单台机器连接k8s
摘要: 背景概述 需要再其他机器连接上k8s集群进行访问 具体操作 kubectl下载地址:https://kubernetes.io/zh-cn/docs/tasks/tools/install-kubectl-linux/ curl -LO "https://dl.k8s.io/release/$(cu
阅读全文
posted @ 2022-09-09 11:47 kerwin-
阅读(199)
评论(0)
推荐(0)
2022年8月28日
ecs离线方式安装ansilbe的rpm包
摘要: 1. 安装包下载 文章背景:因为ecs机器没有连接外网,同时需要安装ansilbe,这时就需要从其他机器将包下载到本地。 系统:Alibaba Cloud Linux 2.1903 LTS 64位 软件包名 版本 大小 ansible 2.9.27-1.el7 17 M python-paramik
阅读全文
posted @ 2022-08-28 18:36 kerwin-
阅读(209)
评论(0)
推荐(0)
2022年8月26日
大文件切割成小文件
摘要: 命令: # 切包那两个"-"不要漏了,那是tar的ouput和split的input的参数。 tar zcf - file | split -b 2G - file.* # 合并文件 cat file.* >> file.tar.gz
阅读全文
posted @ 2022-08-26 11:12 kerwin-
阅读(123)
评论(0)
推荐(0)
2022年8月24日
离线升级openssh
摘要: 1. 相关地址 openssh下载地址:http://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/ openssl下载地址:https://www.openssl.org/source/ zlib下载地址:http://www.zlib.net/ 2.
阅读全文
posted @ 2022-08-24 10:26 kerwin-
阅读(1273)
评论(0)
推荐(0)
2022年8月18日
离线安装Ansible
摘要: 背景:当我们Linux机器的环境没办法链接外网时可以使用离线安装的方式进行。 前提:python环境 一、离线包安装 setuptools模块安装 https://pypi.python.org/packages/source/s/setuptools/setuptools-7.0.tar.gz t
阅读全文
posted @ 2022-08-18 19:43 kerwin-
阅读(1622)
评论(0)
推荐(0)
2022年7月27日
gitlab配置gitlab-ci
摘要: gitlab部署 # 1.下载镜像 docker pull gitlab/gitlab-ee:14.2.1-ee.0 # 2.创建挂载目录 mkdir -p /home/gitlab/config /home/gitlab/logs /home/gitlab/data # 3.启动 docker r
阅读全文
posted @ 2022-07-27 00:18 kerwin-
阅读(390)
评论(0)
推荐(0)
2022年7月14日
inoutfy与rsync进行实时同步
摘要: 更新阿里epel源 curl -o /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo 扩展源信息 yum makecache --更新yum源信息 安装inoutfy-tools yum install -y
阅读全文
posted @ 2022-07-14 13:57 kerwin-
阅读(110)
评论(0)
推荐(0)
2022年7月13日
mac安装brew
摘要: brew官网:https://brew.sh 具体操作: # 先安装git https://sourceforge.net/projects/git-osx-installer/files/latest/download # 安装brew ##官网 /bin/bash -c "$(curl -fsS
阅读全文
posted @ 2022-07-13 15:18 kerwin-
阅读(87)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
···
14
下一页
公告