Reputation: 79
So I have been trying to access the administration console in wildfly but everytime I try this i get an 404 error, however my wildfly is running and I can access any applications I create and publish on the server via eclipse.
I have tried to change ports in standalone.xml and also tried earlier versions of wildfly (I'm currently using 8.2).
I have also managed to to add an user with the add-user.bat and I have no problems whatsoever with this.
Is there anything else I might try?
I have tried the following so far.
I'm currently using Windows 8.1
*Different versions of wildfly *Deleting wildfly and install it again. *Changing ports in the standalone.xml and also opening ports via windows.
Upvotes: 4
Views: 11567
Reputation: 117675
If you have NVIDIA graphics card, then it's better to change the default port as mentioned by @greatideaPL, since NVIDIA uses the port 9990 by its process NvNetworkService.exe (NVIDIA Network Service)
.
Upvotes: 1
Reputation: 737
If you trying to access not from localhost, you need:
Get port number of management-http form standalone/configuration/standalone.xml (default is 9990):
<socket-binding name="management-http" interface="management" port="${jboss.management.http.port:9990}"/>
Open access to management interface from outside localhost, e.g. change ip from 127.0.0.1 to 0.0.0.0 (listening all your IP addresses):
<interface name="management">
<inet-address value="${jboss.bind.address.management:0.0.0.0}"/>
</interface>
Open http://ip:port/management, e.g. http://kpdesign.ru:9990/management. Login into page.
Admin console will be available at http://kpdesign.ru:9990/console
Upvotes: 5
Reputation: 21
I had the same problem. I changed jboss.management.http.port in configuration/standalone.xml from 9990 to 9991 (console port) and now is ok.
Upvotes: 2
Reputation: 21391
I had the same problem and I found an answer of this bug.
The answer of jboss support is "Not possible with the current codebase"
So if you need console administration, use Application Server distribution rather than servlet one.
Upvotes: 3