]
Darran Lofthouse resolved AS7-1624.
-----------------------------------
Fix Version/s: 7.0.2.Final
Resolution: Duplicate Issue
Incorrect 302 redirect from :8080/console
-----------------------------------------
Key: AS7-1624
URL:
https://issues.jboss.org/browse/AS7-1624
Project: Application Server 7
Issue Type: Bug
Components: Domain Management
Affects Versions: 7.0.1.Final
Reporter: Ondrej Zizka
Assignee: Darran Lofthouse
Fix For: 7.0.2.Final
The link at welcome page is
{code}
<a href="/console">Administration Console</a>
{code}
which leads (in default config) to `<host>:8080/console`.
It is handled by a HTTP 302 redirect, but for some reason it uses IPv6, so it does:
{code}
Resolving kyri.pohlidame.cz... 83.167.252.15
Connecting to kyri.pohlidame.cz|83.167.252.15|:8080... connected.
HTTP request sent... 302 Moved Temporarily
Redirected to:
http://0:0:0:0:0:0:0:0:9990/console [following]
http://0:0:0:0:0:0:0:0:9990/console: Wrong port number.
{code}
There's no proxy or such.
To be able to reach it remotely, I did this (only one) config change:
{code}
<interfaces>
<interface name="management">
<any-address/>
</interface>
<interface name="public">
<any-address/>
</interface>
</interfaces>
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: