Nacos Server 安装

Nacos Server 安装

版本说明

查看方式

进入Spring Cloud Alibaba wiki查看版本对应关系,下载相应的版本。

组件版本关系

Spring Cloud Alibaba Version Sentinel Version Nacos Version RocketMQ Version Dubbo Version Seata Version
2.2.6.RELEASE 1.8.1 1.4.2 4.4.0 2.7.8 1.3.0
2021.1 or 2.2.5.RELEASE or 2.1.4.RELEASE or 2.0.4.RELEASE 1.8.0 1.4.1 4.4.0 2.7.8 1.3.0
2.2.3.RELEASE or 2.1.3.RELEASE or 2.0.3.RELEASE 1.8.0 1.3.3 4.4.0 2.7.8 1.3.0
2.2.1.RELEASE or 2.1.2.RELEASE or 2.0.2.RELEASE 1.7.1 1.2.1 4.4.0 2.7.6 1.2.0
2.2.0.RELEASE 1.7.1 1.1.4 4.4.0 2.7.4.1 1.0.0
2.1.1.RELEASE or 2.0.1.RELEASE or 1.5.1.RELEASE 1.7.0 1.1.4 4.4.0 2.7.3 0.9.0
2.1.0.RELEASE or 2.0.0.RELEASE or 1.5.0.RELEASE 1.6.3 1.1.1 4.4.0 2.7.3 0.7.1

下载说明

  • 进入nacos releases,找到相应的版本

Nacos Server 安装_第1张图片

Windows安装

  • 选择相应版本下载
  • 解压

Nacos Server 安装_第2张图片

  • 启动 /bin目录下有启动命令

Nacos Server 安装_第3张图片

默认是集群方式启动,直接启动会报错

Nacos Server 安装_第4张图片

  • 修改配置

将服务修改为单机模式启动,编辑startup.cmd文件

Nacos Server 安装_第5张图片

重新运行

Nacos Server 安装_第6张图片

Ubuntu安装

  • 选择相应版本下载
shell
复制代码$ wget https://github.com/alibaba/nacos/releases/download/2.0.3/nacos-server-2.0.3.tar.gz
  • 解压并进入bin目录
shell复制代码$ tar -xvf nacos-server-2.0.3.tar.gz
$ cd nacos/bin
  • 指定单机启动
shell
复制代码$ bash startup.sh -m standalone

通用下载方式(Linux/Unix/Mac/Windows)

  • 需要环境:64位操作系统、64位JDK1.8+Maven 3.2.x+
  • 源码和发行包下载
git复制代码$ git clone https://github.com/alibaba/nacos.git 
$ cd nacos/ 
mvn -Prelease-nacos -Dmaven.test.skip=true clean install -U ls -al distribution/target/ 
  • 进入目录并运行

验证

访问ip:8848/nacos端口

Nacos Server 安装_第7张图片

关闭

Linux/Unix/Mac

arduino
复制代码sh shutdown.sh

Windows

arduino
复制代码shutdown.cmd

或者双击shutdown.cmd运行文件。

你可能感兴趣的:(java,分布式)