Wildfly Remote Access Denied Insufficient Privileges

I get an "Access Denied: Insufficient permission to access this interface" message when trying to access Wildfly's management console (works on Ubuntu).

I also got Apache2 acting as ProxyReverse for Wildfly server. It receives requests for alias.domain.com:80 and redirects to localhost: 9990.

Wildfly's access permission still uses a simple provider, so rbac is not the culprit. Or do I believe ...

When I access alias.domain.com I will be prompted for a username / password and I will supply the correct admin credentials.

Any help would be appreciated.

+3


source to share


2 answers


OK, just want you guys to know that the problem is solved with

ProxyPreserveHost On

      



on Apache conf.

+2


source


For those using Nginx, the following error will help with this error:



proxy_set_header Host $server_addr:$server_port;

      

+1


source







All Articles