[轉]Oracle中password file的作用及說明

來源:互聯網
上載者:User

標籤:style   http   color   使用   os   io   檔案   資料   

在資料庫沒有啟動之前,資料庫內建使用者是無法通過資料庫來驗證身份的

口令檔案中存放sysdba/sysoper使用者的使用者名稱及口令
允許使用者通過口令檔案驗證,在資料庫未啟動之前登陸
從而啟動資料庫

如果沒有口令檔案,在資料庫未啟動之前就只能通過作業系統認證.

使用Rman,很多時候需要在nomount,mount等狀態對資料庫進行處理
所以通常要求sysdba許可權如果屬於本地DBA組,可以通過作業系統認證登陸
如果是遠程sysdba登陸,需要通過passwordfile認證.

1.remote_login_passwordfile = NONE

此時停用口令檔案驗證,Oracle資料庫不允許遠程SYSDBA/SYSOPER身份登入
無法通過遠程進行資料庫起停等操作管理

local:

 

[[email protected] oracle]$ sqlplus "/ as sysdba"SQL*Plus: Release 9.2.0.3.0 - Production on Thu Apr 15 09:58:45 2004Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.Connected to:Oracle9i Enterprise Edition Release 9.2.0.3.0 - ProductionWith the Partitioning, OLAP and Oracle Data Mining optionsJServer Release 9.2.0.3.0 - ProductionSQL> alter user sys identified by oracle;User altered.SQL> show parameter passNAME                      TYPE   VALUE--------------------- ----------- ------------------------------remote_login_passwordfile string NONE      

remote:

 

E:\Oracle\ora92\bin>sqlplus /nolog

SQL*Plus: Release 9.2.0.4.0 - Production on 星期四 4月 15 09:39:22 2004

Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

SQL> connect sys/[email protected] as sysdba
ERROR:
ORA-01017: invalid username/password; logon denied

此處實際上是無法通過口令檔案驗證

2.remote_login_passwordfile = exclusive

 

 

 

SQL> alter system set remote_login_passwordfile=exclusive scope=spfile;System altered.SQL> startup force;ORACLE instance started.Total System Global Area 131142648 bytesFixed Size 451576 bytesVariable Size 104857600 bytesDatabase Buffers 25165824 bytesRedo Buffers 667648 bytesDatabase mounted.Database opened.SQL> show parameter passNAME TYPE VALUE------------------------------------ ----------- ------------------------------remote_login_passwordfile string EXCLUSIVESQL> alter user sys identified by oracle;User altered.

remote:

 

 

E:\Oracle\ora92\bin>sqlplus /nolog

SQL*Plus: Release 9.2.0.4.0 - Production on 星期四 4月 15 09:47:11 2004

Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

SQL> connect sys/[email protected] as sysdba
已串連。
SQL> show user
USER 為"SYS"
SQL>

 

這實際上就是通過口令檔案驗證登入的

3.進一步測試

如果此時我們刪除passwdfile,sysdba/sysoper將無法認證,也就無法登陸資料庫

Server:

 

SQL> !
[[email protected] oracle]$ cd $ORACLE_HOME/dbs
[[email protected] dbs]$ ls orapwhsjf
orapwhsjf
[[email protected] dbs]$ mv orapwhsjf orapwhsjf.bak
[[email protected] dbs]$ 



Remote: 

 

E:\Oracle\ora92\bin>sqlplus /nolog

SQL*Plus: Release 9.2.0.4.0 - Production on 星期四 4月 15 09:50:14 2004

Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

SQL> connect sys/[email protected] as sysdba
ERROR:
ORA-01031: insufficient privileges


SQL>



這實際上就是無法通過口令檔案驗證身份

 

4.如果丟失了passwdfile

如果使用passwdfile卻意外丟失,此時將不能啟動資料庫

 



SQL> startup force;
ORACLE instance started.

Total System Global Area 131142648 bytes
Fixed Size 451576 bytes
Variable Size 104857600 bytes
Database Buffers 25165824 bytes
Redo Buffers 667648 bytes
ORA-01990: error opening password file ‘/opt/oracle/product/9.2.0/dbs/orapw‘
ORA-27037: unable to obtain file status
Linux Error: 2: No such file or directory
Additional information: 3

 



此時可以通過orapwd重建口令檔案來解決
此處我們恢複口令檔案既可

 

SQL> !
[[email protected] oracle]$ mv $ORACLE_HOME/dbs/orapwhsjf.bak orapwhsjf
[[email protected] oracle]$ exit
exit

SQL> alter database open;

Database altered.

SQL>

 




大致就是如此.

 

5. remote_login_passwordfile = shared

我們看一下Oracle9i文檔中的說明:

SHARED

More than one database can use a password file. However, the only user recognized by the password file is SYS.

意思是說多個資料庫可以共用一個口令檔案,但是只可以識別一個使用者:SYS

 

SQL> select * from v$pwfile_users;

USERNAME SYSDB SYSOP
------------------------------ ----- -----
SYS TRUE TRUE

SQL> grant sysdba to eygle;
grant sysdba to eygle
*
ERROR at line 1:
ORA-01994: GRANT failed: cannot add users to public password file

SQL> show parameter password

NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
remote_login_passwordfile string SHARED

 

我們看到,此時的口令檔案中是不能添加使用者的.

很多人的疑問在於:口令檔案的預設名稱是orapw<sid>,怎麼能夠共用?

實際上是這樣的: Oracle資料庫在啟動時,首先尋找的是orapw<sid>的口令檔案,如果該檔案不存在,則開始尋找,orapw的口令檔案
如果口令檔案命名為orapw,多個資料庫就可以共用.

我們看一下測試:

 

[[email protected] dbs]$ sqlplus "/ as sysdba"SQL*Plus: Release 9.2.0.3.0 - Production on Tue Jul 6 09:40:34 2004Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.Connected to:Oracle9i Enterprise Edition Release 9.2.0.3.0 - ProductionWith the Partitioning, OLAP and Oracle Data Mining optionsJServer Release 9.2.0.3.0 - ProductionSQL> shutdown immediateDatabase closed.Database dismounted.ORACLE instance shut down.SQL> ![[email protected] dbs]$ lshsjf  initdw.ora  inithsjf.ora  init.ora  lkHSJF  orapwhsjf  spfilehsjf.ora[[email protected] dbs]$ mv orapwhsjf orapwhsjf.bak[[email protected] dbs]$ exitexitSQL> startupORACLE instance started.Total System Global Area  235999908 bytesFixed Size                   451236 bytesVariable Size             201326592 bytesDatabase Buffers           33554432 bytesRedo Buffers                 667648 bytesORA-01990: error opening password file ‘/opt/oracle/product/9.2.0/dbs/orapw‘--這是最後尋找的檔案ORA-27037: unable to obtain file statusLinux Error: 2: No such file or directoryAdditional information: 3    

 

我們建立orapw口令檔案,這時候可以開啟資料庫.

SQL> ![[email protected] dbs]$ lshsjf  initdw.ora  inithsjf.ora  init.ora  lkHSJF  orapwhsjf.bak  spfilehsjf.ora[[email protected] dbs]$ cp orapwhsjf.bak orapw[[email protected] dbs]$ exitexitSQL> alter database open;Database altered.SQL> show parameter passwNAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------remote_login_passwordfile            string      SHAREDSQL>    

 

那麼你可能會有這樣的疑問,多個Exclusive的資料庫是否可以共用一個口令檔案(orapw)呢?

我們繼續這個實驗:

SQL> show parameter password

NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
remote_login_passwordfile string SHARED

[[email protected] dbs]$ strings orapw
]\[Z
ORACLE Remote Password file
INTERNAL
AB27B53EDC5FEF41
8A8F025737A9097A

注意這裡僅記錄著INTERNAL/SYS的口令

REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE 時

SQL> alter system set remote_login_passwordfile=exclusive scope=spfile;

System altered.

SQL> startup force;
ORACLE instance started.

Total System Global Area 235999908 bytes
Fixed Size 451236 bytes
Variable Size 201326592 bytes
Database Buffers 33554432 bytes
Redo Buffers 667648 bytes
Database mounted.
Database opened.
SQL> !

[[email protected] bin]$ cd $ORACLE_HOME/dbs
[[email protected] dbs]$ strings orapw
]\[Z
ORACLE Remote Password file
HSJF
INTERNAL
AB27B53EDC5FEF41
8A8F025737A9097A
[[email protected] dbs]$ exit
exit

注意這裡,以EXCLUSIVE 方式啟動以後,執行個體名稱資訊被寫入口令檔案.

此時如果有其他執行個體以Exclusive模式啟動仍然可以使用這個口令檔案,口令檔案中的執行個體名稱同時被改寫.

也就是說,資料庫只在啟動過程中才讀取口令檔案,資料庫運行過程中並不鎖定該檔案,類似於pfile/spfile檔案.

SQL> select * from v$pwfile_users;

USERNAME SYSDB SYSOP
------------------------------ ----- -----
SYS TRUE TRUE

SQL> grant sysdba to eygle;

Grant succeeded.

SQL> select * from v$pwfile_users;

USERNAME SYSDB SYSOP
------------------------------ ----- -----
SYS TRUE TRUE
EYGLE TRUE FALSE

SQL> !
[[email protected] bin]$ cd $ORACLE_HOME/dbs
[[email protected] dbs]$ strings orapw
]\[Z
ORACLE Remote Password file
HSJF
INTERNAL
AB27B53EDC5FEF41
8A8F025737A9097A
>EYGLE
B726E09FE21F8E83


注意此時可以增加SYSDBA使用者,並且這些資訊可以被寫入到口令檔案.

一旦口令檔案中增加了其他SYSDBA使用者,此檔案不再能夠被其他Exclusive的執行個體共用.

實際上,口令檔案對於其他使用者來說就是啟到了一個 sudo 的作用.

6.重建口令檔案

如果口令檔案丟失,可以使用orapwd可以重建口令檔案,文法如下:

[[email protected] oracle]$ orapwd
Usage: orapwd file=<fname> password=<password> entries=<users>

where
file - name of password file (mand),
password - password for SYS (mand),
entries - maximum number of distinct DBA and OPERs (opt), 
There are no spaces around the equal-to (=) character.

 

 

 

轉自:http://www.eygle.com/faq/passwordfile.htm

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.