Tomcat 7 Manager Quick Start on Linux-Unix
The Tutorial shows you How to Getting-Started Easily with Servlets and JSP JEE Development on Apache Tomcat 7 Server on Linux/Unix.
To Getting-Started with Tomcat 7 Server is Best Provide Directly to Download and Install the Latest Official Tomcat 7 Distribution.
The Contents and Details are Expressly Essentials to Give Focus Only to the Essentials Instructions and Commands and Make the Tut Easier to Read & Understand ;)
-
How to Install Tomcat 7 Server on Linux/Unix
-
Open a Terminal Window
(Press “Enter” to Execute Commands) -
Edit the tomcat-users.xml File
sudo nano $CATALINA_HOME/conf/tomcat-users.xml
Insert:
<role rolename=”manager-gui” />
<user username=”admin” password=”admin” roles=”manager-gui”/>.
-
Restart Tomcat
sudo $CATALINA_HOME/bin/shutdown.sh
sudo $CATALINA_HOME/bin/startup.sh
-
Test Access to Tomcat 7 Apps Manager on:
http://localhost:8080/manager
- user: admin
- pass: admin
Next Remember to Set a New Secure User/Pass Combination!.
-
Tomcat 7 Deployment Quick Start Guide