K8s搭建redis集群
上文讲了使用裸机搭建redis集群,本文讲如何使用K8s搭建redis集群 环境 跟上文一样,redis至少需要3个主节点,所以我们使用三台机器各有三个主节点pod和三个从节点pod,主节点pod端口为6379,从节点pod端口号为6380。先创建三个主节点 创建命名空间kubectl create namespace redis redis-co…
2021-6-21 19:25
|
351
|
|
1514 字
|
22 分钟
裸机redis集群安装
环境准备 Redis集群安装需要至少三台机器,由于每台机器至少需要一个从节点,所以至少需要6台机器,为了保证其中某一台机器宕机时,不会造成数据的丢失。我这里机器个数有限,我只使用3台机器,每台机器部署一个主节点和一个从节点。 CentOS7 三台(k8s-master01:192.168.0.10 k8s-node02:192.168.0.20 k…
2021-6-18 18:50
|
385
|
|
538 字
|
7 分钟
grafana容器修改配置
今天使用kube-prometheus为k8s系统建立监控系统,创建完成后使用别人已有的表盘,感觉还不错,但是只能5s自动刷新让我这个强迫症很难受,用网上的方法修改设置栏发现最小就只能是5s,想再小就只能去修改容器内部的配置文件,可去修改发现又有一个问题:配置文件是一个只读文件无法修改。在网上翻来覆去终于看到一个解决方案,记录一下(事后觉得修改这个…
2021-6-15 14:19
|
638
|
|
424 字
|
3 分钟
Spark的JVM相关错误
HeapOutOfMemory 代码: package spark.jvm; import java.util.ArrayList; import java.util.List; class Person{ } public class HeapOutOfMemory { public static void main(String[] a…
2021-6-08 16:26
|
312
|
|
128 字
|
5 分钟
找不到docker.socket解决方法
错误信息 Failed to restart docker.service: Unit docker.socket failed to load: No such file or directory 解决方法 vim /lib/systemd/system/docker.socket [Unit] Description=Docker So…
2021-5-29 12:48
|
413
|
|
68 字
|
2 分钟
解决redis requires ruby version 2.3.0
安装curl yum install curl 安装RVM curl -L get.rvm.io | bash -s stable <em id="__mceDel">Downloading https://github.com/rvm/rvm/releases/download/1.29.8/1.29.8.tar.gz.asc gpg: S…
2021-5-25 11:13
|
448
|
|
113 字
|
2 分钟
Harbor仓库登录 connect: connection refused
原因 Docker自从1.3.X之后docker registry交互默认使用的是HTTPS,但是搭建私有镜像默认使用的是HTTP服务,所以与私有镜像交时出现以上错误。 解决方法 vim /etc/docker/daemon.json添加 "insecure-registries":["192.168.0.40"] systemctl da…
2021-5-20 17:55
|
380
|
|
69 字
|
1 分钟内
镜像仓库Harbor搭建
1.关闭防火墙 setenforce 0 systemctl stop firewalld systemctl disable firewalld 2.设置yum源和安装docker cd /etc/yum.repos.d/ wget http://mirrors.aliyun.com/repo/Centos-7.repo wget http://…
2021-5-20 17:51
|
455
|
|
305 字
|
12 分钟
k8s加入、删除节点
加入节点 kubeadm token create --print-join-command 删除节点 kubectl get node kubectl delete nodes k8s-node02 kubectl delete nodes k8s-node03 在被删除的node节点中清空集群数据信息 kubeadm reset
2021-5-20 17:40
|
344
|
|
34 字
|
1 分钟内
spark-sql Table ‘hive.PARTITIONS’ doesn’t exist问题
1.问题描述 Table 'hive.PARTITIONS' doesn't exist 19/08/21 10:56:15 ERROR ConnectionHandle: Database access problem. Killing off this connection and all remaining connections in th…
2021-4-19 22:25
|
435
|
|
39 字
|
1 分钟内