网上基本没有一个完整可用的教程,自己也是折腾了一天才折腾出来,贴出来步骤给大家参考一下。放个版权声明:
原作者:Vi_error,博客地址:Vi_error.nextval
安装Ubuntu虚拟机
全程默认安装不用操心别的事情,安装完成之后做下面几件事情:
安装ssh-server客户端(如果你想远程连接它的话)
$ sudo apt-get update
$ sudo apt-get install openssh-server
设置root用户密码
$ passwd root
安装docker(gitbook步骤)
安装可选内核模块(ubuntu14以上需要)
$ sudo apt-get update
$ sudo apt-get install \
linux-image-extra-$(uname -r) \
linux-image-extra-virtual
使用apt安装
添加https传输软件包和CA证书
$ sudo apt-get update
$ sudo apt-get install \
apt-transport-https \
ca-certificates \
curl \
software-properties-common
添加软件源的GPG密钥
$ curl -fsSL https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu/gpg | sudo apt-key add -
向 source.list 中添加 Docker 软件源
$ sudo add-apt-repository \
"deb [arch=amd64] https://mirrors.ustc.edu.cn/docker-ce/linux/ubuntu \
$(lsb_release -cs) \
stable"
# 官方源--慢
# $ sudo add-apt-repository \
# "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
# $(lsb_release -cs) \
# stable"
安装docker ce
$ sudo apt-get update
$ sudo apt-get install docker-ce
启动docke ce
$ sudo service docker start
测试是否正确安装
$ docker run hello-world
正确输出:
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
ca4f61b1923c: Pull complete
Digest: sha256:be0cd392e45be79ffeffa6b05338b98ebb16c87b255f48e297ec7f98e123905c
Status: Downloaded newer image for hello-world:latest
Hello from Docker!
This message shows that your installation appears to be working correctly.
To generate this message, Docker took the following steps:
1. The Docker client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://cloud.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/engine/userguide/
简单解释
- 需要使用root用户或者拥有root权限的用户,原因:docker 命令会使用 Unix socket 与 Docker 引擎通讯
- hello-world是一个用来测试的镜像,测试完成可以删除
建立redis集群
流程
- 分别建立使用7001到7006作为端口的redis-docker镜像,并且启动他们
- 在容器外安装redis 并且安装 ruby 启动集群
创建镜像
在任意一个目录创建docker 镜像文件: Dockerfile,编辑内容如下:
FROM redis:3.2
MAINTAINER xiaowei
ENV REDIS_HOME /usr/local
RUN mkdir $REDIS_HOME/conf
WORKDIR $REDIS_HOME/conf
WORKDIR $REDIS_HOME/conf
RUN echo "cluster-enabled yes" >> redis.conf \
&& echo "loglevel notice" >> redis.conf \
&& echo "timeout 1000" >> redis.conf \
&& echo "cluster-config-file nodes.conf" >> redis.conf \
&& echo "port 7001" >> redis.conf \
&& echo "#bind 127.0.0.1" >> redis.conf
EXPOSE 7001
CMD ["redis-server","/usr/local/conf/redis.conf"]
注释:
前三行分别是:
redis 版本
主要管理者:修改成自己的名字
redis_home在docker中的位置
剩下的是是创建redis.conf文件并且修改对应的端口和集群模式。这里没有写密码,需要的自己加。
然后根据这个文件创建镜像:
$ docker build -t xiaowei:cluter7001 .
注意:在image名字的后面有一个空格和英文句号,必须有,否则报错
如果创建成功,你可以用命令查看这个镜像:
$ docker image ls -a
然后启动这个镜像:
$ docker run -d --name redis01 -p 7001:7001 --net=host xiaowei:cluster7001
注意: –name 后面是container的名字,最后是image的名字
同样,创建成功的话可以查看这个容器:
$ docker container ls -a
如果创建失败,那么可以查看日志,使用命令:
$ docker logs redis01
如果没有问题,那么可以继续创建剩下的5个docker,总结步骤:
- 修改Dockerfile文件的两项:”port 7001”和”EXPOSE 7001”,修改为需要使用的端口
- build一个image,然后启动它
- 重复5次
安装redis-trib.rb
下载redis-3.2.11.tar.gz(其他版本也可以),然后解压到当前文件夹
$ wget http://download.redis.io/releases/redis-3.2.11.tar.gz
$ tar zxvf redis-3.2.11.tar.gz
然后安装ruby
$ sudo apt-get update
$ sudo apt-get install ruby
然后使用gem安装redis
$ gem install redis
建立集群
到这里基本大功告成,还差最后一点。进入 redis-3.2.11/src 目录,然后执行:
$ ./redis-trib.rb create --replicas 1 192.168.240.137:7001 192.168.240.137:7002 192.168.240.137:7003 192.168.240.137:7004 192.168.240.137:7005 192.168.240.137:7006
集群搭建完成,可以随便玩了。
附上版权声明:
原作者:Vi_error,博客地址:Vi_error.nextval
转载请保持署名和注明原地址