Oracle 11g 使用者名稱密碼180天到期處理

來源:互聯網
上載者:User

Oracle 11g 使用者名稱密碼180天到期處理

出現Oracle 11g 使用者名稱密碼到期問題,處理方式如下:

1:先登陸控制台進行驗證,weblogic內建的JDBC測試,可以驗證資料庫連通性。同時應用日誌應該會出現ORA-28002的密碼到期的錯誤提示。

2:也可以登陸資料庫,使用原始使用者進行串連嘗試conn username/MIMA . 也會出現ORA-28002的密碼到期提示。

具體操作如下:

Oracle  11g預設存在密碼180天到期的策略,需要如下修改,在一台節點做就行,不用重啟,立即生效

如下操作都要使用資料庫管理員帳戶進行操作。

#1:查詢確認策略,如果出現180天字樣,表示存在預設配置:(也可以使用dba_users試圖查看)

sqlplus / as sysdba

select * from dba_profiles where profile='DEFAULT' and resource_name='PASSWORD_LIFE_TIME';

#2:修改配置策略

alter profile default limit PASSWORD_LIFE_TIME UNLIMITED;

修改後執行上述查詢操作,驗證,結果為UNLIMITED 盡可。

3:重設密碼(如果是oracle11g必須要找到原始密碼)

alter user cyjygk3 identified by 原始密碼; 如果密碼中存在特殊字元,需要用""引起來。

修改完成後,進行驗證。

如果weblogic配置了資料庫重連機制,理論上不需要重啟節點即可恢複。如果沒有配置重連策略,必須重啟服務。

相關文章

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.