码迷,mamicode.com
首页 >  
搜索关键字:etcd 单机 cluster 学习操作    ( 7854个结果
cluster BASIC
####clusters. options (function() { var hsv2rgb = function(a,b,c) { var d=0,e=0,f=0,g=Math.floor(a*6),h=a*6-g,i=c*(1-b),j=c*(1-h*b),k=c*(1-(1-h)*b); s ...
分类:其他好文   时间:2021-01-25 10:49:03    阅读次数:0
Redis之集群接收命令
本文摘录自 Redis设计与实现 如果客户端要连接redis集群而不是单机,则应该是./redis-cli -c 注意一定要有-c 一 搭建集群 假设现在有两台Redis,都以cluster的方式进行启动。可以通过向A发送,CLUSTER MEET B.IP B.PORT的方式,让这两个节点组成一个 ...
分类:其他好文   时间:2021-01-25 10:48:31    阅读次数:0
Redis主从+哨兵搭建
Redis主从+Sentinel搭建文档 1、单机redis安装 wget http://download.redis.io/releases/redis-5.0.3.tar.gzcd /usr/local/tar -zxvf redis-5.0.3.tar.gzmv redis-5.0.3/ re ...
分类:其他好文   时间:2021-01-22 11:52:28    阅读次数:0
Kubernetes - Study Notes
kubectl is the official Kubernetes CLI and it interacts with your Kubernetes cluster's API server via its API. It is configured by default using the ~ ...
分类:Web程序   时间:2021-01-14 10:52:04    阅读次数:0
kafka的Accumulator的源码粗讲
kafka的Accumulator 前言 上次我们解释了KafkaProducer的初始化和metadata数据的获取,得到了metadata数据,大伙可能就想他应该发送了吧。 不,它还要讲数据放在accumulater中,然后再真正的发送。 [][https://blog-images-bucke ...
分类:其他好文   时间:2021-01-13 10:54:06    阅读次数:0
Hadoop伪分布式模式
搭建在单一服务器 基于官方文档 http://hadoop.apache.org/docs/r2.7.2/hadoop-project-dist/hadoop-common/SingleCluster.html#Pseudo-Distributed_Operation 1、配置:hadoop-env ...
分类:其他好文   时间:2021-01-11 11:23:14    阅读次数:0
计算eks node 中pod数量
In AKS, the absolute maximum number of nodes that a cluster can have depends on a few configurations, including whether the node is in a VM State Set ...
分类:其他好文   时间:2021-01-08 11:41:16    阅读次数:0
使用etcd watch做服务发现
开发的进度已经到了服务发现了,在选择zookeeper和etcd的时候,我还真犹豫了,虽然两个都曾用过,但是长久不用就都忘了,又查了下两者的对比资料,发现在服务发现方面,两者都差不多的。只是zookeeper有Ephemeral的概念,Ephemeral结点在Zookeeper中是一个临时结点,这些 ...
分类:其他好文   时间:2021-01-08 11:30:08    阅读次数:0
k8s-etcd
安装部署主控节点服务 -- etcd 部署master节点服务 部署etcd集群 集群规划 HDss7-12.host.com ectc lead 192.168.154.12 HDss7-21.host.com ectc follow 192.168.154.21 HDss7-22.host.co ...
分类:其他好文   时间:2021-01-07 11:46:58    阅读次数:0
ansible until: '"running" in etcd_status.stdout'
- name: 以轮询的方式等待服务同步完成 shell: "systemctl status etcd.service|grep Active" register: etcd_status until: '"running" in etcd_status.stdout' retries: 8 de ...
分类:其他好文   时间:2021-01-07 11:40:27    阅读次数:0
7854条   上一页 1 ... 10 11 12 13 14 ... 786 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!