Oracle 密碼驗證方式
驗證方式:作業系統驗證方式
口令檔案驗證方式(防止系統管理員誤操作你的資料庫)
================
1:作業系統驗證方式
================
[oracle@localhost ~]$ sqlplus
SQL*Plus: Release 11.2.0.3.0 Production on Sun Dec 30 16:58:46 2001
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Enter user-name: / as sysdba
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> show user
USER is "SYS"
特點:不需要加密碼,直接可以以sysdba的身份登入,只要能進入你的作業系統,就能以dba身份登入到你的oracle
用途:當你即是系統管理員,又是oracle DBA時,可以採用這種方法
如果你是DBA,但不是系統管理員時,不能用這種驗證方法,因為其他人只要能進入你的系統就能登入你的ORACLE;
SQL> conn system/oracle -------dba有sys和system,不寫as sysdba預設是以一般使用者身份登入
Connected.
SQL> shutdown
ORA-01031: insufficient privileges ------沒有關閉資料庫的許可權
SQL> conn system/oracle as sysdba ---------以DBA的身份登入
Connected.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> conn scott/tiger -----普通使用者沒有關閉資料庫的許可權
Connected.
SQL> shutdown immediate
ORA-01031: insufficient privileges
SQL> conn system/oracle as sysdba
Connected.
SQL> grant sysdba to scott; ---------給scott授予dba的許可權
Grant succeeded.
SQL> conn scott/tiger
Connected.
SQL> shutdown immediate
ORA-01031: insufficient privileges
SQL> conn scott/tiger as sysdba ----------scott以dba的身份登入後可以關閉資料庫
Connected.
SQL> shutdown immediate
Database closed.
Database dismounted.
ORACLE instance shut down.
================
2:口令檔案驗證方式
================
口令檔案
使用orapwd工具生成口令檔案
在引數檔案中改:
set remote_login_passwordfile=exclusive
windows ORACLE_HOME/Database/pwdoracl.ora(pwd+sid.ora)
linux ORACLE_HOME/dbs/orapworacl(orapw+sid)
1:
SQL> show parameter remote
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
remote_dependencies_mode string TIMESTAMP
remote_listener string
remote_login_passwordfile string EXCLUSIVE
remote_os_authent boolean FALSE
remote_os_roles boolean FALSE
result_cache_remote_expiration integer 0
2:
如果remote_login_passwordfile的值不是EXCLUSIVE,那麼需要手動改為EXCLUSIVE;
[oracle@ooo ~]$ cd $ORACLE_HOME
[oracle@ooo 11.2.0]$ cd dbs/
[oracle@ooo dbs]$ ls
aaspfileorcl.ora init.ora lkORCL orapworcl000
hc_orcl.dat initorcl.ora orapworcl spfileorcl.ora
[oracle@ooo dbs]$ vim initorcl.ora -------將excluesive寫入到啟動庫第一步讀到的引數檔案中
*.remote_login_passwordfile='EXCLUSIVE'
3:
[oracle@chen dbs]$ orapwd file=/u01/app/oracle/product/11.2.0/dbs/orapworcl password=test
[oracle@chen dbs]$ ls
hc_oracl.dat initoracl.ora orapworacl spfileoracl.ora
init.ora lkORCL orapworcl -----------生成密碼檔案
[oracle@chen ~]$ rlwrap sqlplus
SQL*Plus: Release 11.2.0.3.0 Production on Fri Jun 6 15:19:31 2014
Copyright (c) 1982, 2011, Oracle. All rights reserved.
Enter user-name: sys/aaaaaa as sysdba ---------輸入任意口令都能進入?如何解決?
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> show user
USER is "SYS"
4:解決辦法
[oracle@ooo admin]$ pwd
/u01/app/oracle/product/11.2.0/network/admin
[oracle@ooo admin]$ vim sqlnet.ora
SQLNET.AUTHENTICATION_SERVICES= (NONE) ----------新增這一行,登入時不是系統驗證,而是oracle驗證登入(防止系統管理員登入你的資料庫),註釋這一行又變化系統驗證方式
NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
ADR_BASE = /u01/app/oracle
[oracle@localhost ~]$ rlwrap sqlplus
Enter user-name: / as sysdba
ERROR:
ORA-01031: insufficient privileges --------系統驗證方式沒有透過,需要口令
Enter user-name: sys/aaaaa as sysdba
ERROR:
ORA-01017: invalid username/password; logon denied --------密碼輸入錯誤登入不上
[oracle@localhost ~]$ rlwrap sqlplus
Enter user-name: sys/test as sysdba ----------密碼正確,登入成功
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
歡迎關注我的微信公眾號"IT小Chen",共同學習,共同成長!!!
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29785807/viewspace-1260306/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORACLE 密碼驗證函式Oracle密碼函式
- Oracle 8i 密碼驗證Oracle密碼
- oracle 開啟複雜密碼驗證Oracle密碼
- ORACLE密碼錯誤驗證延遲Oracle密碼
- oracle本地驗證和密碼檔案Oracle密碼
- Oracle的驗證方式Oracle
- Oracle資料庫密碼延遲驗證Oracle資料庫密碼
- Oracle驗證方式詳解Oracle
- oracle驗證方式簡介Oracle
- 靜態密碼已經”OUT”探索身份驗證新方式密碼
- 作業系統認證與ORACLE密碼檔案認證方式作業系統Oracle密碼
- 【PASSWORD】Linux環境下使用密碼驗證方式重置SYS使用者密碼Linux密碼
- oracle 11g 密碼延遲驗證問題Oracle密碼
- ACCESS 密碼驗證/文字驗證中的小坑密碼
- uniapp 完成兩種方式登入 驗證碼登入 密碼登入APP密碼
- ORACLE 11g的密碼錯誤延時驗證Oracle密碼
- Oracle11g新增密碼錯誤延遲驗證Oracle密碼
- 無密碼驗證:客戶端密碼客戶端
- 自定義密碼驗證函式密碼函式
- orapwd建立密碼及驗證方法密碼
- 直播商城原始碼,驗證方式之一,滑塊驗證原始碼
- ORACLE登入驗證方式的詳解Oracle
- 強密碼驗證正規表示式密碼
- 賬戶、密碼格式···正則驗證密碼
- sqlnet.ora 驗證oracle 登陸方式SQLOracle
- JQuery表單驗證(包括:使用者名稱,手機號,密碼,確認密碼,驗證碼60s)jQuery密碼
- jquery 驗證密碼一致性jQuery密碼
- 取消 11G延遲密碼驗證密碼
- 使用Docker部署帶密碼驗證的RedisDocker密碼Redis
- ORACLE密碼檔案和登入方式Oracle密碼
- 安裝Oracle RAC時,不能驗證ASMSNMP密碼問題的解決OracleASM密碼
- Flutter 密碼輸入框 驗證碼輸入框Flutter密碼
- Exadata修改sshd密碼驗證方式 延遲10分鐘關閉 明明密碼對了卻登入不上密碼
- swift 郵箱、密碼、手機號、身份證驗證正則Swift密碼
- 直播系統原始碼,選擇驗證方式時選擇郵箱驗證原始碼
- Oracle11G密碼延遲驗證導致的系統HANG住Oracle密碼
- jQuery Validate驗證確認密碼是否相同jQuery密碼
- 5.6.25後 mysqld_multi 密碼驗證失敗MySql密碼