Weblogic User password Expired
Step-1 : Check the user list and details which all are expired with the below query.
select USERNAME,EXPIRY_DATE,LOCK_DATE,ACCOUNT_STATUS from dba_users;
Step-2 : Reset the password for the expired users
alter user <username> identified by <new password>
Step-3 : To set make the limit of the password as unlimited
alter profile DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;