Oracle 本地验证和密码文件
生活随笔
收集整理的這篇文章主要介紹了
Oracle 本地验证和密码文件
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
oracle的密碼文件作用是進行DBA權限的身份驗證。 當數據庫開啟到mount狀態時,數據庫必須要具備一個很重要的密碼文件/口令文件,這個文件默認是存放在$ORACLE_HOME/dbs下的,缺省名稱為orapw。如果密碼文件丟失了,那么數據庫啟動到mount的時候就會出錯。 密碼文件里面存放了sysdba/sysoper用戶的用戶名和口令: [oracle@localhost dbs]$ strings orapworcl ORACLE Remote Password file
INTERNAL
6A75B1BBE50E66AB
4DE42795E66117AE
在數據庫沒有啟動之前,數據庫的內建用戶是無法通過數據庫本身來驗證身份的,通過密碼文件, oracle就可以實現對用戶的驗證,在數據庫未啟動之前登錄,進而啟動數據庫。 密碼文件是可以通過orapwd工具重建的,所以在通常的備份策略中可以不必包含密碼文件。 oracle有兩種認證方式:操作系統認證(要求該用戶屬于本地DBA組,然后通過操作系統認證登錄oracle,從而啟動數據庫),密碼文件認證 oracle使用哪種認證方式決定在于兩個參數: (1)remote_login_passwordfile=none|exclusive|shared none:不使用密碼文件認證。如果選擇了這個值,就相當于屏蔽了密碼文件的內容了。 exclusive:要密碼文件認證,自己獨占使用(默認值) shared:要密碼文件認證,不同實例dba用戶可以共享密碼文件 (2)位于$ORACLE_HOME/network/admin/sqlnet.ora SQLNET.AUTHENTICATION_SERVICES=none|all|nts none:關閉操作系統認證,只能密碼認證 all:用于linux/unix平臺,關閉本機密碼文件認證,采用操作系統認證 nts:用于windows平臺 實驗: oracle服務器位于Linux操作系統,客戶端位于windows操作系統。 首先,查看remote_login_passwordfile參數值: SYS@orcl 11-SEP-14>show parameter remote_login_passwordfileNAME TYPE VALUE
------------------------------------ ----------- ------------------------------
remote_login_passwordfile string EXCLUSIVE
connected.
在數據庫中創建一個新的用戶并授予sysdba的權限: SYS@orcl 11-SEP-14>create user sunny identified by sunny;User created. SYS@orcl 11-SEP-14>grant sysdba to sunny;Grant succeeded.
找到$ORACLE_HOME/network/admin目錄下的sqlnet.ora,在文件末尾加上:
SQLNET.AUTHENTICATION_SERVICES=NONE #Purpose: Use parameter SDP.PF_INET_SDP to specify the protocol family or # address family constant for the SDP protocol on your system. # #Supported since: 11.0 # SQLNET.AUTHENTICATION_SERVICES=none 即使用密碼文件認證方式,那么如果我們在本地使用sqlplus "/as sysdba"就會提示錯誤信息: [oracle@localhost ~]$ sqlplus "/as sysdba" SQL*Plus: Release 11.2.0.1.0 Production on Fri Sep 12 22:45:56 2014Copyright (c) 1982, 2009, Oracle. All rights reserved.ERROR: ORA-01031: insufficient privileges 此時我們必須使用sys用戶名和密碼才可以登錄: [oracle@localhost ~]$ sqlplus "sys/sys as sysdba"SQL*Plus: Release 11.2.0.1.0 Production on Fri Sep 12 22:47:08 2014Copyright (c) 1982, 2009, Oracle. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options進入sqlnet.ora把SQLNET.AUTHENTICATION_SERVICES=none改成“=all”,存盤退出。
再次使用sqlplus "/as sysdba"登錄的時候使用的就是本地認證: [oracle@localhost ~]$ sqlplus "/as sysdba"SQL*Plus: Release 11.2.0.1.0 Production on Fri Sep 12 22:49:51 2014Copyright (c) 1982, 2009, Oracle. All rights reserved.Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production With the Partitioning, OLAP, Data Mining and Real Application Testing options另外,我們可以使用orapwd這個工具來生成密碼文件。
首先看看orapwd的用法: [oracle@localhost ~]$ orapwd Usage: orapwd file= entries= force= ignorecase= nosysdba=wherefile - name of password file (required),password - password for SYS will be prompted if not specified at command line,entries - maximum number of distinct DBA (optional),force - whether to overwrite existing file (optional),ignorecase - passwords are case-insensitive (optional),nosysdba - whether to shut out the SYSDBA logon (optional Database Vault only).There must be no spaces around the equal-to (=) character. 我們把位于$ORACLE_HOME/dbs目錄下的原orapworcl移到其它目錄。注意,remote_login_passwordfile=exclusive,且sqlnet.ora中SQLNET.AUTHENTICATION_SERVICES=none 在windows上的客戶端嘗試遠程oracle: SQL> conn sys/sys@win as sysdba ERROR: ORA-01031: insufficient privileges 現在我們使用orapwd來重建密碼文件: [oracle@localhost dbs]$ orapwd file=$ORACLE_HOME/dbs/orapworcl password=sys entries=5 [oracle@localhost dbs]$ ls hc_DBUA0.dat initorcl lkORCL peshm_DUMMY_0 spfileorcl.ora hc_orcl.dat initorcl.ora orapworcl peshm_orcl_0 init.ora lkDUMMY peshm_DBUA0_0 snapcf_orcl.f 再次嘗試遠程連接oracle: SQL> conn sys/sys@win as sysdbaconnected.
看看這個密碼文件的內容:
[oracle@localhost dbs]$ strings orapworcl ORACLE Remote Password file INTERNAL 6A75B1BBE50E66AB 4DE42795E66117AE?
在數據庫中創建一個新的用戶并授予sysdba的權限: SYS@orcl 11-SEP-14>create user sunny identified by sunny;User created. SYS@orcl 11-SEP-14>grant sysdba to sunny;Grant succeeded.
再去看看orapworcl的內容,發現多了sunny這個用戶的信息:
[oracle@localhost dbs]$ strings orapworclORACLE Remote Password file INTERNAL 6A75B1BBE50E66AB 4DE42795E66117AE SUNNY 53801465943A91BE 也可以通過動態性能視圖v$pwfile_users查看有哪些用戶是擁有sysdba權限的: SYS@orcl 11-SEP-14>select * from v$pwfile_users;USERNAME SYSDB SYSOP SYSAS ------------------------------ ----- ----- ----- SYS TRUE TRUE FALSE SUNNY TRUE FALSE FALSE?
轉載于:https://www.cnblogs.com/priestess-zhao/p/8183447.html
總結
以上是生活随笔為你收集整理的Oracle 本地验证和密码文件的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 在面试中如何展示虚拟机和内存调优技能
- 下一篇: vim的介绍与常用的命令