1、官方网址

官网:https://nacos.io/zh-cn/
Release地址:https://github.com/alibaba/nacos/releases
下载地址:https://github.com/alibaba/nacos/releases/download/2.0.2/nacos-server-2.0.2.tar.gz
文档地址:https://nacos.io/zh-cn/docs/what-is-nacos.html

2、虚拟机信息

三台虚拟机,操作系统CentOS7 ,安装JDK1.8+。
JDK安装请参考:JDK安装

3、集群配置

#3.1 解压安装文件
tar -zxvf nacos-server-2.0.2.tar.gz
#3.2修改配置文件
cp cluster.conf.example cluster.conf
vim cluster.conf
#cluster.conf内容如下:
192.168.20.27:8848
192.168.20.28:8848
192.168.20.29:8848

#3.3启动当前节点
 sh startup.sh -p embedded
#3.4 防火墙开放端口
firewall-cmd --permanent --zone=public --add-port=8848/tcp
firewall-cmd --permanent --zone=public --add-port=7848/tcp
firewall-cmd --permanent --zone=public --add-port=9848/tcp
firewall-cmd --permanent --zone=public --add-port=9849/tcp
firewall-cmd --reload

三台服务器上都进行上述配置。

端口说明:
8848 web站点端口
7848 jraft通信端口
Nacos2.0版本相比1.X新增了gRPC的通信方式,因此需要增加2个端口。新增端口是在配置的主端口(server.port)基础上,进行一定偏移量自动生成。
端口 与主端口的偏移量 描述
9848 1000 客户端gRPC请求服务端端口,用于客户端向服务端发起连接和请求
9849 1001 服务端gRPC请求服务端端口,用于服务间同步等
使用VIP/nginx请求时,需要配置成TCP转发,不能配置http2转发,否则连接会被nginx断开。

4、nginx配置

nginx记得安装stream模块,支持tcp转发。 nginx.conf内容如下:

 upstream nacos_cluster{
        ip_hash;
        server 192.168.20.27:8848;
        server 192.168.20.28:8848;
        server 192.168.20.29:8848;
    }
    server {
        listen       8081;
        server_name  localhost;

        location / {
            root   html;
            index  index.html index.htm;
 proxy_set_header Host $http_host;
    proxy_pass http://nacos_cluster;
        }
 }
 #tcp转发
stream {
	upstream nacosgrpcc {
	server 192.168.20.27:9848;
	server 192.168.20.28:9848;
	server 192.168.20.29:9848;
	}
}

5、web管理后台

默认用户名密码都是nacos在这里插入图片描述
在这里插入图片描述

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐