欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

nacos安装

程序员文章站 2022-03-14 12:13:31
...

nacos安装

  1. 载安装包
    https://github.com/alibaba/nacos.git
  2. 创建mysql数据库
    初始化nacos/conf/nacos-mysql.sql
    修改nacos/conf/application.properties
#*************** Config Module Related Configurations ***************#
### If use MySQL as datasource:
spring.datasource.platform=mysql

### Count of DB:
db.num=1

### Connect URL of DB:
db.url.0=jdbc:mysql://127.0.0.1:3306/nacos?characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useUnicode=true&useSSL=false&serverTimezone=UTC
db.user=root
db.password=123456
  1. 启动服务
    启动命令(standalone代表着单机模式运行,非集群模式):
➜  bin  sh startup.sh -m standalone
  1. 访问
    http://localhost:8848/nacos
    用户名:nocas
    密码:nacos

  2. 关闭服务

➜  bin sh shutdown.sh
The nacosServer(34872) is running...
Send shutdown request to nacosServer(34872) OK

更多信息,参考官网地址

相关标签: 微服务