【我和openGauss的故事】openGauss 5.0.0企业版x86单机安装
怕晒的太阳 openGauss 2023-08-04 18:01 发表于四川
背景
众所周知,openGauss从2020年6月30日正式开源。openGauss 5.0.0是openGauss发布的第三个LTS版本,版本生命周期为3年。openGauss 5.0.0版本与之前的版本功能特性保持兼容,在内核能力、工具链、兼容性方面全面增强。
1.openGauss安装包准备
下载openGauss 5.0.0企业版安装包。下载CPU架构是X86,操作系统是Centos7.6。请根据安装操作系统下载对应数据库安装包。
官网下载:软件包 | openGauss
2.安装软件环境准备
环境:
操作系统:centos7.9
CPU架构:x86
机器配置:8c16G
1.关闭防火墙和SELINUX
为确保openGauss的正常使用。用户需要将同openGauss相关的服务、协议、IP以及端口添加到openGauss各主机的防火墙白名单中,或关闭防火墙(关闭防火墙和防火墙白名单方式选择其中一种即可)。
首先禁用SELINUX,修改/etc/selinux/config文件中的“SELINUX”值为“disabled”。
vi /etc/selinux/config
修改“SELINUX”的值“disabled”
SELINUX=disabled
关闭防火墙
systemctl stop firewalld systemctl disable firewalld
如果防火墙不关闭,但需开放openGauss端口,本次主备库均使用5432端口。
firewall-cmd --zone=public --permanent --add-port=5432/tcp firewall-cmd –reload firewall-cmd –list-ports
2.关闭RemoveIPC
在各数据库节点上,关闭RemoveIPC。<