网站:https://github.com/coreos/etcd

一些观点:https://yq.aliyun.com/articles/11035

1.etcd是键值存储仓库,配置共享和服务发现
2.2379用于客户端通信,2380用于节点通信。
3.etcd可以集群使用,也可以单机。不支持密码认证,但可选ssl认证,最好不要走公网。
4.数据持久化

5.开机启动

/usr/local/bin/etcd --name=test123 --data-dir=/home/wyt/bin/etcd-v3.0.15-linux-amd64/data

--listen-client-urls=http://0.0.0.0:2379 --listen-peer-urls=http://0.0.0.0:2380

--advertise-client-urls=http://0.0.0.0:2379 --initial-advertise-peer-urls=http://0.0.0.0:2380

说明:

--listen-client-urls                 list of URLs to listen on for client traffic(用户客户端数据通信端口)

--listen-peer-urls                  list of URLs to listen on for peer traffic(各个etcd节点的数据通信端口,交互,选举,数据同步等)

--advertise-client-urls           list of this member's client URLs to advertise to the public(集群参数:etcd服务器之间通讯的端口)

--initial-advertise-peer-urls    list of this member's peer URLs to advertise to the rest of the cluster(集群参数)

上面是我的理解,下面摘抄自其它地方(http://www.cnblogs.com/breg/p/5728237.html):
    —data-dir 指定节点的数据存储目录,这些数据包括节点ID,集群ID,集群初始化配置,Snapshot文件,若未指定—wal-dir,还会存储WAL文件;
    —wal-dir 指定节点的was文件的存储目录,若指定了该参数,wal文件会和其他数据文件分开存储。
    —name 节点名称
    —initial-advertise-peer-urls 告知集群其他节点url.
    — listen-peer-urls 监听URL,用于与其他节点通讯
    — advertise-client-urls 告知客户端url, 也就是服务的url
    — initial-cluster-token 集群的ID
    — initial-cluster 集群中所有节点

端口映射:

iptables -t nat -A PREROUTING  -p tcp --dport 65079 -j REDIRECT --to-port 2379

iptables -t nat -A PREROUTING  -p tcp --dport 65080 -j REDIRECT --to-port 2380

6.设置键值

etcdctl set mykey "abcdefg"

etcdctl get mykey

etcdctl rm  mykey

curl -L http://192.168.8.163:2379/version

curl -L http://192.168.8.163:65079/version

7.测试命令(来自:http://debugo.com/using-etcd/?utm_source=tuicool&utm_medium=referral)

  1. #设置一个键的值
  2. etcdctl set /foo/bar "hello world"
  3. hello world
  4. #设置一个带time to live的键
  5. etcdctl set /foo/bar "hello world" --ttl 60
  6. hello world
  7. #当值为"hello world"时,替换为"Goodbye world"。
  8. etcdctl set /foo/bar "Goodbye world" --swap-with-value "hello world"
  9. etcdctl set /foo/bar "Goodbye world" --swap-with-value "hello world"
  10. Goodbye world
  11. etcdctl set /foo/bar "Goodbye world" --swap-with-value "hello world"
  12. Error: 101: Compare failed ([hello world != Goodbye world]) [7]
  13. #仅当不存在时创建
  14. etcdctl mk /foo/new_bar "Hello world"
  15. Hello world
  16. etcdctl mk /foo/new_bar "Hello world"
  17. Error: 105: Key already exists (/foo/new_bar) [8]
  18. #仅当存在时更新建
  19. etcdctl update /foo/bar "hello etcd"
  20. hello etcd
  21. #创建一个directory node
  22. etcdctl mkdir /foo/dir
  23. #创建一个directory node,或者将一个file node设置成directory node
  24. etcdctl setDir /foo/dir
  25. #删除file node
  26. etcdctl rm /foo/bar
  27. #删除directory node
  28. etcdctl rmdir /foo/dir
  29. etcdctl rm /foo/dir --dir
  30. #递归删除
  31. etcdctl rm /foo/dir --recursive
  32. #当值为"Hello world"时删除
  33. etcdctl rm /foo/bar --with-value "Hello world"
  34. #获得某个键的值
  35. etcdctl get /foo/bar
  36. hello, etcd
  37. #获得某个键在集群内的一致性值
  38. etcdctl get /foo/bar --consistent
  39. hello, etcd
  40. #获得一些扩展的元信息
  41. etcdctl -o extended get /foo/bar
  42. Key: /foo/bar
  43. Created-Index: 14
  44. Modified-Index: 14
  45. TTL: 0
  46. Etcd-Index: 14
  47. Raft-Index: 5013
  48. Raft-Term: 0
  49.  
  50. hello, etcd
  51. #其中,索引是一个对于etcd上任何改变中唯一、单调递增的整数。这个特殊的索引反映了etcd在某个key被创建后的时间点的etcd状态机。比如此时新建一个/foo/bar1,那么该节点的created-index和modified-index为15,代表了当前etcd的最新改变。
  52. #列出目录的内容,-p则对directory node以/结尾
  53. etcdctl ls
  54. /foo
  55. etcdctl ls /foo
  56. /foo/bar
  57. /foo/new_bar
  58. /foo/dir
  59. etcdctl ls / --recursive
  60. /foo
  61. /foo/bar
  62. /foo/new_bar
  63. /foo/dir
  64.  
  65. #设置监视(watch),此时该命令会一直等待并输出下一次变化。
  66. etcdctl watch /foo/bar
  67. hello, etcd!
  68. #while another terminal
  69. etcdctl update /foo/bar "hello, etcd!"
  70. hello, etcd!
  71. #持续监视更新
  72. etcdctl watch /foo/bar --forever
  73. ......
  74. #使用Ctrl+c结束
  75. #当反生变化时执行一个应用
  76. etcdctl exec-watch /foo/bar -- sh -c "echo hi"
  77. hi
  78. hi
  79. ......
  80. #监视目录下所有节点的改变
  81. etcdctl exec-watch --recursive /foo -- sh -c "echo hi"

8.web界面

下载工程:https://github.com/henszey/etcd-browser

修改server.js

var etcdHost = process.env.ETCD_HOST || '127.0.0.1';
var etcdPort = process.env.ETCD_PORT || 2379;
var serverPort = process.env.SERVER_PORT || 8000;

前面2个是etcd地址和数据端口,8000是提供的web端口,在浏览器上输入:http://192.168.8.xx:8000/

etcd第一集的更多相关文章

  1. NanUI for Winform 使用示例【第一集】——山寨个代码编辑器

    NanUI for Winform从昨天写博客发布到现在获得了和多朋友的关注,首先感谢大家的关注和支持!请看昨天本人的博文<NanUI for Winform发布,让Winform界面设计拥有无 ...

  2. Windows Phone开发(43):推送通知第一集——Toast推送

    原文:Windows Phone开发(43):推送通知第一集--Toast推送 好像有好几天没更新了,抱歉抱歉,最近"光荣"地失业,先是忙于寻找新去处,唉,暂时没有下文.而后又有一 ...

  3. FJUT第四周寒假作业之第一集,临时特工?(深度优先搜索)

    原网址:http://210.34.193.66:8080/vj/Contest.jsp?cid=163#P2 第一集,临时特工? TimeLimit:1000MS  MemoryLimit:128M ...

  4. k8s部署etcd数据库集群

    ⒈下载 https://github.com/etcd-io/etcd/releases ⒉解压 tar -zxvf etcd-v3.3.12-linux-amd64.tar.gz ⒊移动可执行文件及 ...

  5. etcd-v2第一集

    网站:https://github.com/coreos/etcd 一些观点:https://yq.aliyun.com/articles/11035 1.etcd是键值存储仓库,配置共享和服务发现2 ...

  6. Unity 图文重现官方教程视频 2droguelike 第一集

    初衷: 本人初学Unity,四处收集了一些视频和教材,学习和摸索了一段时间, 我发现官网教程简单易上手,只不过他是英文讲解不方便,我就想把他翻译翻译吧, 然后我又发现看视频学习要暂停回放好多遍,麻烦, ...

  7. 创芯Xilinx Microblaze 学习系列第一集

    创芯Xilinx Microblaze 学习系列第一集 Xilinx ISE Design Suite 13.2 The MicroBlaze™ embedded processor soft cor ...

  8. k8s集群部署之环境介绍与etcd数据库集群部署

    角色 IP 组件 配置 master-1 192.168.10.11 kube-apiserver kube-controller-manager kube-scheduler etcd 2c 2g ...

  9. SpringBoot第一集:入门(2020最新最易懂)

    2020最新SpringBoot第一集:入门(2020最新最易懂) 学习思路: 是什么?为什么要学,有什么用?有什么特点?简单明了的总结一句话! SpringBoot推荐开发工具: Spring To ...

随机推荐

  1. 一定要在主线程更新UI

    在一些技术交流群里面,一些初学者(我表示我也是其中一人),总是会发现,为什么我UIView的animate方法,不会动!而是直接闪? 这是为什么呢? 一定要在主线程中更新UI! 一定要在主线程中更新U ...

  2. Unity中创建二维码

    在网络上发现了一个可以把字符串转换成二维码的dll,但是我们要怎么使用他呢.不废话,直接进入主题. 用到的引用 using UnityEngine;using ZXing;using ZXing.Qr ...

  3. ajax 中boolean值技巧

    // 利用判断 数据重复 function checkId () { var flag = true; $.ajax({ url: "", type: "post&quo ...

  4. 为什么要学习java?

    前面说了什么是java java只是一门语言,中文,英语,c++,c#等等数之不尽的语言 java的应用领域: 1)安卓应用 2)金融业服务器的应用 3)Java Web应用 4)软件工具 5)交易应 ...

  5. MySQL数据库3 - MySQL常用数据类型

    一. MySql常用数据类型 数据类型:整数(tinyint smailint int bigint) 定点数 decimal(p,s) ------ 小数点位置固定的       ---> 数 ...

  6. Xcode下搭建opencv环境碰到的一些问题

    写了一学期py-opencv了都快结束了突然又要折腾起c++下来,真实给自己跪了,不过环境基本都搞定了,中间碰到了一些问题这里总结一下: usr/local/include和usr/local/lib ...

  7. jsp提交表单数据乱码,内置对象,以及过滤器

    jsp提交表单数据乱码解决方案 通过form表单给服务器提交数据的时候,如果提交的是中文数据,那么可能会出现乱码,如果表单的请求方式是post请求,那么可以使用如下方案解决乱码: 在调用getPara ...

  8. sync_with_stdio

    /* The synchronization referred to is @e only that between the standard * C facilities (e.g., stdout ...

  9. TCPCopy使用

      http://www.thinkingbar.com/2014/04/17/tcpcopy使用/ 主题 技术 一.应用背景 主要用于系统的稳定性测试.它可以复制线上服务器的请求,通过修改TCP/I ...

  10. Jquery.Form和jquery.validate 的使用

    有些功能需要我们利用Ajax技术进行POST提交表单,这时候就需要用到jquery.Form ,它有两种方式进行提交, AjaxForm和AjaxSubmit方式.            AjaxFo ...