摘要:
####添加磁盘并使用命令查看 名词解释 **物理存储介质:**系统的物理存储设备,也就是常说的磁盘/硬盘,在linux系统中查看标识如:/dev/sda、/dev/hda等。 **物理卷(Physical Volume,PV):**是具体的硬盘分区,在linux系统中查看标识如:/dev/sda1 阅读全文
摘要:
一、deploy方式安装 参考网址 1.查看对应的版本支持:网址 2.下载对应的deploy.yaml文件。网址 3.修改镜像为阿里云(共3处。2、3一致) image: registry.cn-hangzhou.aliyuncs.com/google_containers/nginx-ingres 阅读全文
摘要:
参考网址 #1.官网下载对应的文件并解压 tar -xf mysql-server_8.0.31-1ubuntu20.04_amd64.deb-bundle.tar #2.下载所需的依赖 wget http://archive.ubuntu.com/ubuntu/pool/main/m/mecab/ 阅读全文
摘要:
glibc版本安装参考 #1.查看glibc版本 ldd --version #2.上传后解压,并移动至安装位置 tar xf mysql-8.0.31-linux-glibc2.12-i686.tar.xz #3.在mysql8下新建mkdir sock log tmp data my.cnf文件 阅读全文
摘要:
1.查询是否有残留软件 [root@kht118 kht]# rpm -aq|grep mysql [root@kht118 kht]# rpm -aq|grep mariadb mariadb-libs-5.5.65-1.el7.x86_64 [root@kht118 kht]# yum remo 阅读全文
摘要:
一、检查是否开启SSH服务 因为Ubuntu默认是不安装SSH服务的,所以在安装之前可以查看目前系统是否安装,通过以下命令: ps -e |grep ssh 输出的结果ssh-agent表示ssh-client启动,sshd表示ssh-server启动。我们是需要安装服务端所以应该看是否有sshd, 阅读全文
摘要:
1.默认情况下k8s 一个node最多起110个pod。 2.在node上设置打开文件/var/lib/kubelet/config.yaml 3.修改参数maxPods为指定的值。 4.node端重启kubelet: systemctl restart kubelet 5.查看kht125节点上支 阅读全文
摘要:
官网参考 ###1.使用KubeKey创建集群(master节点) #下载KubeKey export KKZONE=cn curl -sfL https://get-kk.kubesphere.io | VERSION=v2.2.1 sh - chmod +x kk #查看kk支持的k8s版本 . 阅读全文
摘要:
参考官网 ###1.安装 #准备KubeKey export KKZONE=cn curl -sfL https://get-kk.kubesphere.io | VERSION=v2.2.1 sh - chmod +x kk #使用KubeKey引导安装集群 #可能需要下面命令 yum insta 阅读全文
摘要:
[官网参考](https://kubesphere.com.cn/docs/v3.3/installing-on-kubernetes/introduction/overview/) ###1.安装Docker ```powershell sudo yum remove docker* sudo y 阅读全文