Wildfly 管理控制台访问被拒绝,权限不足
Wildfly management console Access Denied Insufficient Privileges
我在尝试访问 Wildfly 的管理控制台时收到 "Access Denied: Insufficient privileges to access this interface" 消息(运行 on Ubuntu)。
我还有一个 Apache2 作为 Wildfly 服务器的 ProxyReverse。它获取 alias.domain.com:80 的请求并转发到 localhost:9990.
Wildfly 访问授权仍在使用简单的提供程序,因此 rbac 不是罪魁祸首。或者我相信...
当我访问 alias.domain.com 时,系统提示我输入 user/password,我确实提供了正确的管理员身份验证数据。
任何帮助将不胜感激。
好的,只是想让大家知道问题已通过
解决
ProxyPreserveHost On
在 Apache 会议上。
对于使用 Nginx 的用户,以下指令将有助于解决此错误:
proxy_set_header Host $server_addr:$server_port;
我在尝试访问 Wildfly 的管理控制台时收到 "Access Denied: Insufficient privileges to access this interface" 消息(运行 on Ubuntu)。
我还有一个 Apache2 作为 Wildfly 服务器的 ProxyReverse。它获取 alias.domain.com:80 的请求并转发到 localhost:9990.
Wildfly 访问授权仍在使用简单的提供程序,因此 rbac 不是罪魁祸首。或者我相信...
当我访问 alias.domain.com 时,系统提示我输入 user/password,我确实提供了正确的管理员身份验证数据。
任何帮助将不胜感激。
好的,只是想让大家知道问题已通过
解决ProxyPreserveHost On
在 Apache 会议上。
对于使用 Nginx 的用户,以下指令将有助于解决此错误:
proxy_set_header Host $server_addr:$server_port;