您好,登錄后才能下訂單哦!
本篇內容主要講解“怎么解決CentOs 7.X安裝Oracle 11g RAC的坑”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么解決CentOs 7.X安裝Oracle 11g RAC的坑”吧!
1.安裝GI執行root.sh腳本時,ohasd 進程無法正常啟動
ohasd failed to start
Failed to start the Clusterware. Last 20 lines of the alert log follow:
2018-04-19 09:54:30.897:
[client(19244)]CRS-2101:The OLR was formatted using version 3.
alert:
Oracle High Availability Service has timed out waiting for init.ohasd to be started.
因為Oracle Linux 7(和Redhat 7)使用systemd而不是initd來啟動/重新啟動進程,并將它們作為服務運行,所以當前的11.2.0.4和12.1.0.1的軟件安裝不會成功,因為ohasd進程沒有正常啟動。
解決方法一:
在root.sh執行之前先打上補丁:18370031。
解決方法二:手動在systemd中添加ohasd服務
(1).創建一個空服務文件:/usr/lib/systemd/system/ohasd.service
touch /usr/lib/systemd/system/ohasd.service
(2).編輯文件ohasd.service添加如下內容
vi /usr/lib/systemd/system/ohasd.service
[Unit]
Description=Oracle High Availability Services
After=syslog.target
[Service]
ExecStart=/etc/init.d/init.ohasd run >/dev/null 2>&1 Type=simple
Restart=always
[Install]
WantedBy=multi-user.target
(3).添加和啟動服務
systemctl daemon-reload
systemctl enable ohasd.service
systemctl start ohasd.service
查看運行狀態:
[root@rac1 system]# systemctl status ohasd.service
● ohasd.service - Oracle High Availability Services
Loaded: loaded (/usr/lib/systemd/system/ohasd.service; enabled; vendor preset: disabled)
Active: active (running) since Thu 2018-04-19 14:10:19 CST; 1h 16min ago
Main PID: 1210 (init.ohasd)
CGroup: /system.slice/ohasd.service
└─1210 /bin/sh /etc/init.d/init.ohasd run >/dev/null 2>&1 Type=simple
Apr 19 14:10:19 bms-75c8 systemd[1]: Started Oracle High Availability Services.
Apr 19 14:10:19 bms-75c8 systemd[1]: Starting Oracle High Availability Services...
(4).重新執行root.sh腳本
注意: 為了避免其余節點遇到這種報錯,可以在root.sh執行過程中,待/etc/init.d/目錄下生成了init.ohasd 文件后執行systemctl start ohasd.service 啟動ohasd服務即可。若沒有/etc/init.d/init.ohasd文件 systemctl start ohasd.service 則會啟動失敗。
2.安裝database軟件時候會報錯:
Error in invoking target 'agent nmhs' of makefile '/u01/app/oracle/product/11.2.0/db_1/sysman/lib/ins_emagent.mk'
復制代碼
解決方法一:
選擇 Continue 繼續,然后打上補丁:19692824
解決方法二:
編輯文件$ORACLE_HOME/sysman/lib/ins_emagent.mk
復制代碼
vi /u01/app/oracle/product/11.2.0/db_1/sysman/lib/ins_emagent.mk
復制代碼
找到 $(MK_EMAGENT_NMECTL) 這一行,在后面添加 -lnnz11 如下:
復制代碼
$(MK_EMAGENT_NMECTL) -lnnz11
然后點擊retry 即可
到此,相信大家對“怎么解決CentOs 7.X安裝Oracle 11g RAC的坑”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。