程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> Oracle密碼文件學習心得

Oracle密碼文件學習心得

編輯:Oracle數據庫基礎

下面總結了一些Oracle密碼文件的學習心得,希望對大家有所幫助。

創建Oracle密碼文件的命令

orapwd  file=<>  passWord=<> entrIEs=最大數目

這裡的file命名規則在unix/Linux下 orapw<Oracle_SID>,在Windows下為 pwd<SID>.ora

具體資料看下面的描述(這是pub中一個網友的總結)

1. unix 環境:

查了Administrator‘s Reference 10g Release 2 (10.2) for UNIX-Based Operating Systems.

1. Log in as the Oracle software owner. (以Oracle管理員身份登入)

2. Use the orapwd utility to create the passWord file as follows(使用orapwd功能創建密碼文件):

$ $Oracle_HOME/bin/orapwd file=filename password=passWord entrIEs=max_users……

filename The name of the file in which passWord information is written(filename指密碼信息保存文件的文件名)

The name of the file must be orapwsid, and you must supply the full path name. Its contents are encrypted. Typically, the passWord file is created in the $ORACLE_HOME/dbs directory.(文件名必須為orapwsid,並需要提供完整路徑。內容是加密的。通常情況下,密碼文件被創建在$Oracle_HOME/dbs路徑下。)

請注意黑體字, 所以unix環境中, passWord file 一定是要用 orapw<SID>, 沒有例外。

2. Windows 環境:

查了Platform. Guide 10g Release 2 (10.2) for Microsoft Windows (32-Bit) (沒查64-bit)

To create and populate a passWord file:

(1). Create a password file with the PassWord Utility:

C:> orapwd FILE=PWDsid.ora PASSWORD=passWord ENTRIES=max_users

where

| FILE specifIEs the passWord filename.

| SID identifIEs the database instance.

| PASSWORD sets the passWord for account SYS.

| ENTRIES sets maximum number of entrIEs in passWord file. This corresponds to maximum number of distinct users allowed to connect to the database simultaneously with either the SYSDBA or the SYSOPER DBA privilege.

(2). Set initialization parameter file parameter REMOTE_LOGIN_PASSWordFILE to exclusive, shared, or none.

In search of the passWord file, Oracle Database looks in the registry for the value of parameter

ORA_SID_PWFILE. If no value is specifIEd, then it looks in the registry for the

value of parameter ORA_PWFILE, which points to a file containing usernames,

passWords, and privileges. If that is not set, then it uses the default:

Oracle_BASEORACLE_HOMEDATABASEPWDsid.ORA.

The default value is shared.

請注意黑體字, Windows 環境中, 很大的部分是基於 registry 中變量 ora_sid_pwfile 或者 ora_pwfile 的設置, 缺省的值, 正如paulyibinyi兄弟指出的, 是 pwd<SID>.ora (unix中是沒有這個。ora後綴的)。

二、在Windows下對於connect /as sysdba及其它用戶可以不用密碼就能登錄的問題

1.這是因為Oracle采用了 OS認證的方式,具體的可以查看 sqlnet.ora具體同容如下

SQLNET.AUTHENTICATION_SERVICES= (NTS)

將其改成SQLNET.AUTHENTICATION_SERVICES= (NONE)

這樣就是Oracle認證方式了

2.因為用的OS認證方式,可以在操作系統->控制面版->計算機管理->用戶 將當前用戶的屬性組 ORA_DBA去掉,這時如果沒有用戶名及密碼則不可以。

如下:

SQL> connect /as sysdba ERROR:ORA-01031: insufficIEnt privileges

SQL> connect sys/Oracle as sysdba

已連接。

三、利用alter user identified by ……來修改密碼alter user sys identifIEd by abc一下,就連數據庫中的密碼和密碼文件中的密碼一起改成abc了;

四、如果Oracle密碼文件丟失了如何辦?

利用 orapwd重新創建一個就可以了。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved