參考官網連結: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 omm #建立oracle使用者 mkdir -p /opt/software/openGauss #建立安裝目錄 chown -R omm /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命令,顯示類似如下資訊:
6、資料庫安裝完成後,預設生成名稱為postgres的資料庫。第一次連線資料庫時可以連線到此資料庫。
gsql -d postgres -p 5432
其中postgres為需要連線的資料庫名稱,8000為資料庫主節點的埠號。請根據實際情況替換。另外,也可以使用如下任一命令連線資料庫。
gsql postgres://omm:Gauss_234@127.0.0.1:8000/postgres -r
gsql -d "host=127.0.0.1 port=8000 dbname=postgres user=omm password=Gauss_234"
首次登入建議修改密碼。命令如下。
openGauss=# ALTER ROLE omm IDENTIFIED BY '$$$$$$$$' REPLACE 'XXXXXXXX';
-- 假設您要修改使用者名稱為'username'的密碼為'newpassword'
ALTER USER username IDENTIFIED BY 'newpassword';
退出資料庫。
openGauss=# \q
7、建立測試使用者:
CREATE USER c WITH PASSWORD "Gauss_123"; GRANT ALL PRIVILEGES TO unival; CREATE DATABASE db_tpcc OWNER unival;
-- 假設您要修改使用者名稱為'username'的密碼為'newpassword'
ALTER USER username IDENTIFIED BY 'newpassword';
8、遠端連結操作
- 使用如下命令檢視資料庫主節點目前的listen_addresses配置。
配置檔案地址:
/data/single_node/postgresql.conf
相關引數:
listen_addresses該引數指定openGauss伺服器使用哪些IP地址進行偵聽,取值範圍:
- 主機名或IP地址,多個值之間用英文逗號分隔。
- 星號“*”或“0.0.0.0”表示偵聽所有IP地址。配置偵聽所有IP地址存在安全風險,不推薦使用者使用。必須與有效地址結合使用(比如本地IP等),否則,可能造成Build失敗的問題。同時,主備環境下配置為“\*”或“0.0.0.0”時,主節點資料庫路徑下postgresql.conf檔案中的localport埠號不能為資料庫dataPortBase+1,否則會導致資料庫無法啟動。
- 若存在非法IP時,程序啟動階段會報錯退出。
**預設值:**資料庫例項安裝好後,根據XML配置檔案中不同例項的IP地址配置不同預設值。DN的預設引數值為:listen_addresses = 'x.x.x.x'。
- 檢視使用者密碼策略:
grep 'password_encryption_type' postgresql.conf
注意,高斯資料庫預設是 sha256
- 配置遠端訪問 pg_hba.conf
配置檔案所在目錄:/opt/software/openGauss/data/single_node
執行 vi pg_hba.conf
新增一條執行遠端訪問的策略如下:
- 重啟資料庫使引數生效。
gs_om -t stop && gs_om -t start
gs_om 命令找不到時用:
gs_ctl restart -D /opt/software/openGauss/data/single_node
過載配置:
gs_ctl reload -D /opt/software/openGauss/data/single_node
命令列測試:
gsql -d "host=192.168.125.128 port=5432 dbname=db_tpcc user=unival password=Gauss_123"
相關的命令集合:https://docs-opengauss.osinfra.cn/zh/docs/5.0.0/docs/ToolandCommandReference/gs_ctl.html#table145081017222
8.客戶端:
dataStudio:
https://community.gitcode.com/HuaweiCloudDeveloper/655eff77af067462fdd4b5cf.html
dbeaver:
https://opengauss.org/zh/blogs/justbk/2020-10-30_dbeaver_for_openGauss.html