我刚刚在领域部分添加了一个新的身份验证提供程序。这个新的提供程序是一个自定义LDAP服务器,现在不在线,因此无法访问。问题是,如果我尝试访问weblogic控制台,它会给我一个500内部服务器错误。
页面中显示的消息:
baseUrl
例外:
Internal Server Error
The server encountered an unexpected condition which prevented it from fulfilling the request.
The best thing to do is start at the Home page or try the browser back button.
如何再次访问控制台?
答案 0 :(得分:1)
在手动修改config.xml
您可以停止AdminServer
。然后修改config.xml
并删除您添加的新authentication provider
的设置。
在xml中查找以下块:
<sec:authentication-provider xsi:type="wls:ldap-authenticatorType">
...
</sec:authentication-provider>
删除此项并重新启动AdminServer
。