简体   繁体   English

无法启动Weblogic服务器

[英]Unable to start weblogic server

I am getting an error while starting a Weblogic server. 启动Weblogic服务器时出现错误。

ORA-28000:the account is locked
ORA-01017:invalid username/password;logon denied.

Initially I received an ORA-28001 error. 最初,我收到一个ORA-28001错误。

Steps that I tried: 我尝试过的步骤:

  • change Database system password. 更改数据库系统密码。
  • reset passwords in JDBC folder XML files. 重置JDBC文件夹XML文件中的密码。

Your account is locked. 您的帐户已被锁定。 Simplest is to change the password and unlock the account again. 最简单的方法是更改​​密码并再次解锁帐户。

alter user USERNAME identified by "SecretP@ssword" account unlock;

But you'll need DBA privileges to do so on the database. 但是您需要具有DBA特权才能在数据库上执行此操作。

ps. PS。 You need to change the password for the USERNAME you are trying to connect with. 您需要更改您尝试连接的USERNAME的密码。 Not the system password. 不是system密码。 If you are indeed using system as your user, you will run into issues later. 如果确实以system用户身份使用system ,则稍后会遇到问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM