Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
Hi ,

My webapp hangs on tomcat. I have struts,spring and hibernate on it.
I was getting an OutOfMemory error initially, on clicking each of the
links.  I thought the problem could be jvm's .
when I did ls -alt /usr/bin/java , it pointed to
/usr/local../alternatives/java..
and java -version gave gij 1.4.2. What is that?
I thought this could be the reason since my javac -version pointed to jdk1.6
.
I changed the symlink to point to jdk1.6 java by issuing
ln -s /usr/local/jdk../java  /usr/bin/java

But my webapp is now hanging? Is there any reason?






-- 
Thanks
Arun George


Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread ben short
I have tomcat 6 running on fiesty with jdk 1.6 and have the following
in my init script...

JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00



On 10/8/07, Arun [EMAIL PROTECTED] wrote:
 Hi ,

 My webapp hangs on tomcat. I have struts,spring and hibernate on it.
 I was getting an OutOfMemory error initially, on clicking each of the
 links.  I thought the problem could be jvm's .
 when I did ls -alt /usr/bin/java , it pointed to
 /usr/local../alternatives/java..
 and java -version gave gij 1.4.2. What is that?
 I thought this could be the reason since my javac -version pointed to jdk1.6
 .
 I changed the symlink to point to jdk1.6 java by issuing
 ln -s /usr/local/jdk../java  /usr/bin/java

 But my webapp is now hanging? Is there any reason?






 --
 Thanks
 Arun George


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
Ben,

I installed jdk from jdk-6u1-linux-i586.bin.
Still my path has not updated, I have to manually point the symlink . Is
this not suns's jdk?
Am I not using the correct jdk?

 grep -r -i JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00 -l /usr did not
give me a valid entry either. ?


[EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/   .java-gcj.jinfo

My jvm directory looks like this.

On 10/8/07, ben short [EMAIL PROTECTED] wrote:

 I have tomcat 6 running on fiesty with jdk 1.6 and have the following
 in my init script...

 JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00



 On 10/8/07, Arun [EMAIL PROTECTED] wrote:
  Hi ,
 
  My webapp hangs on tomcat. I have struts,spring and hibernate on it.
  I was getting an OutOfMemory error initially, on clicking each of the
  links.  I thought the problem could be jvm's .
  when I did ls -alt /usr/bin/java , it pointed to
  /usr/local../alternatives/java..
  and java -version gave gij 1.4.2. What is that?
  I thought this could be the reason since my javac -version pointed to
 jdk1.6
  .
  I changed the symlink to point to jdk1.6 java by issuing
  ln -s /usr/local/jdk../java  /usr/bin/java
 
  But my webapp is now hanging? Is there any reason?
 
 
 
 
 
 
  --
  Thanks
  Arun George
 

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


RE: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Caldarale, Charles R
 From: Arun [mailto:[EMAIL PROTECTED] 
 Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
 
 [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
 java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/   
 .java-gcj.jinfo

That's the semi-functional GNU JVM implementation.  Strongly suggest you
remove it, since it's known to cause problems with complex applications
such as Tomcat.

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread ben short
Right I installed the jdk from apt as follows..

sudo apt-get install sun-java6-jdk

Much easier that messing about with a bin file..

Then set it up using the following command...

sudo update-java-alternatives -s java-6-sun

How are you starting tomcat? From a script in /etc/init.d ?

How did you install tomcat on the box? via apt-get or did you download
from http://tomcat.apache.org/download-60.cgi?

Regards

Ben


On 10/8/07, Arun [EMAIL PROTECTED] wrote:
 Ben,

 I installed jdk from jdk-6u1-linux-i586.bin.
 Still my path has not updated, I have to manually point the symlink . Is
 this not suns's jdk?
 Am I not using the correct jdk?

  grep -r -i JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00 -l /usr did not
 give me a valid entry either. ?


 [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
 java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/   .java-gcj.jinfo

 My jvm directory looks like this.

 On 10/8/07, ben short [EMAIL PROTECTED] wrote:
 
  I have tomcat 6 running on fiesty with jdk 1.6 and have the following
  in my init script...
 
  JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00
 
 
 
  On 10/8/07, Arun [EMAIL PROTECTED] wrote:
   Hi ,
  
   My webapp hangs on tomcat. I have struts,spring and hibernate on it.
   I was getting an OutOfMemory error initially, on clicking each of the
   links.  I thought the problem could be jvm's .
   when I did ls -alt /usr/bin/java , it pointed to
   /usr/local../alternatives/java..
   and java -version gave gij 1.4.2. What is that?
   I thought this could be the reason since my javac -version pointed to
  jdk1.6
   .
   I changed the symlink to point to jdk1.6 java by issuing
   ln -s /usr/local/jdk../java  /usr/bin/java
  
   But my webapp is now hanging? Is there any reason?
  
  
  
  
  
  
   --
   Thanks
   Arun George
  
 
  -
  To start a new topic, e-mail: users@tomcat.apache.org
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 --
 Thanks
 Arun George


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
How to remove ?
apt-get remove? what is the name for this?
I dont know the name.. Am I using the right jdk?

On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:

  From: Arun [mailto:[EMAIL PROTECTED]
  Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
 
  [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
  java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
  .java-gcj.jinfo

 That's the semi-functional GNU JVM implementation.  Strongly suggest you
 remove it, since it's known to cause problems with complex applications
 such as Tomcat.

 - Chuck


 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If you
 received this in error, please contact the sender and delete the e-mail
 and its attachments from all computers.

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread ben short
Don't worry about removing it for now

follow the steps i showed you to install jdk 1.6 and then set it as
what gets executed when you type java at the prompt

On 10/8/07, Arun [EMAIL PROTECTED] wrote:
 How to remove ?
 apt-get remove? what is the name for this?
 I dont know the name.. Am I using the right jdk?

 On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:
 
   From: Arun [mailto:[EMAIL PROTECTED]
   Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
  
   [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
   java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
   .java-gcj.jinfo
 
  That's the semi-functional GNU JVM implementation.  Strongly suggest you
  remove it, since it's known to cause problems with complex applications
  such as Tomcat.
 
  - Chuck
 
 
  THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
  MATERIAL and is thus for use only by the intended recipient. If you
  received this in error, please contact the sender and delete the e-mail
  and its attachments from all computers.
 
  -
  To start a new topic, e-mail: users@tomcat.apache.org
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 --
 Thanks
 Arun George


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
sorry, you did not include the steps to install jdk1.6 in this conversation.

On 10/8/07, ben short [EMAIL PROTECTED] wrote:

 Don't worry about removing it for now

 follow the steps i showed you to install jdk 1.6 and then set it as
 what gets executed when you type java at the prompt

 On 10/8/07, Arun [EMAIL PROTECTED] wrote:
  How to remove ?
  apt-get remove? what is the name for this?
  I dont know the name.. Am I using the right jdk?
 
  On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:
  
From: Arun [mailto:[EMAIL PROTECTED]
Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
   
[EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
.java-gcj.jinfo
  
   That's the semi-functional GNU JVM implementation.  Strongly suggest
 you
   remove it, since it's known to cause problems with complex
 applications
   such as Tomcat.
  
   - Chuck
  
  
   THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE
 PROPRIETARY
   MATERIAL and is thus for use only by the intended recipient. If you
   received this in error, please contact the sender and delete the
 e-mail
   and its attachments from all computers.
  
   -
   To start a new topic, e-mail: users@tomcat.apache.org
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Thanks
  Arun George
 

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread ben short
Hmm,

Well here they are again...


Right I installed the jdk from apt as follows..

sudo apt-get install sun-java6-jdk

Much easier that messing about with a bin file..

Then set it up using the following command...

sudo update-java-alternatives -s java-6-sun

How are you starting tomcat? From a script in /etc/init.d ?

How did you install tomcat on the box? via apt-get or did you download
from http://tomcat.apache.org/download-60.cgi?

Regards

Ben

On 10/8/07, Arun [EMAIL PROTECTED] wrote:
 sorry, you did not include the steps to install jdk1.6 in this conversation.

 On 10/8/07, ben short [EMAIL PROTECTED] wrote:
 
  Don't worry about removing it for now
 
  follow the steps i showed you to install jdk 1.6 and then set it as
  what gets executed when you type java at the prompt
 
  On 10/8/07, Arun [EMAIL PROTECTED] wrote:
   How to remove ?
   apt-get remove? what is the name for this?
   I dont know the name.. Am I using the right jdk?
  
   On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:
   
 From: Arun [mailto:[EMAIL PROTECTED]
 Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

 [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
 java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
 .java-gcj.jinfo
   
That's the semi-functional GNU JVM implementation.  Strongly suggest
  you
remove it, since it's known to cause problems with complex
  applications
such as Tomcat.
   
- Chuck
   
   
THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE
  PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the
  e-mail
and its attachments from all computers.
   
-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
   
   
  
  
   --
   Thanks
   Arun George
  
 
  -
  To start a new topic, e-mail: users@tomcat.apache.org
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 


 --
 Thanks
 Arun George


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
Ben,
Sorry, I replied a bit fast. I got it.
 I got the steps. That is correct. Using apt is better.
Yes, I got tomcat from that website.
I did a tar -xvvf and copied it to /usr/local/bin.
Is that correct ? Hold on a second anyway.
Why do you prefer sunjdk other than the normal one.
Or are they same?


On 10/8/07, ben short [EMAIL PROTECTED] wrote:

 Hmm,

 Well here they are again...


 Right I installed the jdk from apt as follows..

 sudo apt-get install sun-java6-jdk

 Much easier that messing about with a bin file..

 Then set it up using the following command...

 sudo update-java-alternatives -s java-6-sun

 How are you starting tomcat? From a script in /etc/init.d ?

 How did you install tomcat on the box? via apt-get or did you download
 from http://tomcat.apache.org/download-60.cgi?

 Regards

 Ben

 On 10/8/07, Arun [EMAIL PROTECTED] wrote:
  sorry, you did not include the steps to install jdk1.6 in this
 conversation.
 
  On 10/8/07, ben short [EMAIL PROTECTED] wrote:
  
   Don't worry about removing it for now
  
   follow the steps i showed you to install jdk 1.6 and then set it as
   what gets executed when you type java at the prompt
  
   On 10/8/07, Arun [EMAIL PROTECTED] wrote:
How to remove ?
apt-get remove? what is the name for this?
I dont know the name.. Am I using the right jdk?
   
On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:

  From: Arun [mailto:[EMAIL PROTECTED]
  Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
 
  [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
  java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
  .java-gcj.jinfo

 That's the semi-functional GNU JVM implementation.  Strongly
 suggest
   you
 remove it, since it's known to cause problems with complex
   applications
 such as Tomcat.

 - Chuck


 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE
   PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If
 you
 received this in error, please contact the sender and delete the
   e-mail
 and its attachments from all computers.


 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


   
   
--
Thanks
Arun George
   
  
   -
   To start a new topic, e-mail: users@tomcat.apache.org
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Thanks
  Arun George
 

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
For running I linked catalina.sh by ln


ln -s /usr/local/apache-tomcat-6.0.13/bin/catalina.sh catalina.

And I start the server by catalina start and stop it by catalina stop.


On 10/8/07, ben short [EMAIL PROTECTED] wrote:

 Right I installed the jdk from apt as follows..

 sudo apt-get install sun-java6-jdk

 Much easier that messing about with a bin file..

 Then set it up using the following command...

 sudo update-java-alternatives -s java-6-sun

 How are you starting tomcat? From a script in /etc/init.d ?

 How did you install tomcat on the box? via apt-get or did you download
 from http://tomcat.apache.org/download-60.cgi?

 Regards

 Ben


 On 10/8/07, Arun [EMAIL PROTECTED] wrote:
  Ben,
 
  I installed jdk from jdk-6u1-linux-i586.bin.
  Still my path has not updated, I have to manually point the symlink . Is
  this not suns's jdk?
  Am I not using the correct jdk?
 
   grep -r -i JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00 -l /usr did not
  give me a valid entry either. ?
 
 
  [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
  java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/   .java-
 gcj.jinfo
 
  My jvm directory looks like this.
 
  On 10/8/07, ben short [EMAIL PROTECTED] wrote:
  
   I have tomcat 6 running on fiesty with jdk 1.6 and have the following
   in my init script...
  
   JAVA_HOME=/usr/lib/jvm/java-6-sun-1.6.0.00
  
  
  
   On 10/8/07, Arun [EMAIL PROTECTED] wrote:
Hi ,
   
My webapp hangs on tomcat. I have struts,spring and hibernate on it.
I was getting an OutOfMemory error initially, on clicking each of
 the
links.  I thought the problem could be jvm's .
when I did ls -alt /usr/bin/java , it pointed to
/usr/local../alternatives/java..
and java -version gave gij 1.4.2. What is that?
I thought this could be the reason since my javac -version pointed
 to
   jdk1.6
.
I changed the symlink to point to jdk1.6 java by issuing
ln -s /usr/local/jdk../java  /usr/bin/java
   
But my webapp is now hanging? Is there any reason?
   
   
   
   
   
   
--
Thanks
Arun George
   
  
   -
   To start a new topic, e-mail: users@tomcat.apache.org
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Thanks
  Arun George
 

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
Ben ,

Ding


On 10/8/07, ben short [EMAIL PROTECTED] wrote:

 Hmm,

 Well here they are again...


 Right I installed the jdk from apt as follows..

 sudo apt-get install sun-java6-jdk

 Much easier that messing about with a bin file..

 Then set it up using the following command...

 sudo update-java-alternatives -s java-6-sun

 How are you starting tomcat? From a script in /etc/init.d ?

 How did you install tomcat on the box? via apt-get or did you download
 from http://tomcat.apache.org/download-60.cgi?

 Regards

 Ben

 On 10/8/07, Arun [EMAIL PROTECTED] wrote:
  sorry, you did not include the steps to install jdk1.6 in this
 conversation.
 
  On 10/8/07, ben short [EMAIL PROTECTED] wrote:
  
   Don't worry about removing it for now
  
   follow the steps i showed you to install jdk 1.6 and then set it as
   what gets executed when you type java at the prompt
  
   On 10/8/07, Arun [EMAIL PROTECTED] wrote:
How to remove ?
apt-get remove? what is the name for this?
I dont know the name.. Am I using the right jdk?
   
On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:

  From: Arun [mailto:[EMAIL PROTECTED]
  Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
 
  [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
  java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
  .java-gcj.jinfo

 That's the semi-functional GNU JVM implementation.  Strongly
 suggest
   you
 remove it, since it's known to cause problems with complex
   applications
 such as Tomcat.

 - Chuck


 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE
   PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If
 you
 received this in error, please contact the sender and delete the
   e-mail
 and its attachments from all computers.


 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


   
   
--
Thanks
Arun George
   
  
   -
   To start a new topic, e-mail: users@tomcat.apache.org
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Thanks
  Arun George
 

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
Thanks Ben , Now my weapp is running.

On 10/8/07, ben short [EMAIL PROTECTED] wrote:

 Hmm,

 Well here they are again...


 Right I installed the jdk from apt as follows..

 sudo apt-get install sun-java6-jdk

 Much easier that messing about with a bin file..

 Then set it up using the following command...

 sudo update-java-alternatives -s java-6-sun

 How are you starting tomcat? From a script in /etc/init.d ?

 How did you install tomcat on the box? via apt-get or did you download
 from http://tomcat.apache.org/download-60.cgi?

 Regards

 Ben

 On 10/8/07, Arun [EMAIL PROTECTED] wrote:
  sorry, you did not include the steps to install jdk1.6 in this
 conversation.
 
  On 10/8/07, ben short [EMAIL PROTECTED] wrote:
  
   Don't worry about removing it for now
  
   follow the steps i showed you to install jdk 1.6 and then set it as
   what gets executed when you type java at the prompt
  
   On 10/8/07, Arun [EMAIL PROTECTED] wrote:
How to remove ?
apt-get remove? what is the name for this?
I dont know the name.. Am I using the right jdk?
   
On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:

  From: Arun [mailto:[EMAIL PROTECTED]
  Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
 
  [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
  java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
  .java-gcj.jinfo

 That's the semi-functional GNU JVM implementation.  Strongly
 suggest
   you
 remove it, since it's known to cause problems with complex
   applications
 such as Tomcat.

 - Chuck


 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE
   PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If
 you
 received this in error, please contact the sender and delete the
   e-mail
 and its attachments from all computers.


 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


   
   
--
Thanks
Arun George
   
  
   -
   To start a new topic, e-mail: users@tomcat.apache.org
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Thanks
  Arun George
 

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Arun
My Project Manager has added Quartz/Rome.
The OutOfMemory error comes from that.
Exception in thread DefaultQuartzScheduler_Worker-1
java.lang.OutOfMemoryError: PermGen space
Do you guys know why the QuartzScheduler does this?

On 10/8/07, ben short [EMAIL PROTECTED] wrote:

 Hmm,

 Well here they are again...


 Right I installed the jdk from apt as follows..

 sudo apt-get install sun-java6-jdk

 Much easier that messing about with a bin file..

 Then set it up using the following command...

 sudo update-java-alternatives -s java-6-sun

 How are you starting tomcat? From a script in /etc/init.d ?

 How did you install tomcat on the box? via apt-get or did you download
 from http://tomcat.apache.org/download-60.cgi?

 Regards

 Ben

 On 10/8/07, Arun [EMAIL PROTECTED] wrote:
  sorry, you did not include the steps to install jdk1.6 in this
 conversation.
 
  On 10/8/07, ben short [EMAIL PROTECTED] wrote:
  
   Don't worry about removing it for now
  
   follow the steps i showed you to install jdk 1.6 and then set it as
   what gets executed when you type java at the prompt
  
   On 10/8/07, Arun [EMAIL PROTECTED] wrote:
How to remove ?
apt-get remove? what is the name for this?
I dont know the name.. Am I using the right jdk?
   
On 10/8/07, Caldarale, Charles R [EMAIL PROTECTED] wrote:

  From: Arun [mailto:[EMAIL PROTECTED]
  Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
 
  [EMAIL PROTECTED]:~/downloads# cd /usr/lib/jvm/
  java-1.4.2-gcj-4.1-1.4.2.0/  java-gcj/
  .java-gcj.jinfo

 That's the semi-functional GNU JVM implementation.  Strongly
 suggest
   you
 remove it, since it's known to cause problems with complex
   applications
 such as Tomcat.

 - Chuck


 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE
   PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If
 you
 received this in error, please contact the sender and delete the
   e-mail
 and its attachments from all computers.


 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


   
   
--
Thanks
Arun George
   
  
   -
   To start a new topic, e-mail: users@tomcat.apache.org
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
  --
  Thanks
  Arun George
 

 -
 To start a new topic, e-mail: users@tomcat.apache.org
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




-- 
Thanks
Arun George


RE: Tomcat 6 on ubuntu linux(Fiesty Fawn)

2007-10-08 Thread Caldarale, Charles R
 From: Arun [mailto:[EMAIL PROTECTED] 
 Subject: Re: Tomcat 6 on ubuntu linux(Fiesty Fawn)
 
 Exception in thread DefaultQuartzScheduler_Worker-1
 java.lang.OutOfMemoryError: PermGen space

http://tomcat.apache.org/faq/memory.html

 - Chuck


THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received this in error, please contact the sender and delete the e-mail
and its attachments from all computers.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]