一、搭建准备
1、准备用户
- 创建个人账号。
useradd -d /home/xxx -m xxx
- 设置密码。
passwd xxx
- 切换到个人账号
su - xxx
2、下载源码
mkdir xxx
cd xxx
git clone https://gitee.com/opengauss/openGauss-server.git
git clone https://gitee.com/opengauss/openGauss-OM.git // openGauss-OM是运维管理模块(OperationManager),提供openGauss日常维护、配置管理的管理接口和工具。
3、提供第三方依赖
- 源码编译
git clone https://gitee.com/opengauss/openGauss-third_party.git
cd openGauss-third_party/build
sh build_all.sh
- 直接使用编译构建好的文件
#详见readme中下载openGauss章节,选择对应版本压缩包
https://gitee.com/opengauss/openGauss-server#https://gitee.com/link?target=https%3A%2F%2Fopengauss.org%2Fzh%2F
标签:git,xxx,gitee,开发,https,openGauss,com,搭建
From: https://blog.csdn.net/weixin_43381707/article/details/145155863