nacos源码解读

console模块

这是我们的后台管理模块, springboot项目

distribution模块

这是我们构建的脚本执行模块

本地启动参数

-Dnacos.home=/Users/cuishiying/work/nacos/distribution -Dnacos.standalone=true

源码构建

1
2
3
4
5
6
7
git clone https://github.com/alibaba/nacos.git
cd nacos/
mvn -Prelease-nacos -Dmaven.test.skip=true clean install -U
ls -al distribution/target/

// change the $version to your actual path
cd distribution/target/nacos-server-$version/nacos/bin

linux启动停止

1
2
sh startup.sh -m standalone
sh shutdown.sh