单节点安装

前提条件:

  • 已完成用户组和普通用户的创建。
  • 所有服务器操作系统和网络均正常运行。
  • 普通用户必须有数据库包解压路径、安装路径的读、写和执行操作权限,并且安装路径必须为空。
  • 普通用户对下载的openGauss压缩包有执行权限。
  • 安装前请检查指定的openGauss端口是否被占用,如果被占用请更改端口或者停止当前使用端口进程。

操作步骤

  1. 使用普通用户登录到openGauss包安装的主机,解压openGauss压缩包到安装目录。

    1. tar -jxf openGauss-x.x.x-openEuler-64bit.tar.bz2 -C /opt/software/openGauss
  2. 假定解压包的路径为/opt/software/openGauss,进入解压后目录下的simpleInstall。

    1. cd /opt/software/openGauss/simpleInstall
  3. 执行install.sh脚本安装openGauss。

    1. sh install.sh -w xxxx

    单节点安装 - 图1 说明:

    • -w:初始化数据库密码(gs_initdb指定),安全需要必须设置。
    • -p:指定的openGauss端口号, 如不指定,默认为5432。
    • -h|—help 打印使用说明。
    • 安装后,数据库的名称为sgnode。
    • 安装后,数据库目录安装路径/opt/software/openGauss/data/single_node,其中/opt/software/openGauss为解压包路径,data/single_node为新创建的数据库节点目录。
  4. 安装执行完成后,使用ps和gs_ctl查看进程是否正常。

    1. ps ux | grep gaussdb
    2. gs_ctl query -D /opt/software/openGauss/data/single_node

    执行ps命令,显示类似如下信息:

    1. omm 24209 11.9 1.0 1852000 355816 pts/0 Sl 01:54 0:33 /opt/software/openGauss/bin/gaussdb -D /opt/software/openGauss/single_node
    2. omm 20377 0.0 0.0 119880 1216 pts/0 S+ 15:37 0:00 grep --color=auto gaussdb

    执行gs_ctl命令,显示类似如下信息:

    1. gs_ctl query ,datadir is /opt/software/openGauss/data/single_node
    2. HA state:
    3. local_role : Normal
    4. static_connections : 0
    5. db_state : Normal
    6. detail_information : Normal
    7. Senders info:
    8. No information
    9. Receiver info:
    10. No information