因为docker搭建环境快捷、隔离性强、方便迁移等优点,所以我的环境基本使用
docker
和docker-compose
搭建,所以请大家先自行安装docker
与docker-compose
。
部署zookeeper
与zookeeper-ui
管理平台的docker-compose.yml
文件
version: '3.1'
services:
zookeeper:
image: zookeeper:3.5
restart: always
ports:
- 2181:2181
logging:
driver: "json-file"
options:
max-size: "10k"
max-file: "10"
web:
image: elkozmon/zoonavigator-web:0.5.0
container_name: zoonavigator-web
ports:
- "8000:8000"
environment:
WEB_HTTP_PORT: 8000
API_HOST: "api"
API_PORT: 9000
depends_on:
- api
restart: always
logging:
driver: "json-file"
options:
max-size: "10k"
max-file: "10"
api:
image: elkozmon/zoonavigator-api:0.5.0
container_name: zoonavigator-api
environment:
API_HTTP_PORT: 9000
restart: always
logging:
driver: "json-file"
options:
max-size: "10k"
max-file: "10"
这样访问http://ip:8000
就能访问管理界面,其中的ip
代表docker部署所在宿主机的IP地址。如下图:
zookeeper管理界面.PNG
在connect string
的位置填写zookeeper的地址即可访问服务,比如127.0.0.1:2181
。
个人博客:https://blog.xvjialing.xyz
github主页:https://github.com/xvjialing
微信公众号
微信公众号
网友评论