目錄
安裝準備:
安裝:資料庫工具
系統環境:centos7
查詢系統環境
#獲取系統位數
getconf long_bit
#查詢作業系統 release 資訊
lsb_release -a
#檢查 cpu 版本:
cat /proc/cpuinfo
#查詢系統資訊
cat /etc/issue
#查詢系統名稱
uname -a
#查詢空閒記憶體
free -m
#glibc 版本檢查:
rpm -qa|grep glibc
安裝資料庫
安裝包位置:/opt/dm8_20201107_x86_rh6_64_ent_8.1.1.144.iso
資料庫安裝目錄:/dm8
cd /opt
mkdir /mnt/dm
#掛載mount /opt/dm8_20201107_x86_rh6_64_ent_8.1.1.144.iso /mnt/dm
cd /mnt/dm
#規劃使用者組和使用者
groupadd dinstall
useradd -g dinstall dmdba
passwd dmdba
id dmdba
#規劃安裝路徑,並賦予許可權
mkdir /dm8
chown dmdba:dinstall /dm8
系統安裝資料庫需要圖形化介面,假如未安裝圖形化介面,可執行安裝命令。
centos7安裝圖形化介面:
#獲取並安裝centos預設的圖形介面gnome程式包
yum groupinstall "gnome desktop" "graphical administration tools"
# 修改為圖形介面模式
systemctl set-default graphical.target
#重啟centos,檢驗gui介面效果
reboot
#安裝xclock
圖形化介面的測試和呼叫:
xhost +
#檢視是否開啟圖形化時鐘
xclock
#獲取顯示的值,假設為0
echo $display
su - dmdba
export display=:0(:0 是第三步顯示的值)
#檢視是否成功開啟圖形化時鐘
xclock
設定檔案開啟最大數:
#設定檔案開啟最大數設定
ulimit -n 65536
#檔案開啟最大數設定,永久設定
cd /etc/security
vi limits.conf
新增:dmdba soft nofile 65536
dmdba hard nofile 65536
安裝:
cd /mnt/dm
./dminstall.bin
su root
/dm8/script/root/root_installer.sh
su dmdba
設定環境變數:
#開啟環境變數配置
vi ~/.bash_profile
新增:export path="$path:$dm_home/bin:$dm_home/tool"
#使修改生效
source ~/.bash_profile
建立資料庫例項
cd /dm8/tool
chmod 755 ./dbca.sh
#介面化安裝
./dbca.sh
資料庫例項服務啟動停止命令:
su root
#檢視狀態
systemctl status dmservicedmserver.service
#關閉資料庫服務
systemctl stop dmservicedmserver.service
#啟動資料庫服務
systemctl start dmservicedmserver.service
su dmdba
連線資料庫:
cd /dm8/tool
chmod 755 ./nca.sh
#介面化連線資料庫
./nca.sh
dm
管理工具(聯機工具,
manager
) ,可以執行
sql、資料庫介面操作
資料的匯入匯出、聯機物理備份和還原
cd /dm8/tool
chmod 755 ./manager
./manager
dm 控制台工具(離線工具、console),支援資料庫備份和還原、引數配置修改
cd /dm8/tool
chmod 755 ./console
./console
dts
資料遷移工具(
dts) ,支援 sql
檔案、資料檔案、
oracle
、mysql
、dm
遷移 dm
cd /dm8/tool
chmod 755 ./dts
./dts
dm 效能監測工具
cd /dm8/tool
chmod 755 ./monitor
./monitor
dm 資料審計分析工具
cd /dm8/tool
chmod 755 ./analyzer
./analyzer
CentOS7下安裝達夢資料庫的步驟
一,建立安裝使用者 為了減少對作業系統的影響,使用者不應該以 root 系統使用者來安裝和執行 dm 使用者可以在安裝之前為 dm 建立乙個專用的系統使用者。1.建立安裝使用者組 dinstall。groupadd dinstall 2.建立安裝使用者 dmdba。useradd g dinstal...
CentOS安裝達夢資料庫
root dm home chmod 777 dminstall.bin root dm home dminstall.bin i 請選擇安裝語言 c c 中文 e e 英文 c c c 解壓安裝程式.core file size blocks,c 0 data seg size kbytes,d ...
達夢7資料庫安裝記錄
注1 本文件適合rhel oel centos 5 6.x x64或中標麒麟作業系統。整理完整的安裝過程記錄。vi etc hosts 192.168.14.180 node1 groupadd dinstall useradd g dinstall m d home dmdba s bin bas...