Oracle11g口令過期的解決

2021-07-27 22:17:35 字數 489 閱讀 1123

用oracle使用者登入,

sqlplus "/as sysdba"

先把密碼生命週期時間限制去掉:

alter  profile default  limit password_life_time unlimited;

然後重置一下軟體內部使用賬戶的密碼:

alter user admin1 identified by admin1;

alter user gs1 identified by gs1;

alter geoeast gs1 identified by geoeast;

系統有乙個預設的oracle管理賬戶,admin1,預設密碼是admin1

其它使用者對應的oracle賬戶和linux使用者名稱相同,密碼也相同,如gs1 密碼 gs1

geoeast賬戶的密碼是geoeast

如下面的檔案所示:

…/geoeast/configs/system/geousers.config

Oracle 11g密碼過期問題

oracle 11g預設使用者密碼會在使用180天後過期,我們可以通過dba users資料字典看一下使用者的資訊。sql select username,account status,lock date,expiry date,created,profile from dba users 結果如下...

oracle 11g 使用者密碼過期問題

1 oracle 11g 之前預設的使用者時是沒有密碼過期的限制的,在oracle 11g 中預設的profile啟用了密碼過期時間是180天。如下檢視有效期 select from dba profiles where profile default and resource name passw...

Oracle11 g資料庫過期

公司使用的oracle11 g 32位 資料庫出現有效期過期問題,解決此問題可以使用下面的方法 1 查詢密碼有效期system登入 sql select from dba profiles where profile default and resource name password life t...