下载链接:https://opengauss.org/zh/download/
方法1:yum安装
[root@gauss ~]# yum -y install opengauss
使用:
切换到opengauss用户
[root@gauss ~]# su - opengauss
链接数据库
[opengauss@gauss ~]$ gsql -d postgres -p 7654 -r
yum安装需要设置opengauss用户的密码,密码八位数三种字符
openGauss=# ALTER ROLE opengauss PASSWORD 'Qq123456';
卸载
[root@gauss ~]# yum -y remove opengauss
方法二:安装包安装
创建opengauss用户
[root@gauss ~]# useradd opengauss
下载安装包到服务器
[opengauss@gauss openGauss]$ wget https://opengauss.obs.cn-south-1.myhuaweicloud.com/6.0.0-RC1/x86_openEuler_2203/openGauss-6.0.0-RC1-openEuler-64bit.tar.bz2
创建存放安装包的目录
[root@gauss ~]# mkdir -p /opt/software/openGauss
设置目录权限
[root@gauss simpleInstall]# chmod -R 755 /opt/software/openGauss/
解压文件
[opengauss@gauss ~]# cd /opt/software/openGauss/
[opengauss@gauss openGauss]$ tar -jxf openGauss-6.0.0-RC1-openEuler-64bit.tar.bz2
移动到simpleInstall目录
[opengauss@gauss openGauss]# cd simpleInstall/
安装完成
[opengauss@gauss simpleInstall]$ gs_ctl query -D /opt/software/openGauss/data/single_node
[2024-06-21 14:51:00.158][8511][][gs_ctl]: gs_ctl query ,datadir is /opt/software/openGauss/data/single_node
HA state:
local_role : Normal
static_connections : 0
db_state : Normal
detail_information : Normal
Senders info:
No information
Receiver info:
No information
参数说明
-
-w:初始化数据库密码(gs_initdb指定),因安全需要,此项必须设置。
-
-p:指定openGauss端口号,如不指定,默认为5432。
-
-h|--help:打印使用说明。
-
安装后,该数据库部署节点的名称为sgnode(gs_initdb指定)。
登陆
[opengauss@gauss simpleInstall]$ gsql -d postgres -p 5432 -r
发表评论