Reputation: 11
Apache server has been put infront of tomcat to redirect the request from 80 port to 8080 port through mod_proxy connector. The problem I am facing is that I can't access the manager page of tomcat to deploy war file.
I have read a lot and just got one similar question on SO SO SIMILAIR LINK
I tried the changes asked by the answerer there but no result. I am still getting the NOT FOUND error on accesssing localhost:8080/manager/html
What is the issue?
How to access the manager page to deploy war file of the project?
What should be the new url for manager page?
IS THERE ANYWAY TO ACCESS MANAGER PAGE ON 80 PORT OF APACHE?
APACHE Version => 2.4
TOMCAT Version => 8
Upvotes: 0
Views: 783
Reputation: 10717
From https://tomcat.apache.org/tomcat-7.0-doc/manager-howto.html#Configuring_Manager_Application_Access
In addition to the password restrictions the Manager web application could be restricted by the remote IP address or host by adding a RemoteAddrValve or RemoteHostValve. See valves documentation for details.
Upvotes: 1