一、基本信息
1、虚拟机安装的centos版本
2、opengauss版本
地址:https://opengauss.org/zh/download/
3、opengauss和gaussdb的区别
高斯数据库(GaussDB)是云数据库,需要购买。
openGaussDB是开源数据库,可以免费安装部署。
二、安装步骤
1、服务器创建目录
/srv/yutu/opengauss
并授权
chmod -R 775 /srv/yutu/opengauss
将下载的压缩文件上传到该目录下
2、解压
tar -zxvf openGauss-All-6.0.0-CentOS7-x86_64.tar.gz
下面的解压文件是上面的解压操作后得到的
tar -zxvf openGauss-OM-6.0.0-CentOS7-x86_64.tar.gz
3、编辑/etc/profile文件,在末尾加上ulimit -c unlimited,然后重新加载该文件
source /etc/profile
4、关闭防火墙
systemctl stop firewalld
5、配置python环境
yum install python3.6*
如果报错可以配置yum源
6、验证python环境
7、linux中权限最大的用户是root,Gauss数据库官方默认以dbgrp为用户组,omm为用户。