本篇內(nèi)容介紹了“Oracle RAC環(huán)境參數(shù)文件的啟動順序是什么”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)建站主營建湖網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件定制開發(fā),建湖h5小程序定制開發(fā)搭建,建湖網(wǎng)站營銷推廣歡迎建湖等地區(qū)企業(yè)咨詢Oracle RAC啟動時,如何找到參數(shù)文件位置的。
在單機環(huán)境下,Oracle查找啟動參數(shù)文件的順序是 spfile<Oracle_SID>.ora ---> spfile>.ora ---->.init<Oracle_SID>.ora
下面我們測試在RAC環(huán)境下的參數(shù)文件查找順序
我們將ASM中的參數(shù)文件拷貝至$ORACLE_HOME/dbs/目錄下 ,并改名為spfileorcl1.ora,在ASM中的文件名為 spfileorcl.ora
[oracle@rac1 dbs]$ echo $ORACLE_SID orcl1 [oracle@rac1 dbs]$ pwd /u01/app/oracle/product/11.2.0/dbhome_1/dbs [oracle@rac1 dbs]$ ll total 24 -rw-rw---- 1 oracle asmadmin 1544 Jan 10 22:04 hc_orcl1.dat -rw-r--r-- 1 oracle oinstall 2851 May 15 2009 init.ora -rw-r----- 1 oracle oinstall 37 Dec 23 18:31 initorcl1.ora -rw-r----- 1 oracle oinstall 1536 Dec 23 17:55 orapworcl1 -rw-r----- 1 oracle oinstall 4608 Jan 10 22:03 spfileorcl1.ora [oracle@rac1 dbs]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Thu Jan 10 22:25:00 2019 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to an idle instance. SQL> startup ORACLE instance started. Total System Global Area 784998400 bytes Fixed Size 2257352 bytes Variable Size 616566328 bytes Database Buffers 163577856 bytes Redo Buffers 2596864 bytes Database mounted. Database opened. SQL> show parameter spfile NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ spfile string /u01/app/oracle/product/11.2.0 /dbhome_1/dbs/spfileorcl1.ora
數(shù)據(jù)庫啟動成功。使用/u01/app/oracle/product/11.2.0 /dbhome_1/dbs/spfileorcl1.ora 參數(shù)文件
修改sspfileorcl1.ora 文件名為 spfile.ora 重啟數(shù)據(jù)庫 [oracle@rac1 dbs]$ mv spfileorcl1.ora spfile.ora [oracle@rac1 dbs]$ ll total 24 -rw-rw---- 1 oracle asmadmin 1544 Jan 10 22:25 hc_orcl1.dat -rw-r--r-- 1 oracle oinstall 2851 May 15 2009 init.ora -rw-r----- 1 oracle oinstall 37 Dec 23 18:31 initorcl1.ora -rw-r----- 1 oracle oinstall 1536 Dec 23 17:55 orapworcl1 -rw-r----- 1 oracle oinstall 4608 Jan 10 22:28 spfile.ora [oracle@rac1 dbs]$ SQL> shutdown immediate Database closed. Database dismounted. ORACLE instance shut down. SQL> startup ORACLE instance started. Total System Global Area 784998400 bytes Fixed Size 2257352 bytes Variable Size 616566328 bytes Database Buffers 163577856 bytes Redo Buffers 2596864 bytes Database mounted. Database opened. SQL> show parameter spfile NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ spfile string /u01/app/oracle/product/11.2.0/dbhome_1/dbs/spfile.ora
數(shù)據(jù)庫啟動成功,使用 /u01/app/oracle/product/11.2.0/dbhome_1/dbs/spfile.ora文件
修改spfile.ora 文件名為spfile1.ora 重啟數(shù)據(jù)庫 [oracle@rac1 dbs]$ mv spfile.ora spfile1.ora SQL> startup ORACLE instance started. Total System Global Area 784998400 bytes Fixed Size 2257352 bytes Variable Size 616566328 bytes Database Buffers 163577856 bytes Redo Buffers 2596864 bytes Database mounted. Database opened. SQL> show parameter spfile NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ spfile string +DATA01/orcl/spfileorcl.ora
也啟動成功,使用的是ASM里的參數(shù)文件
我們將ORACLE_SID修改成任意值,啟動數(shù)據(jù)庫 export ORACLE_SID=orcl11 SQL> startup ORA-01078: failure in processing system parameters LRM-00109: could not open parameter file '/u01/app/oracle/product/11.2.0/dbhome_1/dbs/initorcl11.ora'
提示找不到 initorcl11.ora 文件,其中orcl11是我們剛剛修改的ORACLE_SID值,那么我們看看正確的文件initorcl1.ora的文件是什么呢。
[oracle@rac1 dbs]$ cat initorcl1.ora SPFILE='+DATA01/orcl/spfileorcl.ora'
原來是指向ASM磁盤中的文件地址。使用這個文件,可以把參數(shù)文件指向任意一個地方。
在Oracle RAC環(huán)境下,Oracle在啟動的過程中查找啟動參數(shù)文件與單機環(huán)境下是一樣的:
spfile<Oracle_SID>.ora ---> spfile>.ora ---->init<Oracle_SID>.ora
在使用ASM保存啟動參數(shù)文件的時候,參數(shù)文件的位置被保存在了init<Oracle_SID>.ora文件中
“Oracle RAC環(huán)境參數(shù)文件的啟動順序是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
文章題目:OracleRAC環(huán)境參數(shù)文件的啟動順序是什么-創(chuàng)新互聯(lián)
網(wǎng)頁網(wǎng)址:http://aaarwkj.com/article4/hosie.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、定制網(wǎng)站、App開發(fā)、網(wǎng)站建設(shè)、企業(yè)建站、網(wǎng)頁設(shè)計公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)