本文只介绍基于mysql5.7的standalone单机版本安装,更多类型安装,请参考:https://github.com/nacos-group/nacos-docker/blob/master/README_ZH.md
下载 nacos 1.2.0 ,并准备好nacos需要的数据库
- 下载1.2.0版本的zip包(这个包里有运行脚本,可以直接运行nacos,但这是传统方式运行,我们这里主要讲使用docker运行,所以此包仅仅是为了一个数据库脚本文件nacos-mysql.sql)
- 在已经安装好的mysql库中创建nacos数据库,并使用nacos提供的初始化脚本conf/nacos-mysql.sql初始化nacos;
- 创建一个nacos用户,并授予所有权限
CREATE USER 'nacos'@'%' IDENTIFIED BY 'Nacos501472';
grant all on nacos.* to 'nacos'@'%' with grant option;
flush privileges;
创建虚拟网络,关联已经安装好的mysql容器
现实中往往是多个应用容器使用同一个mysql,我们这里也不例外,docker-compose编排的容器内部要想访问编排之外的容器,一定要保证网络是通的,所以我们要创建一个网络,把mysql和nacos统一到一个网络中。
#创建一个名为 net-docker的网络,在docker-compose中使用external_links关键字关联
docker network create net-docker --driver bridge
下载docker-compose编排文件及配置
- Clone 项目 并且进入项目根目录
git clone https://github.com/paderlol/nacos-docker.git cd nacos-docker
- 修改编排文件(nacos-docker/example/standalone-mysql-5.7.yaml),下面配置重点关注external_links和networks。此编排中还起了两个容器,分别是prometheus和grafana,以后再详细介绍
$ vi standalone-mysql-5.7.yaml
version: "3.1" #这个版本和宿主机docker-compose版本相关
services:
nacos: #服务名
image: nacos/nacos-server:latest #使用nacos镜像
container_name: nacos-standalone-mysql
env_file:
- ../env/nacos-standlone-mysql.env #指定配置文件
volumes: #挂载目录
- ./standalone-logs/:/home/nacos/logs
- ./init.d/custom.properties:/home/nacos/init.d/custom.properties
ports:
- "8848:8848" #暴露端口[宿主机端口:docker容器端口]
external_links: #关联容器外的 MySQL,因为不是每个docker编排都起一个mysql的(这个要生效,一定要创建虚拟网络此处为net-docker)
- mysql:5.7
restart: on-failure
prometheus: #
container_name: prometheus
image: prom/prometheus:latest
volumes:
- ./prometheus/prometheus-standalone.yaml:/etc/prometheus/prometheus.yml
ports:
- "9090:9090"
depends_on:
- nacos
restart: on-failure
grafana: #图形化组件
container_name: grafana
image: grafana/grafana:latest
ports:
- 3000:3000
restart: on-failure
networks: #配置和mysql容器互通的网络net-docker
default:
external:
name: net-docker
- 修改standalone-mysql-5.7.yaml中涉及到的mysql配置文件/env/nacos-standlone-mysql.env
PREFER_HOST_MODE=hostname
#单机模式
MODE=standalone
SPRING_DATASOURCE_PLATFORM=mysql
#mysql主机名称(可以直接ping通mysql容器的ip)
MYSQL_SERVICE_HOST=mysql
# nacos使用的数据库名称
MYSQL_SERVICE_DB_NAME=nacos
MYSQL_SERVICE_PORT=3306
MYSQL_SERVICE_USER=nacos
MYSQL_SERVICE_PASSWORD=Nacos
# 是否使用授权(为true时,需要登录才能操作里面的功能)
NACOS_AUTH_ENABLE=true
NACOS_AUTH_TOKEN_EXPIRE_SECONDS=36000
- 修改standalone-mysql-5.7.yaml中涉及到的环境变量文件(init.d/custom.properties)
spring.security.enabled=true
management.security=true
security.basic.enabled=true
# 忽略的资源配置
nacos.security.ignore.urls=/,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-fe/public/**,/v1/auth/login,/v1/console/health/**,/v1/cs/**,/v1/ns/**,/v1/cmdb/**,/actuator/**,/v1/console/server/**
management.metrics.export.elastic.host=http://localhost:9200
# metrics for prometheus
anagement.endpoints.web.exposure.include=*
# metrics for elastic search
management.metrics.export.elastic.enabled=true
management.metrics.export.elastic.host=http://localhost:9200
# metrics for influx
#management.metrics.export.influx.enabled=false
#management.metrics.export.influx.db=springboot
#management.metrics.export.influx.uri=http://localhost:8086
#management.metrics.export.influx.auto-create-db=true
#management.metrics.export.influx.consistency=one
#management.metrics.export.influx.compressed=true
- 进入example目录,然后启动docker编排
#启动
docker-compose -f standalone-mysql-5.7.yaml up -d
#如果配置有调整需要停止nacos的,使用此命令
docker-compose -f standalone-mysql-5.7.yaml down
- 浏览打开 http://xxxx:8848/nacos,即可看到安装好的nacos
常见问题定位
- 查看当前有效路由
http://10.0.10.225:8002/actuator/gateway/routes
- 查看指定服务的实例
http://10.0.10.225:8001/nacos/v1/ns/instance/list?serviceName=the-api
注意:本文归作者所有,未经作者允许,不得转载