官网地址:https://nacos.io/en-us/index.html
下载地址: https://github.com/alibaba/nacos/releases
文档地址: https://nacos.io/en-us/docs/what-is-nacos.html
nacos版本:1.4.1
一、单机模式
Windows:cmd startup.cmd -m standalone
Linux/Unix:bash startup.sh -m standalone
访问地址:http://localhost:8848/nacos
登录账户/密码:nacos/nacos
二、集群模式
准备MySQL数据库,新建nacos数据库和nacos用户
create database nacos;
create user 'nacos'@'%' identified by 'nacos';
grant all privileges on `nacos%`.* to