溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Centos7 安裝達(dá)夢(mèng)數(shù)據(jù)庫(kù)的教程

發(fā)布時(shí)間:2020-10-08 11:35:02 來(lái)源:腳本之家 閱讀:399 作者:eyesmoons 欄目:服務(wù)器

1 準(zhǔn)備工作

安裝好Linux操作系統(tǒng)這里選擇的是Linux 7:

[root@slave1 software]# cat /etc/redhat-release
CentOS Linux release 7.6.1810 (Core) 

關(guān)閉防火墻 和 Selinux:

[root@slave1 software]# systemctl stop firewalld
[root@slave1 software]# systemctl disable firewalld
[root@slave1 software]# vi /etc/selinux/config
[root@slave1 software]# cat /etc/selinux/config
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=disabled
# SELINUXTYPE= can take one of three values:
# targeted - Targeted processes are protected,
# minimum - Modification of targeted policy. Only selected processes are protected.
# mls - Multi Level Security protection.
SELINUXTYPE=targeted

創(chuàng)建DM用戶(hù):

[root@slave1 software]# groupadd dinstall
[root@slave1 software]# useradd -g dinstall -m -d /home/dmdba -s /bin/bash dmdba
[root@slave1 software]# passwd dmdba
Changing password for user dmdba.
New password: 
BAD PASSWORD: The password is shorter than 8 characters
Retype new password: 
passwd: all authentication tokens updated successfully.
[root@slave1 software]# 

創(chuàng)建目錄:存儲(chǔ)dm數(shù)據(jù)庫(kù)文件的空間需要提前規(guī)劃并掛載好,我這里放在/dm目錄下:

[root@slave1 software]# mkdir -p /dm/dmdbms
[root@slave1 software]# mkdir -p /dm/dmarch
[root@slave1 software]# mkdir -p /dm/dmbak
[root@slave1 software]# chown -R dmdba:dinstall /dm/
[root@slave1 software]# chmod -R 775 /dm/

配置系統(tǒng)限制,在/etc/security/limits.conf 文件中添加如下內(nèi)容:

[root@slave1 software]# vim /etc/security/limits.conf
dmdba soft nofile 65536
dmdba hard nofile 65536

配置環(huán)境變量:在dmdba用戶(hù)的~/.bash_profile 里添加如下內(nèi)容:

export DM_HOME="/dm/dmdbms"
export LD_LIBRARY_PATH="/dm/dmdbms/bin:$LD_LIBRARY_PATH"
export PATH="/dm/dmdbms/bin:$PATH"

注意,在DM 軟件安裝時(shí)會(huì)自動(dòng)添加DM_HOME 和 LD_LIBRARY_PATH 變量,這里只需要添加PATH即可。

2 安裝DM 數(shù)據(jù)庫(kù)

復(fù)制安裝文件: 將DM的ISO上傳到Linux系統(tǒng),并掛載:

[root@slave1 software]# mount dm7開(kāi)發(fā)版(rh7-64)20190917.iso /mnt/
mount: /dev/loop0 is write-protected, mounting read-only
[root@slave1 software]# cd /mnt/
[root@slave1 mnt]# ls
DMInstall.bin DM_Install_en.pdf DM_Install_zh.pdf release_en.txt release_zh.txt

將安裝文件復(fù)制到/dm 目錄下并修改安裝文件權(quán)限:

[root@slave1 mnt]# pwd
/mnt
[root@slave1 mnt]# cp ./DMInstall.bin /dm/
[root@slave1 mnt]# cd /dm
[root@slave1 dm]# ll
total 573076
drwxrwxr-x 2 dmdba dinstall 6 Dec 9 23:08 dmarch
drwxrwxr-x 2 dmdba dinstall 6 Dec 9 23:08 dmbak
drwxrwxr-x 2 dmdba dinstall 6 Dec 9 23:08 dmdbms
-r-xr-xr-x 1 root root 586828259 Dec 9 23:14 DMInstall.bin
[root@slave1 dm]# chown dmdba:dinstall DMInstall.bin
[root@slave1 dm]# ll
total 573076
drwxrwxr-x 2 dmdba dinstall 6 Dec 9 23:08 dmarch
drwxrwxr-x 2 dmdba dinstall 6 Dec 9 23:08 dmbak
drwxrwxr-x 2 dmdba dinstall 6 Dec 9 23:08 dmdbms
-r-xr-xr-x 1 dmdba dinstall 586828259 Dec 9 23:14 DMInstall.bin

用dmdba用戶(hù)執(zhí)行./DMInstall.bin -i 程序,開(kāi)始安裝:

[root@slave1 dm]$ pwd
/dm
[root@slave1 dm]$ ./DMInstall.bin -i
Please select the installer's language (E/e:English C/c:Chinese) [E/e]:c

解壓安裝程序.........

core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals  (-i) 3756
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files  (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 3756
virtual memory (kbytes, -v) unlimited
file locks  (-x) unlimited

可打開(kāi)文件數(shù)過(guò)少,建議至少設(shè)置為65536或更多。

歡迎使用達(dá)夢(mèng)數(shù)據(jù)庫(kù)安裝程序 

是否輸入Key文件路徑? (Y/y:是 N/n:否) [Y/y]:n

是否設(shè)置時(shí)區(qū)? (Y/y:是 N/n:否) [Y/y]:y

設(shè)置時(shí)區(qū):

[ 1]: GTM-12=日界線西
[ 2]: GTM-11=薩摩亞群島
[ 3]: GTM-10=夏威夷
[ 4]: GTM-09=阿拉斯加
[ 5]: GTM-08=太平洋時(shí)間(美國(guó)和加拿大)
[ 6]: GTM-07=亞利桑那
[ 7]: GTM-06=中部時(shí)間(美國(guó)和加拿大)
[ 8]: GTM-05=東部部時(shí)間(美國(guó)和加拿大)
[ 9]: GTM-04=大西洋時(shí)間(美國(guó)和加拿大)
[10]: GTM-03=巴西利亞
[11]: GTM-02=中大西洋
[12]: GTM-01=亞速爾群島
[13]: GTM=格林威治標(biāo)準(zhǔn)時(shí)間
[14]: GTM+01=薩拉熱窩
[15]: GTM+02=開(kāi)羅
[16]: GTM+03=莫斯科
[17]: GTM+04=阿布扎比
[18]: GTM+05=伊斯蘭堡
[19]: GTM+06=達(dá)卡
[20]: GTM+07=曼谷,河內(nèi)
[21]: GTM+08=中國(guó)標(biāo)準(zhǔn)時(shí)間
[22]: GTM+09=漢城
[23]: GTM+10=關(guān)島
[24]: GTM+11=所羅門(mén)群島
[25]: GTM+12=斐濟(jì)
[26]: GTM+13=努庫(kù)阿勒法
[27]: GTM+14=基里巴斯

請(qǐng)選擇設(shè)置時(shí)區(qū) [21]:21

安裝類(lèi)型:

1 典型安裝
2 服務(wù)器
3 客戶(hù)端
4 自定義

請(qǐng)選擇安裝類(lèi)型的數(shù)字序號(hào) [1 典型安裝]:1

所需空間: 963M

請(qǐng)選擇安裝目錄 [/opt/dmdbms]:/dm/dmdbms

可用空間: 8G

是否確認(rèn)安裝路徑(/dm/dmdbms)? (Y/y:是 N/n:否)  [Y/y]:y

安裝前小結(jié)

安裝位置: /dm/dmdbms
所需空間: 963M
可用空間: 8G
版本信息:
有效日期:
安裝類(lèi)型: 典型安裝
是否確認(rèn)安裝? (Y/y:是 N/n:否):y
2019-12-09 23:17:21
[INFO] 安裝達(dá)夢(mèng)數(shù)據(jù)庫(kù)...
2019-12-09 23:17:22
[INFO] 安裝 基礎(chǔ) 模塊...
2019-12-09 23:17:32
[INFO] 安裝 服務(wù)器 模塊...
2019-12-09 23:17:33
[INFO] 安裝 客戶(hù)端 模塊...
2019-12-09 23:17:44
[INFO] 安裝 驅(qū)動(dòng) 模塊...
2019-12-09 23:17:55
[INFO] 安裝 手冊(cè) 模塊...
2019-12-09 23:17:55
[INFO] 安裝 服務(wù) 模塊...
2019-12-09 23:17:59
[INFO] 移動(dòng)ant日志文件。
2019-12-09 23:17:59
[INFO] 更改安裝目錄權(quán)限完成。
2019-12-09 23:17:59
[INFO] 正在啟動(dòng)DmAPService服務(wù)...
2019-12-09 23:18:01
[INFO] 啟動(dòng)DmAPService服務(wù)成功。
2019-12-09 23:18:01
[INFO] 安裝達(dá)夢(mèng)數(shù)據(jù)庫(kù)完成。 

安裝結(jié)束

3 創(chuàng)建數(shù)據(jù)庫(kù)實(shí)例

[root@slave1 bin]$ pwd
/dm/dmdbms/bin
[root@slave1 bin]$ ./dminit PATH=/dm/dmdbms/data DB_NAME=dmdba INSTANCE_NAME=DMDBA CTL_PATH=/dm/dmdbms/data/dmdba/dm.ctl CASE_SENSITIVE=N CHARSET=1
initdb V7.6.0.197-Build(2019.09.12-112648)ENT 
db version: 0x7000a
file dm.key not found, use default license!
License will expire on 2020-09-12
 
 log file path: /dm/dmdbms/data/dmdba/dmdba01.log
 
 
 log file path: /dm/dmdbms/data/dmdba/dmdba02.log
 
write to dir [/dm/dmdbms/data/dmdba].
create dm database success. 2019-12-09 23:25:17

4 注冊(cè)數(shù)據(jù)庫(kù)服務(wù)

注冊(cè)的shell 腳本dm_service_installer.sh在DM_HOME/script/root目錄下,執(zhí)行注冊(cè)時(shí)需要使用root用戶(hù)執(zhí)行。

[root@slave1 bin]# cd /dm/dmdbms/script/root
[root@slave1 root]# ./dm_service_installer.sh -t dmserver -i /dm/dmdbms/data/dmdba/dm.ini -p dmdba
Created symlink from /etc/systemd/system/multi-user.target.wants/DmServicedmdba.service to /usr/lib/systemd/system/DmServicedmdba.service.

創(chuàng)建服務(wù)(DmServicedmdba)完成

5 啟動(dòng)數(shù)據(jù)庫(kù)

[root@slave1 root]# systemctl enable DmServicedmdba.service
[root@slave1 root]# systemctl start DmServicedmdba

6 客戶(hù)端連接

出現(xiàn)如下畫(huà)面,說(shuō)明安裝成功,可以正常使用了。

Centos7 安裝達(dá)夢(mèng)數(shù)據(jù)庫(kù)的教程

總結(jié)

以上所述是小編給大家介紹的Centos7 安裝達(dá)夢(mèng)數(shù)據(jù)庫(kù)的教程,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)億速云網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI