OpenGauss 安裝

leolzi發表於2024-09-30

參考官網連結:https://docs-opengauss.osinfra.cn/zh/docs/5.0.0/docs/InstallationGuide/%E5%8D%95%E8%8A%82%E7%82%B9%E5%AE%89%E8%A3%85.html

其中安裝版本為 5.0,作業系統為 openEuler 22

1、建立使用者(gauss資料庫的安裝必須要在普通使用者下面)

useradd -m gauss  #建立oracle使用者
mkdir -p /opt/software/openGauss   #建立安裝目錄
chown -R gauss /opt/software/openGauss   #使用者授權

2.使用普通使用者登入到openGauss包安裝的主機,解壓openGauss壓縮包到安裝目錄

tar -jxf openGauss-x.x.x-openEuler-64bit.tar.bz2 -C /opt/software/openGauss

3.假定解壓包的路徑為/opt/software/openGauss,進入解壓後目錄下的simpleInstall。

cd /opt/software/openGauss/simpleInstall

4.執行install.sh指令碼安裝openGauss。

sh install.sh  -w "xxxx" &&source ~/.bashrc
 說明:
-w:初始化資料庫密碼(gs_initdb指定),因安全需要,此項必須設定。
-p:指定openGauss埠號,如不指定,預設為5432。
-h|--help:列印使用說明。
安裝後,該資料庫部署節點的名稱為sgnode(gs_initdb指定)。
執行時,如果出現報錯“the maximum number of SEMMNI is not correct, the current SEMMNI is xxx. Please check it.”,請使用有root許可權的使用者執行如下命令。
sysctl -w kernel.sem="250 85000 250 330" 
安裝後,資料庫目錄安裝路徑/opt/software/openGauss/data/single_node,其中/opt/software/openGauss為解壓包路徑,data/single_node為新建立的資料庫節點目錄。
安裝完成後,預設生成名稱為postgres的資料庫。第一次連線資料庫時可以連線到此資料庫。

5.安裝執行完成後,使用ps和gs_ctl檢視程序是否正常。

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

執行ps命令,顯示類似如下資訊:
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
omm 20377 0.0 0.0 119880 1216 pts/0 S+ 15:37 0:00 grep --color=auto gaussdb

執行gs_ctl命令,顯示類似如下資訊:

相關文章