Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I installed java7 and ApacheTomcat7 in my Ubuntu12.04, and download eclipse EE ,And now I have to configure my eclipse with tomcat. For I want to find the tomcat installation directory.How can I find it.I installed java and tomcat using Ubuntu software centre. I know its a very basic question,Expecting your help.

Thanks

share|improve this question
@ ShaggyInjun , I installed using ubuntu software centre – Jisson Jun 27 '12 at 5:04
k, When you install tomcat using software center, it will install it according to Unix directory structure. I am not sure if eclipse honours that structure. Download tar.gz file from apache and unzip it in your home directory. This way you'll be able to configure tomcat in eclipse. – ShaggyInjun Jun 27 '12 at 5:05
this covers tomcat6 not 7 but same principle stackoverflow.com/questions/1356616/… hope this is what you wanted – Sean F Jun 27 '12 at 5:06
Answer you need (already linked to this question): stackoverflow.com/a/1446684/273689 – Frankovskyi Bogdan Oct 31 '12 at 19:07

1 Answer

up vote 12 down vote accepted

1. Download the package "apache-tomcat-7.0.6.tar.gz" from the below link
http://tomcat.apache.org/download-70.cgi [tar.gz]

2. Now unpack it with the following command:

tar xvzf apache-tomcat-7.0.8.tar.gz

3. Then move to more appropriate directory, in our case in /usr/share/tomcat7, but can be in any directory. We do this with the command:

sudo mv apache-tomcat-7.0.8/ /usr/share/tomcat7

4. Now define the environment variables JAVA_HOME and JRE_HOME. This file is in the "environment" in / etc. Command to edit the file:

sudo gedit /etc/environment

5. Here we record the routes where we have installed Java in my case this is as follows:

JAVA_HOME="/usr/local/jdk1.6.0_23"
JRE_HOME="/usr/local/jdk1.6.0_23/jre"
PATH="...(other path):$JAVA_HOME:$JRE_HOME"

6. IMPORTANT: Verify the routes where they have installed Java.

sometimes tomcat does not recognize, but a surefire way of recognizing that tomcat is to define the file paths inside "catalina.sh" located in tomcat7/bin. To modify this file use the command:

sudo gedit /usr/share/tomcat7/bin/catalina.sh

Now insert the JAVA_HOME and JRE_HOME after the first line, so the file is as follows:

#!/bin/sh
JAVA_HOME="/usr/local/jdk1.6.0_23"
JRE_HOME="/usr/local/jdk1.6.0_23/jre"
# Licensed to the Apache Software Foundation (ASF)...
#...
#...
....

Now configure Tomcat users, this is done in the file "tomcat-users.xml" directory tomcat7/conf. Command to edit the file:

sudo gedit /usr/share/tomcat7/conf/tomcat-users.xml

7. Unlike previous versions, the administrator should own role "manager" now it should be "manager-gui"to operate on the web administration tomcat7. The file would be as follows:

<?xml version='1.0' encoding='utf-8'?>

<tomcat-users>
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager"/>
<role rolename="admin-gui"/>
<role rolename="admin-script"/>
<role rolename="admin"/>

<user username="usuario" password="contrasena" roles="manager-gui,admin-gui,manager,admin,manager-script,admin-script"/>
</tomcat-users>

8. For further info look here
set-up-eclipse-and-tomcat-7-on-ubuntu-12-04
cannot-create-a-server-using-the-selected-type-eclipse-tomcat

share|improve this answer
Please give comment for down vote! – Chandra Sekhar Oct 16 '12 at 9:33
2  
"Reinstall tomcat to the one folder" is not an answer to the main question. It's just a oblivious workaround "how to make your own tomcat install directory". – Frankovskyi Bogdan Oct 31 '12 at 19:01
@FrankovskyiBogdan, If you really know anything about installation/ installation Issue for the above question, you could answer in better way, else you can improve the answer (given by me) to a generic way. Thanks for your comment. – Chandra Sekhar Nov 2 '12 at 4:36
please, see my comment above. – Frankovskyi Bogdan Mar 24 at 23:27
Thank you Very Much :) you saved me :) – Bhavesh Mar 25 at 7:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.