真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

OracleRAC環(huán)境參數(shù)文件的啟動(dòng)順序是什么

本篇內(nèi)容介紹了“Oracle RAC環(huán)境參數(shù)文件的啟動(dòng)順序是什么”的有關(guān)知識(shí),在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!

專注于為中小企業(yè)提供網(wǎng)站設(shè)計(jì)制作、網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)臨泉免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上千余家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

Oracle RAC啟動(dòng)時(shí),如何找到參數(shù)文件位置的。

   在單機(jī)環(huán)境下,Oracle查找啟動(dòng)參數(shù)文件的順序是   spfile.ora ---> spfile>.ora ---->.init.ora

下面我們測(cè)試在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ù)庫啟動(dòng)成功。使用/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ù)庫啟動(dòng)成功,使用 /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

也啟動(dòng)成功,使用的是ASM里的參數(shù)文件

我們將ORACLE_SID修改成任意值,啟動(dòng)數(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磁盤中的文件地址。使用這個(gè)文件,可以把參數(shù)文件指向任意一個(gè)地方。

在Oracle RAC環(huán)境下,Oracle在啟動(dòng)的過程中查找啟動(dòng)參數(shù)文件與單機(jī)環(huán)境下是一樣的:

spfile.ora ---> spfile>.ora ---->init.ora

在使用ASM保存啟動(dòng)參數(shù)文件的時(shí)候,參數(shù)文件的位置被保存在了init.ora文件中

“Oracle RAC環(huán)境參數(shù)文件的啟動(dòng)順序是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!


分享名稱:OracleRAC環(huán)境參數(shù)文件的啟動(dòng)順序是什么
本文鏈接:http://weahome.cn/article/ggdpso.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部