docker swarm集群部署

简介: docker swarm 集群构建:swarm 在docker 1.12 版本后内置#h官方文档tps://docs.docker.com/engine/swarm/#feature-highlights系统环境:  centos7.3  docker17.061、初始化manager节点:  docker swarm init  为实现高可用,manager节点需要有奇数个,类似zookerper选举制度。

docker swarm 集群构建:

swarm 在docker 1.12 版本后内置

#h官方文档tps://docs.docker.com/engine/swarm/#feature-highlights


系统环境:

  centos7.3

  docker17.06



1、初始化manager节点:

  docker swarm init

  为实现高可用,manager节点需要有奇数个,类似zookerper选举制度。


2、复制生成的命令,在node节点运行。


#docker swarm join-token manager

  To add a manager to this swarm, run the following command:


docker swarm join --token SWMTKN-1-1hwdongcnsvzh92s1wnd33w9p08k1o18vobvkzu7z509xoduif-2ezofrbnkaamwuuby9d1w0wn5 10.39.3.25:2377


# docker swarm join-token worker

   To add a worker to this swarm, run the following command:


docker swarm join --token SWMTKN-1-1hwdongcnsvzh92s1wnd33w9p08k1o18vobvkzu7z509xoduif-1j43vxwnsrc3cyz2y7ips3d3g 10.39.3.25:2377



示例:

   如目前有 10.39.3.25--29 集群, 选其中3个25、26、27 做为manager节点,用于管理swarm集群和实现高可用。

# docker node ls

ID                            HOSTNAME            STATUS              AVAILABILITY        MANAGER STATUS

  dga3oelektv4tbofub2ii9d36     cephnode5           Ready               Active

  j0hmbmvn9pwnpr1n9zm20j67k *   cephnode3           Ready               Active              Reachable

  k7pb8msn85c6xzflbe4r57itd     cephnode1           Ready               Active              Reachable

  mmlszdi5lcr0zt2nk44pcjvya     cephnode4           Ready               Active

  t9f91au60k3cgf406cqe1pn2t     cephnode2           Ready               Active              Leader


2个manager是无法实现高可用的,主节点异常后,备用节点运行命令将报错如下:

#docker node ls

Error response from daemon: rpc error: code = 2 desc = The swarm does not have a leader. It's possible that too few managers are online. Make sure more than half of the managers are online.


目录
相关文章
|
2月前
|
网络安全 Docker 容器
|
2月前
|
安全 Docker 容器
|
27天前
|
Prometheus 监控 Cloud Native
如何使用Prometheus监控Docker Swarm集群的资源使用情况?
还可以根据实际需求进行进一步的配置和优化,如设置告警规则,当资源使用超出阈值时及时发出警报。通过这些步骤,能够有效地使用 Prometheus 对 Docker Swarm 集群的资源进行监控和管理。
46 8
|
27天前
|
Prometheus 监控 Cloud Native
如何监控Docker Swarm集群的性能?
如何监控Docker Swarm集群的性能?
83 8
|
27天前
|
调度 开发者 Docker
Docker Swarm
Docker Swarm 为容器化应用的部署和管理提供了一种高效、可靠的方式,使开发者能够更轻松地构建和运行分布式应用。随着容器技术的不断发展,Docker Swarm 在企业级应用中的应用也将越来越广泛。
48 8
|
27天前
|
监控 Docker 容器
Docker Swarm集群的扩展与缩容策略,涵盖其意义、方法、步骤及注意事项
本文深入探讨了Docker Swarm集群的扩展与缩容策略,涵盖其意义、方法、步骤及注意事项,旨在帮助用户高效管理集群资源,适应业务变化,确保服务稳定性和资源优化。
48 6
|
1月前
|
Kubernetes 负载均衡 调度
Docker Swarm 核心概念及详细使用
Docker Swarm 是 Docker 的原生集群管理工具,用于将多个 Docker 主机整合成一个虚拟主机,提供集群管理和调度功能。其核心特点包括集群管理、容错与高可用性、负载均衡、声明式服务模型、服务发现和安全性。本文档详细介绍了 Docker Swarm 的安装配置、服务部署、节点管理、网络配置及故障模拟等关键操作,适用于中小型项目或对 Kubernetes 复杂性有所顾虑的用户。
112 6
|
1月前
|
应用服务中间件 nginx Docker
Docker Swarm、Docker Stack和Portainer的使用
Docker Swarm、Docker Stack 和 Portainer 各有其独特的功能和优势。Docker Swarm 适用于分布式服务的管理和编排,Docker Stack 便于多容器应用的定义和部署,而 Portainer 提供了直观的 UI,简化了 Docker 环境的管理。结合使用这些工具,可以大大提高容器化应用的部署和管理效率。希望本文对您理解和应用这些工具有所帮助。
93 5
|
2月前
|
负载均衡 应用服务中间件 网络安全
docker swarm添加更多的服务
【10月更文挑战第16天】
30 6
|
2月前
|
Docker 容器
docker swarm启动服务并连接到网络
【10月更文挑战第16天】
46 5

热门文章

最新文章