using this tutorial http://www.eclipse.org/birt/phoenix/deploy/viewerSetup.php#install_viewer
And it tells me to display the Tomcat manager application through this link http://localhost:8080/manager/html.
However when I click it I get an error from my browser saying it could not connect. Why is this? How exactly does one display the Tomcat Manager Application
I solved that problem by setting up the server management in Eclipse to take control of the Tomcat installation, which has the manager enabled. This thread explains how to do it:
Tomcat started in Eclipse but unable to connect to http://localhost:8085/
Anyway I have the console at the address you mentioned:
localhost:8080/manager/html
in Tomcat 7.
Hey this issue just took me a lot of time to fix, so my tips would be (if it's relevant to others that view this page as well):
Use command line commands (set CATALINA_HOME etc..) instead of changing it through control panel enviroment variables.
When people use %.....% it means give the path to the folder of this variable, except the folder which you are at in command promplt. For example if you are in C:\ in command line and someone tells you to do %CATALINA_HOME%\bin, assuming for example the path for CATALINA_HOME is C:\Program Files, it means write in command line: Pragram Files\bin (excluding C:).
Could have saved me a lot of time.
Make sure you activated the manager app and created a user that has access to it. For details see the documentation to your Tomcat-Version (e.g. for Tomcat 7: http://tomcat.apache.org/tomcat-7.0-doc/manager-howto.html )
Add the below users in the xml file
<role rolename="tomcat"/> <role rolename="manager-gui"/> <role rolename="manager"/> <user username="tomcat" password="tomcat" roles="tomcat"/> <user username="tomcat" password="tomcat" roles="tomcat,manager-gui,manager"/>
Copy tomcat-user.xml file in eclipse workspace server's tomcat directory
If you want to keep using the workspace metadata for you Eclipse Tomcat instance, here's how you can get the manager webapp to work.
The base configuration instructions can be found in Apache Tomcat 7 Manager App HOW-TO.
In your Servers IDE project, the
<server name>-config\server.xml
file should have the following nested entries:Open your Eclipse workspace metadata, where the Tomcat instance folders are published, i.e.:
there, inside the
conf\
folder create a new folder namedCatalina
(derived from<Engine ... name="Catalina">
above), inside this folder create another one namedlocalhost
(derived from<Host ... name="localhost" ...>
above) and in this last one edit a file namedmanager.xml
with the content as per the linked docs:Now publish and start the server instance, the manager will be deployed along side the other webapps you have added — for me it is the last one being deployed.
Tested with Tomcat 7, but I guess it would work for any Tomcat version that supports that linked configuration.
Side note
Do not create the above mentioned folders and files inside the configuration stored in the Eclipse Servers project, they won't be published in the
org.eclipse.wst.server.core\tmp<n>\conf
directory.