Uninstalling Tomcat

2003-12-10 Thread Nadia Kunkov
HI,

Sorry for a stupid question.  Just wanted to make sure that to uninstall Tomcat all I 
have to do is to delete the directory where it's installed.  Is that right or there 
are other steps?

Thanks

N.K.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Uninstalling Tomcat

2003-12-10 Thread Ben Souther
How did you install it?


On Wednesday 10 December 2003 02:16 pm, Nadia Kunkov wrote:
 HI,

 Sorry for a stupid question.  Just wanted to make sure that to uninstall
 Tomcat all I have to do is to delete the directory where it's installed. 
 Is that right or there are other steps?

 Thanks

 N.K.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Ben Souther
F.W. Davison  Company, Inc.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Uninstalling Tomcat

2003-12-10 Thread Nadia Kunkov
It was not installed by me and I don't seem to find an rpm  Most likely it was an 
RPM, though.  I have installed a new version of Tomcat to a new location and need to 
get rid of the old one.  Also, I set up Java_home in ~/.bashrc file and even after I 
dot execute it I get a message that Java_Home is not set when I start Tomcat.  Should 
I do export Java_Home etc. in .bashrc or should I do it somewhere else?  

Thanks

-Original Message-
From: Ben Souther [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 2:26 PM
To: Tomcat Users List
Subject: Re: Uninstalling Tomcat


How did you install it?


On Wednesday 10 December 2003 02:16 pm, Nadia Kunkov wrote:
 HI,

 Sorry for a stupid question.  Just wanted to make sure that to uninstall
 Tomcat all I have to do is to delete the directory where it's installed. 
 Is that right or there are other steps?

 Thanks

 N.K.


 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Ben Souther
F.W. Davison  Company, Inc.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Uninstalling Tomcat

2003-12-10 Thread Ben Souther
Try querying the rpm database to see if it's in there.
I think you need to be root.
rpm -qa | grep tomcat

If it is you can use rpm -e PACKAGE_NAME to remove it.






On Wednesday 10 December 2003 02:27 pm, Nadia Kunkov wrote:
 It was not installed by me and I don't seem to find an rpm  Most likely
 it was an RPM, though.  I have installed a new version of Tomcat to a new
 location and need to get rid of the old one.  Also, I set up Java_home in
 ~/.bashrc file and even after I dot execute it I get a message that
 Java_Home is not set when I start Tomcat.  Should I do export Java_Home
 etc. in .bashrc or should I do it somewhere else?

 Thanks

 -Original Message-
 From: Ben Souther [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 10, 2003 2:26 PM
 To: Tomcat Users List
 Subject: Re: Uninstalling Tomcat


 How did you install it?

 On Wednesday 10 December 2003 02:16 pm, Nadia Kunkov wrote:
  HI,
 
  Sorry for a stupid question.  Just wanted to make sure that to uninstall
  Tomcat all I have to do is to delete the directory where it's installed.
  Is that right or there are other steps?
 
  Thanks
 
  N.K.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Ben Souther
F.W. Davison  Company, Inc.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Uninstalling Tomcat

2003-12-10 Thread Luc Foisy
could use find / -name tomcat*

that will show where tomcat has been installed (including the one you know about and 
the one you don't)

if you want to see if it was installed with an rpm from there you could use

rpm -qf /[path to unknown tomcat install]/[some file in that tomcat install]

If no results are returned, then an rpm wasn't used. You could probably just rm that 
whole directory then (if some kind of runtime boot was used, gonna have to search for 
that, you'll probably see it if you restart :)

-Original Message-
From: Ben Souther [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 2:38 PM
To: Tomcat Users List
Subject: Re: Uninstalling Tomcat


Try querying the rpm database to see if it's in there.
I think you need to be root.
rpm -qa | grep tomcat

If it is you can use rpm -e PACKAGE_NAME to remove it.






On Wednesday 10 December 2003 02:27 pm, Nadia Kunkov wrote:
 It was not installed by me and I don't seem to find an rpm  Most likely
 it was an RPM, though.  I have installed a new version of Tomcat to a new
 location and need to get rid of the old one.  Also, I set up Java_home in
 ~/.bashrc file and even after I dot execute it I get a message that
 Java_Home is not set when I start Tomcat.  Should I do export Java_Home
 etc. in .bashrc or should I do it somewhere else?

 Thanks

 -Original Message-
 From: Ben Souther [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 10, 2003 2:26 PM
 To: Tomcat Users List
 Subject: Re: Uninstalling Tomcat


 How did you install it?

 On Wednesday 10 December 2003 02:16 pm, Nadia Kunkov wrote:
  HI,
 
  Sorry for a stupid question.  Just wanted to make sure that to uninstall
  Tomcat all I have to do is to delete the directory where it's installed.
  Is that right or there are other steps?
 
  Thanks
 
  N.K.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Ben Souther
F.W. Davison  Company, Inc.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Uninstalling Tomcat

2003-12-10 Thread Nadia Kunkov
Thanks for all your thoughts!  Now, Tomcat doesn't start at boot time anymore  after I 
upgraded my JDK and Tomcat.  How can I fix it?
Thanks in advance.
N.K.

-Original Message-
From: Luc Foisy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 3:02 PM
To: Tomcat Users List
Subject: RE: Uninstalling Tomcat


could use find / -name tomcat*

that will show where tomcat has been installed (including the one you know about and 
the one you don't)

if you want to see if it was installed with an rpm from there you could use

rpm -qf /[path to unknown tomcat install]/[some file in that tomcat install]

If no results are returned, then an rpm wasn't used. You could probably just rm that 
whole directory then (if some kind of runtime boot was used, gonna have to search for 
that, you'll probably see it if you restart :)

-Original Message-
From: Ben Souther [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 2:38 PM
To: Tomcat Users List
Subject: Re: Uninstalling Tomcat


Try querying the rpm database to see if it's in there.
I think you need to be root.
rpm -qa | grep tomcat

If it is you can use rpm -e PACKAGE_NAME to remove it.






On Wednesday 10 December 2003 02:27 pm, Nadia Kunkov wrote:
 It was not installed by me and I don't seem to find an rpm  Most likely
 it was an RPM, though.  I have installed a new version of Tomcat to a new
 location and need to get rid of the old one.  Also, I set up Java_home in
 ~/.bashrc file and even after I dot execute it I get a message that
 Java_Home is not set when I start Tomcat.  Should I do export Java_Home
 etc. in .bashrc or should I do it somewhere else?

 Thanks

 -Original Message-
 From: Ben Souther [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 10, 2003 2:26 PM
 To: Tomcat Users List
 Subject: Re: Uninstalling Tomcat


 How did you install it?

 On Wednesday 10 December 2003 02:16 pm, Nadia Kunkov wrote:
  HI,
 
  Sorry for a stupid question.  Just wanted to make sure that to uninstall
  Tomcat all I have to do is to delete the directory where it's installed.
  Is that right or there are other steps?
 
  Thanks
 
  N.K.
 
 
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]

-- 
Ben Souther
F.W. Davison  Company, Inc.



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Uninstalling Tomcat

2003-12-10 Thread Luc Foisy
Check to see if you have a runtime call for that tomcat instance.
Make sure it works from the command line first.
Make sure all environment variables needed have been set.
Check the tomcat logs.

Does this particular tomcat install automatically create something in the runtime area 
(/etc/rc.d/init.d/ and such places)
If not you'll have to write your own.

-Original Message-
From: Nadia Kunkov [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 3:33 PM
To: Tomcat Users List
Subject: RE: Uninstalling Tomcat


Thanks for all your thoughts!  Now, Tomcat doesn't start at boot time anymore  after I 
upgraded my JDK and Tomcat.  How can I fix it?
Thanks in advance.
N.K.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Uninstalling Tomcat

2003-12-10 Thread Nadia Kunkov
I have Tomcat 4.1.29 and there is nothing in /etc/rc.d/init.d/ or /etc/init.d/  All I 
have is catalina.sh and startup.sh in $TOMCAT_HOME/bin.  What should I put in the 
above directories? A shell script? Which one or what kind of script should I wright? 
In both of those directories or just one? Also, there is no tomcat.conf file for this 
version, should I create it?
Thanks

-Original Message-
From: Luc Foisy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 3:39 PM
To: Tomcat Users List
Subject: RE: Uninstalling Tomcat


Check to see if you have a runtime call for that tomcat instance.
Make sure it works from the command line first.
Make sure all environment variables needed have been set.
Check the tomcat logs.

Does this particular tomcat install automatically create something in the runtime area 
(/etc/rc.d/init.d/ and such places)
If not you'll have to write your own.

-Original Message-
From: Nadia Kunkov [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 3:33 PM
To: Tomcat Users List
Subject: RE: Uninstalling Tomcat


Thanks for all your thoughts!  Now, Tomcat doesn't start at boot time anymore  after I 
upgraded my JDK and Tomcat.  How can I fix it?
Thanks in advance.
N.K.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Uninstalling Tomcat

2003-12-10 Thread Luc Foisy
Can't say I am sure as to what the tomcat.conf file is for myself, so I can't advise 
you on it.

What we did was create a shell script in /etc/init.d (which is mirrored in 
/etc/rc.d/init.d automatically I belive)
Then created symbolic links in each of the runtime levels where tomcat would start or 
stop (using the similar naming of the files in those directories to accomplish) 
(probably want to setup in rc0 rc3 rc5 rc6, they'll be most common, 0 being shutdown, 
3 being startup without X, 5 startup with X, and 6 being restart [someone correct me 
if I am wrong])

In this shell script we defined the tomcat environment variables (may not be needed if 
set in a higher context)
And created the functions to start, stop and restart (should be able to look at other 
shell scripts in /etc/init.d to get some idea)
We had created another user for starting tomcat (ownership given to the tomcat 
directory to this user) which we used to run the scripts in the tomcat directory.

-Original Message-
From: Nadia Kunkov [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 4:07 PM
To: Tomcat Users List
Subject: RE: Uninstalling Tomcat


I have Tomcat 4.1.29 and there is nothing in /etc/rc.d/init.d/ or /etc/init.d/  All I 
have is catalina.sh and startup.sh in $TOMCAT_HOME/bin.  What should I put in the 
above directories? A shell script? Which one or what kind of script should I wright? 
In both of those directories or just one? Also, there is no tomcat.conf file for this 
version, should I create it?
Thanks

-Original Message-
From: Luc Foisy [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 3:39 PM
To: Tomcat Users List
Subject: RE: Uninstalling Tomcat


Check to see if you have a runtime call for that tomcat instance.
Make sure it works from the command line first.
Make sure all environment variables needed have been set.
Check the tomcat logs.

Does this particular tomcat install automatically create something in the runtime area 
(/etc/rc.d/init.d/ and such places)
If not you'll have to write your own.

-Original Message-
From: Nadia Kunkov [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 10, 2003 3:33 PM
To: Tomcat Users List
Subject: RE: Uninstalling Tomcat


Thanks for all your thoughts!  Now, Tomcat doesn't start at boot time anymore  after I 
upgraded my JDK and Tomcat.  How can I fix it?
Thanks in advance.
N.K.

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Uninstalling Tomcat

2003-12-10 Thread Oscar Carrillo
Additionally, after you find the package, you can see what files a package
has installed, by doing something like this:

rpm -qlp tomcat

On Wed, 10 Dec 2003, Ben Souther wrote:

 Try querying the rpm database to see if it's in there.
 I think you need to be root.
 rpm -qa | grep tomcat
 
 If it is you can use rpm -e PACKAGE_NAME to remove it.
 
 
 
 
 
 
 On Wednesday 10 December 2003 02:27 pm, Nadia Kunkov wrote:
  It was not installed by me and I don't seem to find an rpm  Most likely
  it was an RPM, though.  I have installed a new version of Tomcat to a new
  location and need to get rid of the old one.  Also, I set up Java_home in
  ~/.bashrc file and even after I dot execute it I get a message that
  Java_Home is not set when I start Tomcat.  Should I do export Java_Home
  etc. in .bashrc or should I do it somewhere else?
 
  Thanks
 
  -Original Message-
  From: Ben Souther [mailto:[EMAIL PROTECTED]
  Sent: Wednesday, December 10, 2003 2:26 PM
  To: Tomcat Users List
  Subject: Re: Uninstalling Tomcat
 
 
  How did you install it?
 
  On Wednesday 10 December 2003 02:16 pm, Nadia Kunkov wrote:
   HI,
  
   Sorry for a stupid question.  Just wanted to make sure that to uninstall
   Tomcat all I have to do is to delete the directory where it's installed.
   Is that right or there are other steps?
  
   Thanks
  
   N.K.
  
  
   -
   To unsubscribe, e-mail: [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
 
 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



uninstalling Tomcat 5.0.0

2003-03-17 Thread Mike Bada
Hi all,

Sorry to ask such a dumb question, but can anyone tell me how to uninstall 
Tomcat 5.0.0 from Windows XP?  I've searched Tomcat's online documentation, 
the installed Tomcat folders, the Tomcat mailing-list archives, and the 
Web, but all I've found is info on uninstalling previous versions of Tomcat 
(which doesn't work for 5.0.0).  I'd like to install an earlier version and 
put it in a different directory (as the space in my Program Files folder 
seems to be causing problems with Tomcat commands).

Thanks!
Mike
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


RE: Uninstalling Tomcat as a service

2002-01-10 Thread Frank Diakovasilis

I just came accross that and what it was in my case is that I didn't stop
the service before trying to uninstall, this may or may not be your problem.

-Original Message-
From: Mario Felarca [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 09, 2002 1:13 PM
To: [EMAIL PROTECTED]
Subject: Uninstalling Tomcat as a service


Hello,

I am using JavaService to run Tomcat 3.2.3 as a service on a Win2k machine. 
Sometimes, when I do an uninstall of the service, Tomcat does not fully 
uninstall.

 From the service control manager, it is listed as Disabled, and you 
cannot do anything with it because Windows will come back with an error 
saying This service is marked for deletion. It requires a reboot to fix.

Has anyone seen this problem? It does not happen every time, but happens 
often enough to be a hindrance.

Any information or pointers would be appreciated.

Thanks in advance,

Mario-


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]

--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Re: Uninstalling Tomcat as a service

2002-01-10 Thread lmarcus

By the way I am using Tomcat 4.0.1. How do you install it as a service on
Win2k?

Thanks

LMarcus
- Original Message -
From: Frank Diakovasilis [EMAIL PROTECTED]
To: 'Tomcat Users List' [EMAIL PROTECTED]
Sent: Thursday, January 10, 2002 11:26 AM
Subject: RE: Uninstalling Tomcat as a service


 I just came accross that and what it was in my case is that I didn't stop
 the service before trying to uninstall, this may or may not be your
problem.

 -Original Message-
 From: Mario Felarca [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, January 09, 2002 1:13 PM
 To: [EMAIL PROTECTED]
 Subject: Uninstalling Tomcat as a service


 Hello,

 I am using JavaService to run Tomcat 3.2.3 as a service on a Win2k
machine.
 Sometimes, when I do an uninstall of the service, Tomcat does not fully
 uninstall.

  From the service control manager, it is listed as Disabled, and you
 cannot do anything with it because Windows will come back with an error
 saying This service is marked for deletion. It requires a reboot to fix.

 Has anyone seen this problem? It does not happen every time, but happens
 often enough to be a hindrance.

 Any information or pointers would be appreciated.

 Thanks in advance,

 Mario-


 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com


 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]

 --
 To unsubscribe:   mailto:[EMAIL PROTECTED]
 For additional commands: mailto:[EMAIL PROTECTED]
 Troubles with the list: mailto:[EMAIL PROTECTED]



--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]




Uninstalling Tomcat as a service

2002-01-09 Thread Mario Felarca

Hello,

I am using JavaService to run Tomcat 3.2.3 as a service on a Win2k machine. 
Sometimes, when I do an uninstall of the service, Tomcat does not fully 
uninstall.

 From the service control manager, it is listed as Disabled, and you 
cannot do anything with it because Windows will come back with an error 
saying This service is marked for deletion. It requires a reboot to fix.

Has anyone seen this problem? It does not happen every time, but happens 
often enough to be a hindrance.

Any information or pointers would be appreciated.

Thanks in advance,

Mario-


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com


--
To unsubscribe:   mailto:[EMAIL PROTECTED]
For additional commands: mailto:[EMAIL PROTECTED]
Troubles with the list: mailto:[EMAIL PROTECTED]