当前位置:   article > 正文

Go语言连接openGauss环境搭建过程(含OG安装)_go语言和opengauss

go语言和opengauss

Go 语言连接 openGauss 环境搭建过程(含 OG 安装)

1.前言

本文共分为 openGauss 单机版安装部分和连接环境搭建部分,提供了通过 go 语言来连接 openGauss 的一种方案。openGauss 现在也有了基于 go 的驱动,但是我觉得 ODBC 的方式更为通用一些,也不应被丢弃,因此本文使用 go 通过 ODBC 来连接 openGauss。

  • 硬件及软件环境:

    硬件环境:虚拟机的内存 8GB,4 核心 CPU,900G 磁盘(非必须)

    软件环境:CentOS7.6

    数据库版本:opengauss2.0 企业版:openGauss-2.0.0-CentOS-64bit-all.tar.gz

2.openGauss 单机版安装:

  • 2.1. 关闭防火墙

    1. #停止firewall
    2. systemctl stop firewalld.service
    3. #禁止firewall开机启动
    4. systemctl disable firewalld.service
    5. #检查防火墙是否关闭。
    6. systemctl status firewalld
    • 说明:

      若防火墙状态显示为 active (running),则表示防火墙未关闭。

      若防火墙状态显示为 inactive (dead),则无需再关闭防火墙。

  • 2.2. 设置时区和时间

    将各数据库节点的时区设置为相同时区,可以将/usr/share/zoneinfo/目录下的时区文件拷贝为/etc/localtime 文件。

    cp /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime
    
  • 2.3. 关闭 SELinux

    1. [root@node1 ~]#
    2. getenforce
    3. sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config
    4. setenforce 0
    5. getenforce
    6. #检查
    7. cat /etc/selinux/config|grep SELINUX
    8. 输出:
    9. # SELINUX= can take one of these three values:
    10. SELINUX=disabled
    11. # SELINUXTYPE= can take one of three values:
    12. SELINUXTYPE=targeted
    13. [root@node1 ~]#
  • 2.4. 修改/etc/hosts

    1. #添加一行
    2. cat >>/etc/hosts <<EOF
    3. ***.***.***.*** node1
    4. EOF
  • 2.5. 配置库路径

    1. cat>> /etc/profile<<EOF
    2. export LD_LIBRARY_PATH=/opt/software/openGauss/script/gspylib/clib:$LD_LIBRARY_PATH
    3. EOF
  • 2.6. 关闭 os 交换区

    编辑/etc/fstab 文件,将交换区的那一行注释掉

    vi /etc/fstab

    <img src='./figures/vi.png' >

    :wq 保存退出 vi

    临时关闭交换区命令:

    1. swapoff -a
    2. free
  • 2.7. 设置 root 用户远程登陆

    1. sed -i "s/#Banner none/Banner none/g" /etc/ssh/sshd_config
    2. cat >>/etc/ssh/sshd_config<<EOF
    3. PermitRootLogin yes
    4. EOF
    5. systemctl restart sshd
    6. #检查
    7. cat /etc/ssh/sshd_config | grep PermitRootLogin
    8. cat /etc/ssh/sshd_config | grep Banner

    如下显示修改正确:

    1. PermitRootLogin yes
    2. Banner none
  • 2.8. 文件系统参数、系统支持的最大进程数

    1. echo "* soft nofile 1000000" >>/etc/security/limits.conf
    2. echo "* hard nofile 1000000" >>/etc/security/limits.conf
    3. echo "* soft nproc unlimited" >>/etc/security/limits.conf
    4. echo "* hard nproc unlimited" >>/etc/security/limits.conf
  • 2.9. 安装 python3.6.x

    1. yum install openssl* -y
    2. yum install python3* -y

    检查

    1. [omm@node1 dn]$ python3 -V
    2. Python 3.6.8

    其他软件包,如需要可以安装(也可以直接使用安装):

    1. yum install -y libaio-devel flex bison ncurses-devel glibc-devel patch redhat-lsb-core readline-devel
    2. yum install openssl* -y
    3. yum install -y java-1.8.0-openjdk* psmisc bzip2 python3 python3-devel lksctp*
    4. reboot #重新启动服务器
  • 2.10. 创建安装包的存放目录

    1. mkdir -p /opt/software/openGauss
    2. chmod 755 -R /opt/software
  • 2.11. 下载 openGauss 数据库软件

    下载地址为:<u>https://opengauss.org/zh/download/</u>

    下载完成后上传到 centos 中

  • 2.12. 解压缩 openGauss DBMS 介质

    1. cd /opt/software/openGauss
    2. tar -zxvf openGauss-2.0.0-CentOS-64bit-all.tar.gz
    3. tar -zxvf openGauss-2.0.0-CentOS-64bit-om.tar.gz
  • 2.13. 创建 XML 文件

    下面是 xml 文件官方模板,一般只需要改一下自己 centos 机器的 IP

    1. cat > clusterconfig.xml<<EOF
    2. <?xml version="1.0" encoding="UTF-8"?>
    3. <ROOT>
    4. <!-- openGauss整体信息 -->
    5. <CLUSTER>
    6. <!-- 数据库名称 -->
    7. <PARAM name="clusterName" value="dbCluster" />
    8. <!-- 数据库节点名称(hostname) -->
    9. <PARAM name="nodeNames" value="node1" />
    10. <!-- 数据库安装目录-->
    11. <PARAM name="gaussdbAppPath" value="/opt/huawei/install/app" />
    12. <!-- 日志目录-->
    13. <PARAM name="gaussdbLogPath" value="/var/log/omm" />
    14. <!-- 临时文件目录-->
    15. <PARAM name="tmpMppdbPath" value="/opt/huawei/tmp" />
    16. <!-- 数据库工具目录-->
    17. <PARAM name="gaussdbToolPath" value="/opt/huawei/install/om" />
    18. <!-- 数据库core文件目录-->
    19. <PARAM name="corePath" value="/opt/huawei/corefile" />
    20. <!-- 节点IP,与数据库节点名称列表一一对应 -->
    21. <PARAM name="backIp1s" value="***.***.***.***"/>
    22. </CLUSTER>
    23. <!-- 每台服务器上的节点部署信息 -->
    24. <DEVICELIST>
    25. <!-- 节点1上的部署信息 -->
    26. <DEVICE sn="node1">
    27. <!-- 节点1的主机名称 -->
    28. <PARAM name="name" value="node1"/>
    29. <!-- 节点1所在的AZ及AZ优先级 -->
    30. <PARAM name="azName" value="AZ1"/>
    31. <PARAM name="azPriority" value="1"/>
    32. <!-- 节点1的IP,如果服务器只有一个网卡可用,将backIP1和sshIP1配置成同一个IP -->
    33. <PARAM name="backIp1" value="***.***.***.***"/>
    34. <PARAM name="sshIp1" value="***.***.***.***"/>
    35. <!--dbnode-->
    36. <PARAM name="dataNum" value="1"/>
    37. <PARAM name="dataPortBase" value="26000"/>
    38. <PARAM name="dataNode1" value="/opt/huawei/install/data/dn"/>
    39. <PARAM name="dataNode1_syncNum" value="0"/>
    40. </DEVICE>
    41. </DEVICELIST>
    42. </ROOT>
    43. EOF
  • 2.14. 检查环境变量

    echo $LD_LIBRARY_PATH
    
  • 2.15. 安装前进行交互式检查

    [root@node1 script]#  ./gs_preinstall -U omm -G dbgrp -X /opt/software/openGauss/clusterconfig.xml
    

    出现以下内容代表检查没问题。

    Parsing the configuration file.

    1. Successfully parsed the configuration file.
    2. Installing the tools on the local node.
    3. Successfully installed the tools on the local node.
    4. Setting pssh path
    5. Successfully set core path.
    6. Are you sure you want to create the user[omm] and create trust for it (yes/no)? yes
    7. Please enter password for cluster user.
    8. Password: ******
    9. Please enter password for cluster user again.
    10. Password: ******
    11. Successfully created [omm] user on all nodes.
    12. Preparing SSH service.
    13. Successfully prepared SSH service.
    14. Checking OS software.
    15. Successfully check os software.
    16. Checking OS version.
    17. Successfully checked OS version.
    18. Creating cluster's path.
    19. Successfully created cluster's path.
    20. Setting SCTP service.
    21. Successfully set SCTP service.
    22. Set and check OS parameter.
    23. Setting OS parameters.
    24. Successfully set OS parameters.
    25. Warning: Installation environment contains some warning messages.
    26. Please get more details by "/opt/software/openGauss/script/gs_checkos -i A -h node1 --detail".
    27. Set and check OS parameter completed.
    28. Preparing CRON service.
    29. Successfully prepared CRON service.
    30. Setting user environmental variables.
    31. Successfully set user environmental variables.
    32. Setting the dynamic link library.
    33. Successfully set the dynamic link library.
    34. Setting Core file
    35. Successfully set core path.
    36. Setting pssh path
    37. Successfully set pssh path.
    38. Set ARM Optimization.
    39. No need to set ARM Optimization.
    40. Fixing server package owner.
    41. Setting finish flag.
    42. Successfully set finish flag.
    43. Preinstallation succeeded
  • 2.16. 开始安装 openGauss DBMS 和创建数据库

    使用 root 执行如下命令

    1. cd /opt/software/openGauss/script
    2. chmod -R 755 /opt/software/openGauss/script
    3. chown -R omm:dbgrp /opt/software/openGauss/script

    使用 omm 用户安装 openGauss DBMS 和创建 openGauss 数据库

    1. su - omm
    2. cd /opt/software/openGauss/script
    3. cp ../clusterconfig.xml .
    4. gs_install -X /opt/software/openGauss/script/clusterconfig.xml

    重要提示:用户需根据提示输入数据库的密码,密码需要具有一定的复杂度,为保证用户正常使用该数据库,请记住输入的数据库密码。此处建议密码设置为 **@**

    1. [omm@node1 ~]$ cd /opt/software/openGauss/script
    2. [omm@node1 script]$ cp ../clusterconfig.xml .
    3. [omm@node1 script]$ gs_install -X /opt/software/openGauss/script/clusterconfig.xml
    1. Parsing the configuration file.
    2. Check preinstall on every node.
    3. Successfully checked preinstall on every node.
    4. Creating the backup directory.
    5. Successfully created the backup directory.
    6. begin deploy..
    7. Installing the cluster.
    8. begin prepare Install Cluster..
    9. Checking the installation environment on all nodes.
    10. begin install Cluster..
    11. Installing applications on all nodes.
    12. Successfully installed APP.
    13. begin init Instance..
    14. encrypt cipher and rand files for database.
    15. Please enter password for database:******@****
    16. Please repeat for database:******@****
    17. begin to create CA cert files
    18. The sslcert will be generated in /opt/huawei/install/app/share/sslcert/om
    19. Cluster installation is completed.
    20. Configuring.
    21. Deleting instances from all nodes.
    22. Successfully deleted instances from all nodes.
    23. Checking node configuration on all nodes.
    24. Initializing instances on all nodes.
    25. Updating instance configuration on all nodes.
    26. Check consistence of memCheck and coresCheck on database nodes.
    27. Configuring pg_hba on all nodes.
    28. Configuration is completed.
    29. Successfully started cluster.
    30. Successfully installed application.
    31. end deploy..

    查看数据库状态:

    [omm@node1 script]$ gs_om -t status
    

    会出现以下内容:


    1. cluster_name : dbCluster
    2. cluster_state : Normal
    3. redistributing : No
    4. ---------------------------------------------------------------------
    5. [omm@node1 script]$

    启动数据库(安装完默认已经启动):

    1. [omm@node1 db1]$ gs_om -t start
    2. Starting cluster.
    3. =========================================
    4. [SUCCESS] node1:
    5. [2021-04-01 16:50:13.969][29784][][gs_ctl]: gs_ctl started,datadir is /opt/huawei/install/data/dn
    6. [2021-04-01 16:50:13.974][29784][][gs_ctl]: another server might be running; Please use the restart command
    7. =========================================
    8. Successfully started.
    • 使用 omm 用户执行下面的操作。

      登录到数据库,

      gsql -d postgres -p 26000 -r
      

      #执行上条命令会出现以下提示内容。

      1. gsql ((openGauss 2.0.0 build 78689da9) compiled at 2021-03-31 21:04:03 commit 0 last mr )
      2. Non-SSL connection (SSL connection is recommended when requiring high-security)
      3. Type "help" for help.

      其他常见的基本命令

      1. \q #退出会话
      2. gs_om -t stop #关闭数据库
      3. gs_om -t restart #重启数据库

      更多操作使用说明见官方文档Quickstart

3. 连接环境搭建

  • 3.1 安装 go 语言环境

    安装 go 语言,安装包下载地址:https://dl.google.com/go/go1.17.5.linux-amd64.tar.gz

    上传压缩包后解压: tar -C /usr/local/ -xvf go1.11.4.linux-amd64.tar.gz

    配置环境变量

    vi /etc/profile
    

    追加以下内容:

    export PATH=$PATH:/usr/local/go/bin
    

    让环境变量配置生效:

    source /etc/profile
    

    验证 go 是否安装成功:

    go version
    

    出现以下内容代表安装成功(我装的是 1.16 版本,以你下载的安装包版本为准):

  • 3.2 搭建 unixODBC 环境

    下载安装 unixODBC:

    1. yum install unixODBC
    2. yum install unixODBC-devel #非必须

    下载 openGauss ODBC 驱动 ODBC_2.1.0:软件包 | openGauss

    下载之后上传到 centos 机器上/soft 路径(该路径不是必须) ,把驱动拷贝到指定目录下:

    1. cd /soft
    2. tar -xzvf openGauss-2.1.0-ODBC.tar.gz
    3. cp lib/* /usr/local/lib
    4. cp odbc/lib/* /usr/local/lib

    安装完 unixODBC 后,/etc 目录下会有一个文件: odbcinst.ini ,接下来配置这个文件

    vim odbcinst.ini
    

    将下列内容添加进去:

    1. [openGauss]
    2. Driver64=/usr/local/lib/psqlodbcw.so
    3. setup=/usr/local/lib/psqlodbcw.so

    另外在/etc 下编辑 odbc.ini(如没有则新建):

    vim /etc/odbc.ini
    

    将下列内容拷贝进去:

    1. [openGaussODBC]
    2. Driver=openGauss
    3. Servername=***.***.***.***
    4. Database=postgres
    5. Username=gem
    6. Password=******@****
    7. Port=26000
    8. DatabaseName=postgres

    注,上面要填自己的 IP,数据库用户名和口令,且不能是 omm 初始用户。

    到此配置基本完成了,下面验证 odbc 是否可以 openGauss(数据库要开启):

    isql -v openGaussODBC
    

    若出现以下内容代表配置 ok,连接没有问题:

    <img src='./figures/连接没有问题.png'>

  • 3.3 编写 go 语言通过 ODBC 连接 openGauss 的测试脚本并执行验证

    1. vim test_gauss.go :
    2. package main
    3. import (
    4. "database/sql"
    5. "fmt"
    6. _ "odbc/driver"
    7. )
    8. func main() {
    9. fmt.Printf("%s\n", "创建数据库链接")
    10. conn, err := sql.Open("odbc","DSN=openGaussODBC;UID=gem;PWD=******@****")
    11. if err != nil {
    12. fmt.Println("链接错误")
    13. return
    14. }
    15. defer conn.Close()
    16. fmt.Printf("%s\n", "构建查询")
    17. stmt, err := conn.Prepare("select 666;")
    18. if err != nil {
    19. fmt.Println("查询异常:", err)
    20. return
    21. }
    22. defer stmt.Close()
    23. row, err := stmt.Query()
    24. if err != nil {
    25. fmt.Println("查询错误:", err)
    26. }
    27. defer row.Close()
    28. fmt.Printf("%s\n", "数据集显示")
    29. for row.Next() {
    30. var id int
    31. if err := row.Scan(&id); err == nil {
    32. fmt.Println(id)
    33. }

    在脚本路径下执行测试:

    go run test_gauss.go
    

    若出现以下结果表明连接成功。

4.总结

个人认为,比较容易出错的点是,虚拟机内存要大于等于 8GB,unixODBC 两个配置文件 odbc.ini 和 odbcinst.ini 的配置稍麻烦,最后,数据库一定要 start 才能连接成功,个人有一次犯了一次这个错误,虽然是很浅显的道理哈哈。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/230122
推荐阅读