上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 35 下一页
摘要: docker run --name c2 --link c1:db -id 5182e96772bf 注意 link c1 指代另一个容器,db指定另一个别名 效果是: 进入c2容器,cat /etc/hosts--查看条目,新增了 地址影射, c1\db >指向了c1的地址 从而完成从c2容器内对 阅读全文
posted @ 2019-10-14 12:26 FromScratch 阅读(350) 评论(0) 推荐(0) 编辑
摘要: Then replace a member with member remove and member add commands: Next, start the new member with --initial-cluster-state existing flag: 阅读全文
posted @ 2019-10-14 12:14 FromScratch 阅读(223) 评论(0) 推荐(0) 编辑
摘要: export ETCDCTL_API=3 ENDPOINTS=localhost:2379 etcdctl --endpoints=${ENDPOINTS} role add root etcdctl --endpoints=${ENDPOINTS} role grant-permission ro 阅读全文
posted @ 2019-10-14 12:14 FromScratch 阅读(903) 评论(0) 推荐(0) 编辑
摘要: 一、建立集群 1、在每台机器上建立环境变量 阅读全文
posted @ 2019-10-14 12:11 FromScratch 阅读(346) 评论(0) 推荐(0) 编辑
摘要: Watch key changes Applications can watch on a key or a range of keys to monitor for any updates. Here is the command to watch on key foo: $ etcdctl wa 阅读全文
posted @ 2019-10-14 11:27 FromScratch 阅读(1219) 评论(0) 推荐(0) 编辑
摘要: Note that any key that was created using the v2 API will not be able to be queried via the v3 API. A v3 API etcdctl get of a v2 key will exit with 0 a 阅读全文
posted @ 2019-10-14 10:43 FromScratch 阅读(6206) 评论(0) 推荐(0) 编辑
摘要: 一、安装sudo curl -L https://github.com/docker/compose/releases/download/1.24.1/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose $ sud 阅读全文
posted @ 2019-10-12 18:01 FromScratch 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package main import "fmt" import "time" func sum(s []int, c chan int,order int) { sum := 0 for _, v := range s { sum += v } c <- sum // 把 sum 发送到通道 c 阅读全文
posted @ 2019-10-12 17:20 FromScratch 阅读(275) 评论(0) 推荐(0) 编辑
摘要: #go语言的time包 ##组成 time.Duration(时长,耗时) time.Time(时间点) time.C(放时间点的管道)[ Time.C:=make(chan time.Time) ] time包里有2个东西,一个是时间点,另一个是时长 时间点的意思就是“某一刻”,比如 2000年1 阅读全文
posted @ 2019-10-12 17:13 FromScratch 阅读(455) 评论(0) 推荐(0) 编辑
摘要: o 语言通过内置的错误接口提供了非常简单的错误处理机制。 error类型是一个接口类型,这是它的定义: 我们可以在编码中通过实现 error 接口类型来生成错误信息。 函数通常在最后的返回值中返回错误信息。使用errors.New 可返回一个错误信息: 在下面的例子中,我们在调用Sqrt的时候传递的 阅读全文
posted @ 2019-10-12 16:43 FromScratch 阅读(603) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 35 下一页