Hi,
I have APEX 5.1 deployed on Tomcat9.
From the server Tomcat I have the followng administration pages:
http://localhost:8090
http://localhost:8090/manager
http://localhost:8090/status
http://localhost:8090/apex
Ï access remotely the APEX aplication as:
http://Remote_IP_Adress:8090/apex
It works fine.
Port=8090 is open on localhost where the Tomcat server is running.
In my Tomcat conf directory, I have created two files:
manager.xml and host-manager.xml, with that content:
<Context privileged="true" antiResourceLocking="false"
docBase="${catalina.home}/webapps/manager">
<Valve className="org.apache.catalina.valves.RemoteAddrValve"
allow="^.*$" />
</Context>
It is handy to start/stop APEX application from the Tomcat GUI.
But I get an "403 Access Denied" when I attempt remotely to access the "manager" or "status" pages:
http://Remote_IP_Adress:8090/status
http://Remote_IP_Adress:8090/manager
Does someone know what is wrong with this configuration?
Thanks and Regards