Tomcat Administration Training

2011-06-21 Thread Garg, Saman
Could somebody please point me to an institute which conducts Tomcat
administration training in INDIA (Bangalore)?
Thanks for your help.

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread Caldarale, Charles R
> From: zigg...@gmail.com [mailto:zigg...@gmail.com]
> Subject: Re: tomcat administration
> 
> Does virtual hosting work on a single instance of tomcat and jvm?

Read the docs:
http://tomcat.apache.org/tomcat-6.0-doc/virtual-hosting-howto.html

And Mark E's new WIKI entry:
http://wiki.apache.org/tomcat/TomcatDevelopmentVirtualHosts

Yes.

 - 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat administration

2010-05-07 Thread ziggy25
Thanks for clarifying it. Does virtual hosting work on a single instance of 
tomcat and jvm?
Sent from my BlackBerry® smartphone

-Original Message-
From: "Caldarale, Charles R" 
Date: Fri, 7 May 2010 14:18:45 
To: Tomcat Users List
Subject: RE: tomcat administration

> From: zigg...@gmail.com [mailto:zigg...@gmail.com]
> Subject: Re: tomcat administration
> 
> Also have a look at catalina base

That's for running multiple instances of Tomcat, which is another option but 
consumes more resources and requires multiple IP address or ports.

 - 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread Caldarale, Charles R
> From: zigg...@gmail.com [mailto:zigg...@gmail.com]
> Subject: Re: tomcat administration
> 
> Also have a look at catalina base

That's for running multiple instances of Tomcat, which is another option but 
consumes more resources and requires multiple IP address or ports.

 - 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat administration

2010-05-07 Thread ziggy25
Also have a look at catalina base

Sent from my BlackBerry® smartphone

-Original Message-
From: testwreq wreq 
Date: Fri, 7 May 2010 14:56:32 
To: Tomcat Users List
Subject: Re: tomcat administration

Thank you. I will read about virtua. hosting.

On Fri, May 7, 2010 at 12:12 PM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:

> > From: testwreq wreq [mailto:testw...@gmail.com]
> > Subject: Re: tomcat administration
> >
> > I need ability for users to stop and restart a single webapp
> > without having access to other webapps which do not belong to
> > them. Is this possible?
>
> Yes.  Use virtual hosting, so each user gets their own  and appBase
> directory - and their own copy of the manager app and individualized
> .  No one will be able to impact any other .
>
> http://tomcat.apache.org/tomcat-5.5-doc/virtual-hosting-howto.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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>



Re: tomcat administration

2010-05-07 Thread testwreq wreq
Thank you. I will read about virtua. hosting.

On Fri, May 7, 2010 at 12:12 PM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:

> > From: testwreq wreq [mailto:testw...@gmail.com]
> > Subject: Re: tomcat administration
> >
> > I need ability for users to stop and restart a single webapp
> > without having access to other webapps which do not belong to
> > them. Is this possible?
>
> Yes.  Use virtual hosting, so each user gets their own  and appBase
> directory - and their own copy of the manager app and individualized
> .  No one will be able to impact any other .
>
> http://tomcat.apache.org/tomcat-5.5-doc/virtual-hosting-howto.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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: tomcat administration

2010-05-07 Thread Timothy J Schumacher
Oops, I missed the requirement to keep the admin/manager app up - 
correct, you cannot keep the admin app (or any other app) up while you 
restart tomcat, but you can do a full restart and sit and wait and hope 
your newly created process doesn't crash or hang...


Tim

Pid wrote:

On 07/05/2010 18:20, Timothy J Schumacher wrote:
  

I would like to give some test application users ability to start &
restart
the tomcat server but not the entire admin / manager interface.
  
Actually this is possible in linux at least, though be very wary... 



No, it's clearly not.
You can't keep the admin app up, if the server is down.

  

one
can shell out of java and call things using nohup with run in the
background (trailing &) or use setsid(), after that the new process is
not connected to tomcat so it could restart tomcat.  I have done this
and it works, though it's more academic and I wouldn't recommend writing
things like that :)



You can shoot yourself in the foot too, if you have adequate medical
insurance.


p


  

-Tim


testwreq wreq wrote:


I entered the following line  in tomcat-users.xm file. I can login to the
admin
http://localhost:8080/admin/ and application manager
http://localhost:8080/manager/html

I would like to give some test application users ability to start &
restart
the tomcat server but not the entire admin / manager interface. Is it
possible to configure this?

I am told that when the application (jsp/servelet code) changes,
tomcat has
to restart to clear the old cache. Is it true?

My tomcat version is 5.5.23

thanks, vm


On Fri, May 7, 2010 at 9:59 AM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:

 
  

From: testwreq wreq [mailto:testw...@gmail.com]
Subject: tomcat administration

I have a new installation of tomcat on centos. My $CATALINA_HOME is
/usr/share/tomcat5 and tomcat is running.
  
  

Care to tell us the *exact* version of Tomcat you installed?  And how
you
installed it?  (Is it a 3rd-party repackaged version, or a real one from
tomcat.apache.org?)

   


http://localhost:8080 brings up the tomcat page & one of the option is
"Administration".
  
  

That looks like it comes from a defunct 5.0.x version, which has not
been
supported for quite some time now.  Install a current Tomcat from
tomcat.apache.org and try again.

   


I would like to use this web interface and even give
some of the test webapp users ability to restart tomcat.
  
  

That's not going to happen, at least not via internal manipulation of
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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org




  
  

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org





  


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat administration

2010-05-07 Thread Pid
On 07/05/2010 18:20, Timothy J Schumacher wrote:
>> I would like to give some test application users ability to start &
>> restart
>> the tomcat server but not the entire admin / manager interface.
> 
> Actually this is possible in linux at least, though be very wary... 

No, it's clearly not.
You can't keep the admin app up, if the server is down.

> one
> can shell out of java and call things using nohup with run in the
> background (trailing &) or use setsid(), after that the new process is
> not connected to tomcat so it could restart tomcat.  I have done this
> and it works, though it's more academic and I wouldn't recommend writing
> things like that :)

You can shoot yourself in the foot too, if you have adequate medical
insurance.


p


> -Tim
> 
> 
> testwreq wreq wrote:
>> I entered the following line > roles="admin,manager" /> in tomcat-users.xm file. I can login to the
>> admin
>> http://localhost:8080/admin/ and application manager
>> http://localhost:8080/manager/html
>>
>> I would like to give some test application users ability to start &
>> restart
>> the tomcat server but not the entire admin / manager interface. Is it
>> possible to configure this?
>>
>> I am told that when the application (jsp/servelet code) changes,
>> tomcat has
>> to restart to clear the old cache. Is it true?
>>
>> My tomcat version is 5.5.23
>>
>> thanks, vm
>>
>>
>> On Fri, May 7, 2010 at 9:59 AM, Caldarale, Charles R <
>> chuck.caldar...@unisys.com> wrote:
>>
>>  
>>>> From: testwreq wreq [mailto:testw...@gmail.com]
>>>> Subject: tomcat administration
>>>>
>>>> I have a new installation of tomcat on centos. My $CATALINA_HOME is
>>>> /usr/share/tomcat5 and tomcat is running.
>>>>   
>>> Care to tell us the *exact* version of Tomcat you installed?  And how
>>> you
>>> installed it?  (Is it a 3rd-party repackaged version, or a real one from
>>> tomcat.apache.org?)
>>>
>>>
>>>> http://localhost:8080 brings up the tomcat page & one of the option is
>>>> "Administration".
>>>>   
>>> That looks like it comes from a defunct 5.0.x version, which has not
>>> been
>>> supported for quite some time now.  Install a current Tomcat from
>>> tomcat.apache.org and try again.
>>>
>>>
>>>> I would like to use this web interface and even give
>>>> some of the test webapp users ability to restart tomcat.
>>>>   
>>> That's not going to happen, at least not via internal manipulation of
>>> 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
>>> For additional commands, e-mail: users-h...@tomcat.apache.org
>>>
>>>
>>> 
>>
>>   
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
> 




signature.asc
Description: OpenPGP digital signature


Re: tomcat administration

2010-05-07 Thread Timothy J Schumacher

I would like to give some test application users ability to start & restart
the tomcat server but not the entire admin / manager interface.


Actually this is possible in linux at least, though be very wary... one 
can shell out of java and call things using nohup with run in the 
background (trailing &) or use setsid(), after that the new process is 
not connected to tomcat so it could restart tomcat.  I have done this 
and it works, though it's more academic and I wouldn't recommend writing 
things like that :)


-Tim


testwreq wreq wrote:

I entered the following line  in tomcat-users.xm file. I can login to the admin
http://localhost:8080/admin/ and application manager
http://localhost:8080/manager/html

I would like to give some test application users ability to start & restart
the tomcat server but not the entire admin / manager interface. Is it
possible to configure this?

I am told that when the application (jsp/servelet code) changes, tomcat has
to restart to clear the old cache. Is it true?

My tomcat version is 5.5.23

thanks, vm


On Fri, May 7, 2010 at 9:59 AM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:

  

From: testwreq wreq [mailto:testw...@gmail.com]
Subject: tomcat administration

I have a new installation of tomcat on centos. My $CATALINA_HOME is
/usr/share/tomcat5 and tomcat is running.
  

Care to tell us the *exact* version of Tomcat you installed?  And how you
installed it?  (Is it a 3rd-party repackaged version, or a real one from
tomcat.apache.org?)



http://localhost:8080 brings up the tomcat page & one of the option is
"Administration".
  

That looks like it comes from a defunct 5.0.x version, which has not been
supported for quite some time now.  Install a current Tomcat from
tomcat.apache.org and try again.



I would like to use this web interface and even give
some of the test webapp users ability to restart tomcat.
  

That's not going to happen, at least not via internal manipulation of
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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org





  


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread Caldarale, Charles R
> From: testwreq wreq [mailto:testw...@gmail.com]
> Subject: Re: tomcat administration
> 
> I need ability for users to stop and restart a single webapp
> without having access to other webapps which do not belong to
> them. Is this possible?

Yes.  Use virtual hosting, so each user gets their own  and appBase 
directory - and their own copy of the manager app and individualized .  
No one will be able to impact any other .

http://tomcat.apache.org/tomcat-5.5-doc/virtual-hosting-howto.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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread La Spina, Massimo
I don't think it is possible, but if you need this feature, you can
always extend/modify tomcat manager application...


-Original Message-
From: testwreq wreq [mailto:testw...@gmail.com] 
 
[...]

I need ability for users to stop and restart a single webapp without
having
access to other webapps which do not belong to them. Is this possible?

[...]

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat administration

2010-05-07 Thread testwreq wreq
You are right. I should think before writing...(:

I need ability for users to stop and restart a single webapp without having
access to other webapps which do not belong to them. Is this possible?
2010/5/7 La Spina, Massimo 

> Hello.
>
> As somebody else already wrote, is not possible to stop/restart tomcat from
> the web interface, because the web interface itself is a web-application
> running into tomcat (so... to work it needs tomcat to be up and running...)
>
> You can stop and restart single webapps (if needed). Sometimes is enough to
> redeploy the application (copy the new jar file to webapps folder), without
> any further action required.
>
> I think you need to restart the whole server only when you want to update
> some shared libraries.
>
> Massimo
>
>
>
> -Original Message-
> From: testwreq wreq [mailto:testw...@gmail.com]
> Sent: 7. května 2010 16:49
> To: Tomcat Users List
>  Subject: Re: tomcat administration
>
> I entered the following line  roles="admin,manager" /> in tomcat-users.xm file. I can login to the admin
> http://localhost:8080/admin/ and application manager
> http://localhost:8080/manager/html
>
> I would like to give some test application users ability to start & restart
> the tomcat server but not the entire admin / manager interface. Is it
> possible to configure this?
>
> I am told that when the application (jsp/servelet code) changes, tomcat has
> to restart to clear the old cache. Is it true?
>
> My tomcat version is 5.5.23
>
> thanks, vm
>
>
> On Fri, May 7, 2010 at 9:59 AM, Caldarale, Charles R <
> chuck.caldar...@unisys.com> wrote:
>
> > > From: testwreq wreq [mailto:testw...@gmail.com]
> > > Subject: tomcat administration
> > >
> > > I have a new installation of tomcat on centos. My $CATALINA_HOME is
> > > /usr/share/tomcat5 and tomcat is running.
> >
> > Care to tell us the *exact* version of Tomcat you installed?  And how you
> > installed it?  (Is it a 3rd-party repackaged version, or a real one from
> > tomcat.apache.org?)
> >
> > > http://localhost:8080 brings up the tomcat page & one of the option is
> > > "Administration".
> >
> > That looks like it comes from a defunct 5.0.x version, which has not been
> > supported for quite some time now.  Install a current Tomcat from
> > tomcat.apache.org and try again.
> >
> > > I would like to use this web interface and even give
> > > some of the test webapp users ability to restart tomcat.
> >
> > That's not going to happen, at least not via internal manipulation of
> > 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> > For additional commands, e-mail: users-h...@tomcat.apache.org
> >
> >
>
> -
> To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: tomcat administration

2010-05-07 Thread André Warnier

Caldarale, Charles R wrote:

From: testwreq wreq [mailto:testw...@gmail.com]
Subject: Re: tomcat administration

I would like to give some test application users ability to 
start & restart the tomcat server but not the entire admin /

manager interface. Is it possible to configure this?



Allright, I cannot resist.
Suggestion :
Create a web application which returns one html page, and then does a 
system.exit.


And the return page would be



And now ?



-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread Caldarale, Charles R
> From: testwreq wreq [mailto:testw...@gmail.com]
> Subject: Re: tomcat administration
> 
> I would like to give some test application users ability to 
> start & restart the tomcat server but not the entire admin /
> manager interface. Is it possible to configure this?

Think about that: since the admin/manager interface is part of Tomcat, how 
would that be possible?

Also note that the admin interface has not been carried forward into current 
versions of Tomcat, so basing any procedures around it would be very 
short-sighted.

> I am told that when the application (jsp/servelet code) 
> changes, tomcat has to restart to clear the old cache.

You were told wrong.  As long as you properly redeploy webapps via the manager 
interface, all that is taken care of.  Your _browser_ might be caching things 
that you would need to get rid of.

 - 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread La Spina, Massimo
Sorry for the typo... Below, I meant war file, not jar...



-Original Message-
From: La Spina, Massimo 
Sent: 7. května 2010 16:55
To: 'Tomcat Users List'
Subject: RE: tomcat administration

Hello.

As somebody else already wrote, is not possible to stop/restart tomcat from the 
web interface, because the web interface itself is a web-application running 
into tomcat (so... to work it needs tomcat to be up and running...)

You can stop and restart single webapps (if needed). Sometimes is enough to 
redeploy the application (copy the new jar file to webapps folder), without any 
further action required.

I think you need to restart the whole server only when you want to update some 
shared libraries.

Massimo 



-Original Message-
From: testwreq wreq [mailto:testw...@gmail.com] 
Sent: 7. května 2010 16:49
To: Tomcat Users List
Subject: Re: tomcat administration

I entered the following line  in tomcat-users.xm file. I can login to the admin
http://localhost:8080/admin/ and application manager
http://localhost:8080/manager/html

I would like to give some test application users ability to start & restart
the tomcat server but not the entire admin / manager interface. Is it
possible to configure this?

I am told that when the application (jsp/servelet code) changes, tomcat has
to restart to clear the old cache. Is it true?

My tomcat version is 5.5.23

thanks, vm


On Fri, May 7, 2010 at 9:59 AM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:

> > From: testwreq wreq [mailto:testw...@gmail.com]
> > Subject: tomcat administration
> >
> > I have a new installation of tomcat on centos. My $CATALINA_HOME is
> > /usr/share/tomcat5 and tomcat is running.
>
> Care to tell us the *exact* version of Tomcat you installed?  And how you
> installed it?  (Is it a 3rd-party repackaged version, or a real one from
> tomcat.apache.org?)
>
> > http://localhost:8080 brings up the tomcat page & one of the option is
> > "Administration".
>
> That looks like it comes from a defunct 5.0.x version, which has not been
> supported for quite some time now.  Install a current Tomcat from
> tomcat.apache.org and try again.
>
> > I would like to use this web interface and even give
> > some of the test webapp users ability to restart tomcat.
>
> That's not going to happen, at least not via internal manipulation of
> 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread La Spina, Massimo
Hello.

As somebody else already wrote, is not possible to stop/restart tomcat from the 
web interface, because the web interface itself is a web-application running 
into tomcat (so... to work it needs tomcat to be up and running...)

You can stop and restart single webapps (if needed). Sometimes is enough to 
redeploy the application (copy the new jar file to webapps folder), without any 
further action required.

I think you need to restart the whole server only when you want to update some 
shared libraries.

Massimo 



-Original Message-
From: testwreq wreq [mailto:testw...@gmail.com] 
Sent: 7. května 2010 16:49
To: Tomcat Users List
Subject: Re: tomcat administration

I entered the following line  in tomcat-users.xm file. I can login to the admin
http://localhost:8080/admin/ and application manager
http://localhost:8080/manager/html

I would like to give some test application users ability to start & restart
the tomcat server but not the entire admin / manager interface. Is it
possible to configure this?

I am told that when the application (jsp/servelet code) changes, tomcat has
to restart to clear the old cache. Is it true?

My tomcat version is 5.5.23

thanks, vm


On Fri, May 7, 2010 at 9:59 AM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:

> > From: testwreq wreq [mailto:testw...@gmail.com]
> > Subject: tomcat administration
> >
> > I have a new installation of tomcat on centos. My $CATALINA_HOME is
> > /usr/share/tomcat5 and tomcat is running.
>
> Care to tell us the *exact* version of Tomcat you installed?  And how you
> installed it?  (Is it a 3rd-party repackaged version, or a real one from
> tomcat.apache.org?)
>
> > http://localhost:8080 brings up the tomcat page & one of the option is
> > "Administration".
>
> That looks like it comes from a defunct 5.0.x version, which has not been
> supported for quite some time now.  Install a current Tomcat from
> tomcat.apache.org and try again.
>
> > I would like to use this web interface and even give
> > some of the test webapp users ability to restart tomcat.
>
> That's not going to happen, at least not via internal manipulation of
> 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat administration

2010-05-07 Thread André Warnier

testwreq wreq wrote:


I would like to give some test application users ability to start & restart
the tomcat server 


You may want to sit down, have a cup of coffee, and re-think harder 
about this statement, before someone really feels like answering it (again).



-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat administration

2010-05-07 Thread testwreq wreq
I entered the following line  in tomcat-users.xm file. I can login to the admin
http://localhost:8080/admin/ and application manager
http://localhost:8080/manager/html

I would like to give some test application users ability to start & restart
the tomcat server but not the entire admin / manager interface. Is it
possible to configure this?

I am told that when the application (jsp/servelet code) changes, tomcat has
to restart to clear the old cache. Is it true?

My tomcat version is 5.5.23

thanks, vm


On Fri, May 7, 2010 at 9:59 AM, Caldarale, Charles R <
chuck.caldar...@unisys.com> wrote:

> > From: testwreq wreq [mailto:testw...@gmail.com]
> > Subject: tomcat administration
> >
> > I have a new installation of tomcat on centos. My $CATALINA_HOME is
> > /usr/share/tomcat5 and tomcat is running.
>
> Care to tell us the *exact* version of Tomcat you installed?  And how you
> installed it?  (Is it a 3rd-party repackaged version, or a real one from
> tomcat.apache.org?)
>
> > http://localhost:8080 brings up the tomcat page & one of the option is
> > "Administration".
>
> That looks like it comes from a defunct 5.0.x version, which has not been
> supported for quite some time now.  Install a current Tomcat from
> tomcat.apache.org and try again.
>
> > I would like to use this web interface and even give
> > some of the test webapp users ability to restart tomcat.
>
> That's not going to happen, at least not via internal manipulation of
> 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: users-h...@tomcat.apache.org
>
>


Re: tomcat administration

2010-05-07 Thread Ognjen Blagojevic

testwreq wreq wrote:

http://localhost:8080 brings up the tomcat page & one of the option is
"Administration". I would like to use this web interface and even give some
of the test webapp users ability to restart tomcat.


What is the URL of the administration application? Is it something that 
ends like /manager/html, it must be Tomcat Manager application. That 
application needs a user in role "manager".




$CATALINA_HOME/conf/tomcat-users.xml. Currently my file has the following
  


Just change roles="tomcat" to roles="manager", restart Tomcat, and try 
again.


Also, consider changing password.

-Ognjen

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: tomcat administration

2010-05-07 Thread André Warnier

testwreq wreq wrote:

I have a new installation of tomcat on centos. My $CATALINA_HOME is
/usr/share/tomcat5 and tomcat is running.

http://localhost:8080 brings up the tomcat page & one of the option is
"Administration". I would like to use this web interface and even give some
of the test webapp users ability to restart tomcat.


No webapp will give you that last option.
A webapp may allow one to stop Tomcat, but then you'd have a problem.


According to the home page, users are defined in
$CATALINA_HOME/conf/tomcat-users.xml. Currently my file has the following
content
 more tomcat-users.xml


  
  
  
  
  


I tried logging to the administration web interface with tomcat/tomcat but
it did not work. Can anyone guide to configure this file? I am very new to
tomcat.

If you view CATALINA_HOME/server/webapps/manager/WEB-INF/web.xml, at the 
end you will see that it requires a user with the role "manager".

So above add :

   
and modify
   
(or add another user with that role)

That will allow you to access the Manager application.
For the "Admin" application however, I'm not sure, but it must be 
something similar.


I seem to remember however that the Admin application is no longer 
developed or supported or both.  But I cannot immediately find a 
reference to it on the Tomcat site.


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread Caldarale, Charles R
> From: testwreq wreq [mailto:testw...@gmail.com]
> Subject: tomcat administration
> 
> I have a new installation of tomcat on centos. My $CATALINA_HOME is
> /usr/share/tomcat5 and tomcat is running.

Care to tell us the *exact* version of Tomcat you installed?  And how you 
installed it?  (Is it a 3rd-party repackaged version, or a real one from 
tomcat.apache.org?)

> http://localhost:8080 brings up the tomcat page & one of the option is
> "Administration".

That looks like it comes from a defunct 5.0.x version, which has not been 
supported for quite some time now.  Install a current Tomcat from 
tomcat.apache.org and try again.

> I would like to use this web interface and even give
> some of the test webapp users ability to restart tomcat.

That's not going to happen, at least not via internal manipulation of 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 unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



RE: tomcat administration

2010-05-07 Thread La Spina, Massimo
There are special "admin" and "manager" roles.
Try to define and use one of these.

Massimo 


-Original Message-
From: testwreq wreq [mailto:testw...@gmail.com] 
Sent: 7. května 2010 15:04
To: Tomcat Users List
Subject: tomcat administration

I have a new installation of tomcat on centos. My $CATALINA_HOME is
/usr/share/tomcat5 and tomcat is running.

http://localhost:8080 brings up the tomcat page & one of the option is
"Administration". I would like to use this web interface and even give some
of the test webapp users ability to restart tomcat.

According to the home page, users are defined in
$CATALINA_HOME/conf/tomcat-users.xml. Currently my file has the following
content
 more tomcat-users.xml


  
  
  
  
  


I tried logging to the administration web interface with tomcat/tomcat but
it did not work. Can anyone guide to configure this file? I am very new to
tomcat.

Thank you.

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



tomcat administration

2010-05-07 Thread testwreq wreq
I have a new installation of tomcat on centos. My $CATALINA_HOME is
/usr/share/tomcat5 and tomcat is running.

http://localhost:8080 brings up the tomcat page & one of the option is
"Administration". I would like to use this web interface and even give some
of the test webapp users ability to restart tomcat.

According to the home page, users are defined in
$CATALINA_HOME/conf/tomcat-users.xml. Currently my file has the following
content
 more tomcat-users.xml


  
  
  
  
  


I tried logging to the administration web interface with tomcat/tomcat but
it did not work. Can anyone guide to configure this file? I am very new to
tomcat.

Thank you.


RE: Tomcat Administration

2007-07-31 Thread SophieKlusn

Found it in some location in netbeans installation. I deleted the file. I
still see the same message. Now neither MS or google desktop search lead to
any results, I still see the same message when I visit the administration
page. This is a nightmare!



Caldarale, Charles R wrote:
> 
>> From: SophieKlusn [mailto:[EMAIL PROTECTED] 
>> Subject: RE: Tomcat Administration
>> 
>> The contents of admin.xml are as follows:
> 
> That all looks reasonable.
> 
>> I am still confounded with where the error page is
>> being served from.
> 
> Might be time for a full search of your system for the admin message.
> 
>  - 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]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Tomcat-Administration-tf4178709.html#a11923091
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
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 Administration

2007-07-30 Thread Caldarale, Charles R
> From: SophieKlusn [mailto:[EMAIL PROTECTED] 
> Subject: RE: Tomcat Administration
> 
> The contents of admin.xml are as follows:

That all looks reasonable.

> I am still confounded with where the error page is
> being served from.

Might be time for a full search of your system for the admin message.

 - 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 Administration

2007-07-30 Thread SophieKlusn

Chuck,

Thanks again,

The contents of admin.xml are as follows:






  
  
  


I don't think it is a files permission issue. I have given tomcat user the
role of admin as well. I am still confounded with where the error page is
being served from. I really appreciate your help.

Thanks so much,
Sophie


Caldarale, Charles R wrote:
> 
>> From: SophieKlusn [mailto:[EMAIL PROTECTED] 
>> Subject: RE: Tomcat Administration
>> 
>> I don't know what you mean by multiple  elements.
> 
> In conf/server.xml, there must be at least one  element, which
> uses the name "localhost" by default, and has an appBase attribute with
> the value "webapps".  If you haven't changed any of this, don't worry
> about it.
> 
>> In conf/catalina/ I have localhost where admin.xml
>> file was copied to.
> 
> Good.  What are the contents of that admin.xml file?
> 
> Do you possibly have a file permissions problem?  Different owner for
> the admin pieces than the main Tomcat installation files?
> 
>  - 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]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Tomcat-Administration-tf4178709.html#a11882921
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
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 Administration

2007-07-30 Thread Caldarale, Charles R
> From: SophieKlusn [mailto:[EMAIL PROTECTED] 
> Subject: RE: Tomcat Administration
> 
> I don't know what you mean by multiple  elements.

In conf/server.xml, there must be at least one  element, which
uses the name "localhost" by default, and has an appBase attribute with
the value "webapps".  If you haven't changed any of this, don't worry
about it.

> In conf/catalina/ I have localhost where admin.xml
> file was copied to.

Good.  What are the contents of that admin.xml file?

Do you possibly have a file permissions problem?  Different owner for
the admin pieces than the main Tomcat installation files?

 - 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 Administration

2007-07-30 Thread SophieKlusn

Dear Charles,

Thanks so much for your help. Yes, I did make sure that I emptied the
browser cache (both IE and Firefox).  And yes, I restart the same tomcat
instance where I deleted the webapps/ROOT/admin folder. I don't know what
you mean by multiple  elements. In conf/catalina/ I have localhost
where admin.xml file was copied to. I did not change anything to host
appbase. (There were no such instructions in the install). Can you please
tell me what is to be done here?

Thanks,
Sophie


Caldarale, Charles R wrote:
> 
>> From: SophieKlusn [mailto:[EMAIL PROTECTED] 
>> Subject: Tomcat Administration
>> 
>> I have no clue from where the error page is being
>> served cause I deleted the admin directory from
>> webapps/ROOT folder.
> 
> 1) Are you sure you emptied the browser cache?
> 
> 2) Are you sure you're accessing the same Tomcat in which you deleted
> webapps/ROOT/admin?
> 
> 3) Did you change the  appBase attribute to point somewhere other
> than webapps?
> 
> 4) Do you have multiple  elements?
> 
> 5) Is there a conf/Catalina/[host]/admin.xml file?  If not, you don't
> have the admin package installed properly.
> 
>  - 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]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Tomcat-Administration-tf4178709.html#a11882665
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
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 Administration

2007-07-30 Thread Caldarale, Charles R
> From: SophieKlusn [mailto:[EMAIL PROTECTED] 
> Subject: Tomcat Administration
> 
> I have no clue from where the error page is being
> served cause I deleted the admin directory from
> webapps/ROOT folder.

1) Are you sure you emptied the browser cache?

2) Are you sure you're accessing the same Tomcat in which you deleted
webapps/ROOT/admin?

3) Did you change the  appBase attribute to point somewhere other
than webapps?

4) Do you have multiple  elements?

5) Is there a conf/Catalina/[host]/admin.xml file?  If not, you don't
have the admin package installed properly.

 - 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]



Tomcat Administration

2007-07-30 Thread SophieKlusn

Hi,

Need help from someone. I've downloaded and installed admin package for
Tomcat 5.5.20. However, I still see this message:
Tomcat's administration web application is no longer installed by default.
Download and install the "admin" package to use it.

I came across several posts where people had had similar problems. However,
clearing cache/reloading page etc. had helped them. Not for me though. I
even restarted my machine but it just wouldn't work. I have no clue from
where the error page is being served cause I deleted the admin directory
from webapps/ROOT folder. This is spooky! Please help!
-- 
View this message in context: 
http://www.nabble.com/Tomcat-Administration-tf4178709.html#a11882394
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
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 Administration Package Download?

2007-07-04 Thread David Smith
I think this message from one of the tomcat developers back on March 
16th described the problems with the admin webapp very well:


http://www.nabble.com/Tomcat-Administrator-tf3415576.html#a9519933

--David

[EMAIL PROTECTED] wrote:

David,
  I have searched the mailing list archives and the only entry I can
find is one that says it hasn't been ported yet. Can you tell where to find
the discussion thread you are referring to. Thankyou.

regards,
Steve Morris
IT Security Access Management
Technology Risk and Security
Technology Australia
National Australia Bank
Phone: +61-3-8634 1755 (x31755)
Mobile: +0438 537 569
email: [EMAIL PROTECTED]


   
 David Smith   
 <[EMAIL PROTECTED] 
 >  To 
   Tomcat Users List   
 02/07/2007 19:05 
cc 
   
 Please respond to Subject 
   "Tomcat Users   Re: Tomcat Administration Package   
   List"   Download?   
 <[EMAIL PROTECTED] 
 che.org>  
   
   
   
   





There is no admin webapp for tomcat 6 and there is no plan to implement
it.  This has been answered in the archives so you could do a search for
more details on why if you need more info.

--David

[EMAIL PROTECTED] wrote:
  

Hi,
  Can anybody tell me where I can find the administration package for
Tomcat 6? I have gone to the archive.apache.org/tomcat site, but it does
not have the package in the relevant Tomcat 6 directory as it does for


the
  

earlier Tomcat Versions. I have tried using the version for Tomcat


5.5.23,
  

and modified the config files to fit into the Tomcat 6 directory


structure,
  

but it doesn't work. I tried the package in the Pluto 1.1.13 Portal


Server,
  

which is using Tomcat 5.5.20 as its base, and it works fine. So at the
moment I am at a loss to know where to get it, or if it even exists yet.

regards,
Steve Morris
IT Security Access Management
Technology Risk and Security
Technology Australia
National Australia Bank
Phone: +61-3-8634 1755 (x31755)
Mobile: +0438 537 569
email: [EMAIL PROTECTED]

Earn more interest on your savings or pay less interest on your variable
home loan? You could with new Bank of New Zealand TotalMoney.Take the
TotalMoney testdrive at www.totalmoney.co.nz. TotalMoney: it all adds up.
Full details, TotalMoney terms and conditions, and disclosure statement


may
  

be obtained free of charge from any branch or www.bnz.co.nz




National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the


intended recipient, please immediately notify us at [EMAIL PROTECTED]
or by replying to the sender, and then destroy all copies of this email.
Except where this email indicates otherwise, views expressed in this email
are those of the sender and not of National Australia Bank Ltd. Advice in
this email does not take account of your objectives, financial situation,
or needs. It is important for you to consider these matters and, if the
e-mail refers to a product(s), you should read the relevant Product
Disclosure Statement(s)/other disclosure document(s) before making any
decisions. If you do not want email marketing from us in future, forward
this email with "unsubscribe" in the subject line to
[EMAIL PROTECTED] in order to stop marketing emails from this
sender. National Australia Bank Ltd does not represent that this email is
free of errors, viruses or interference.
  

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







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




National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the intended r

Re: Tomcat Administration Package Download?

2007-07-04 Thread Stephen . Morris


David,
  I have searched the mailing list archives and the only entry I can
find is one that says it hasn't been ported yet. Can you tell where to find
the discussion thread you are referring to. Thankyou.

regards,
Steve Morris
IT Security Access Management
Technology Risk and Security
Technology Australia
National Australia Bank
Phone: +61-3-8634 1755 (x31755)
Mobile: +0438 537 569
email: [EMAIL PROTECTED]


   
 David Smith   
 <[EMAIL PROTECTED] 
 >  To 
   Tomcat Users List   
 02/07/2007 19:05 
cc 
   
 Please respond to Subject 
   "Tomcat Users   Re: Tomcat Administration Package   
   List"   Download?   
 <[EMAIL PROTECTED] 
 che.org>  
   
   
   
   




There is no admin webapp for tomcat 6 and there is no plan to implement
it.  This has been answered in the archives so you could do a search for
more details on why if you need more info.

--David

[EMAIL PROTECTED] wrote:
> Hi,
>   Can anybody tell me where I can find the administration package for
> Tomcat 6? I have gone to the archive.apache.org/tomcat site, but it does
> not have the package in the relevant Tomcat 6 directory as it does for
the
> earlier Tomcat Versions. I have tried using the version for Tomcat
5.5.23,
> and modified the config files to fit into the Tomcat 6 directory
structure,
> but it doesn't work. I tried the package in the Pluto 1.1.13 Portal
Server,
> which is using Tomcat 5.5.20 as its base, and it works fine. So at the
> moment I am at a loss to know where to get it, or if it even exists yet.
>
> regards,
> Steve Morris
> IT Security Access Management
> Technology Risk and Security
> Technology Australia
> National Australia Bank
> Phone: +61-3-8634 1755 (x31755)
> Mobile: +0438 537 569
> email: [EMAIL PROTECTED]
>
> Earn more interest on your savings or pay less interest on your variable
> home loan? You could with new Bank of New Zealand TotalMoney.Take the
> TotalMoney testdrive at www.totalmoney.co.nz. TotalMoney: it all adds up.
> Full details, TotalMoney terms and conditions, and disclosure statement
may
> be obtained free of charge from any branch or www.bnz.co.nz
>
>
>
>
> National Australia Bank Ltd - ABN 12 004 044 937
> This email may contain confidential information. If you are not the
intended recipient, please immediately notify us at [EMAIL PROTECTED]
or by replying to the sender, and then destroy all copies of this email.
Except where this email indicates otherwise, views expressed in this email
are those of the sender and not of National Australia Bank Ltd. Advice in
this email does not take account of your objectives, financial situation,
or needs. It is important for you to consider these matters and, if the
e-mail refers to a product(s), you should read the relevant Product
Disclosure Statement(s)/other disclosure document(s) before making any
decisions. If you do not want email marketing from us in future, forward
this email with "unsubscribe" in the subject line to
[EMAIL PROTECTED] in order to stop marketing emails from this
sender. National Australia Bank Ltd does not represent that this email is
free of errors, viruses or interference.
>
> -
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



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




National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the intended 
recipient, please immediately notify us at [EMAIL PROTECTED] or by replying to 
the sender, and then destroy all copies of thi

Re: Tomcat Administration Package Download?

2007-07-02 Thread Stephen . Morris


Ghostrider,
  Thankyou. I have downloaded the zip file and will have a look at it.
I will need to check to see if the application works under both windows and
linux.

regards,
Steve Morris
IT Security Access Management
Technology Risk and Security
Technology Australia
National Australia Bank
Phone: +61-3-8634 1755 (x31755)
Mobile: +0438 537 569
email: [EMAIL PROTECTED]


   
 GHOSTRIDER
 <[EMAIL PROTECTED] 
 il.com>To 
   "Tomcat Users List" 
 02/07/2007 20:23 
cc 
   
 Please respond to Subject 
   "Tomcat Users   Re: Tomcat Administration Package   
   List"   Download?   
 <[EMAIL PROTECTED] 
 che.org>  
   
   
   
   




This is a freeware Tomcat management app. that was posted
here on the list some time ago that may prove to be useful to you Steve.

*Tomcat Service Manager by David Boyer*
*Link>*
http://web.bvu.edu/staff/david/index.jsp?section=software&subsection=tcservcfg&page=overview


Good Luck

Visit My Home On The Web @
http://ghostradionet.com

GHOSTRIDER INTERNET RADIO
*"..Rocking New YorkAnd The Web..."
*

On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
>
> Hi,
>  Can anybody tell me where I can find the administration package for
> Tomcat 6? I have gone to the archive.apache.org/tomcat site, but it does
> not have the package in the relevant Tomcat 6 directory as it does for
the
> earlier Tomcat Versions. I have tried using the version for Tomcat
5.5.23,
> and modified the config files to fit into the Tomcat 6 directory
> structure,
> but it doesn't work. I tried the package in the Pluto 1.1.13 Portal
> Server,
> which is using Tomcat 5.5.20 as its base, and it works fine. So at the
> moment I am at a loss to know where to get it, or if it even exists yet.
>
> regards,
> Steve Morris
> IT Security Access Management
> Technology Risk and Security
> Technology Australia
> National Australia Bank
> Phone: +61-3-8634 1755 (x31755)
> Mobile: +0438 537 569
> email: [EMAIL PROTECTED]
>
> Earn more interest on your savings or pay less interest on your variable
> home loan? You could with new Bank of New Zealand TotalMoney.Take the
> TotalMoney testdrive at www.totalmoney.co.nz. TotalMoney: it all adds up.
> Full details, TotalMoney terms and conditions, and disclosure statement
> may
> be obtained free of charge from any branch or www.bnz.co.nz
>
>
>
>
> National Australia Bank Ltd - ABN 12 004 044 937
> This email may contain confidential information. If you are not the
> intended recipient, please immediately notify us at
[EMAIL PROTECTED] by replying to the sender, and then destroy all
copies of this email.
> Except where this email indicates otherwise, views expressed in this
email
> are those of the sender and not of National Australia Bank Ltd. Advice in
> this email does not take account of your objectives, financial situation,
or
> needs. It is important for you to consider these matters and, if the
e-mail
> refers to a product(s), you should read the relevant Product Disclosure
> Statement(s)/other disclosure document(s) before making any decisions. If
> you do not want email marketing from us in future, forward this email
with
> "unsubscribe" in the subject line to [EMAIL PROTECTED] in order
> to stop marketing emails from this sender. National Australia Bank Ltd
does
> not represent that this email is free of errors, viruses or interference.
>
> -
> To start a new topic, e-mail: users@tomcat.apache.org
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>



National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the intended 
recipient, please immediately notify u

Re: Tomcat Administration Package Download?

2007-07-02 Thread GHOSTRIDER

This is a freeware Tomcat management app. that was posted
here on the list some time ago that may prove to be useful to you Steve.

*Tomcat Service Manager by David Boyer*
*Link>*
http://web.bvu.edu/staff/david/index.jsp?section=software&subsection=tcservcfg&page=overview

Good Luck

Visit My Home On The Web @
http://ghostradionet.com

GHOSTRIDER INTERNET RADIO
*"..Rocking New YorkAnd The Web..."
*

On 7/2/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:



Hi,
 Can anybody tell me where I can find the administration package for
Tomcat 6? I have gone to the archive.apache.org/tomcat site, but it does
not have the package in the relevant Tomcat 6 directory as it does for the
earlier Tomcat Versions. I have tried using the version for Tomcat 5.5.23,
and modified the config files to fit into the Tomcat 6 directory
structure,
but it doesn't work. I tried the package in the Pluto 1.1.13 Portal
Server,
which is using Tomcat 5.5.20 as its base, and it works fine. So at the
moment I am at a loss to know where to get it, or if it even exists yet.

regards,
Steve Morris
IT Security Access Management
Technology Risk and Security
Technology Australia
National Australia Bank
Phone: +61-3-8634 1755 (x31755)
Mobile: +0438 537 569
email: [EMAIL PROTECTED]

Earn more interest on your savings or pay less interest on your variable
home loan? You could with new Bank of New Zealand TotalMoney.Take the
TotalMoney testdrive at www.totalmoney.co.nz. TotalMoney: it all adds up.
Full details, TotalMoney terms and conditions, and disclosure statement
may
be obtained free of charge from any branch or www.bnz.co.nz




National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the
intended recipient, please immediately notify us at [EMAIL PROTECTED] by 
replying to the sender, and then destroy all copies of this email.
Except where this email indicates otherwise, views expressed in this email
are those of the sender and not of National Australia Bank Ltd. Advice in
this email does not take account of your objectives, financial situation, or
needs. It is important for you to consider these matters and, if the e-mail
refers to a product(s), you should read the relevant Product Disclosure
Statement(s)/other disclosure document(s) before making any decisions. If
you do not want email marketing from us in future, forward this email with
"unsubscribe" in the subject line to [EMAIL PROTECTED] in order
to stop marketing emails from this sender. National Australia Bank Ltd does
not represent that this email is free of errors, viruses or interference.

-
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 Administration Package Download?

2007-07-02 Thread David Smith
There is no admin webapp for tomcat 6 and there is no plan to implement 
it.  This has been answered in the archives so you could do a search for 
more details on why if you need more info.


--David

[EMAIL PROTECTED] wrote:

Hi,
  Can anybody tell me where I can find the administration package for
Tomcat 6? I have gone to the archive.apache.org/tomcat site, but it does
not have the package in the relevant Tomcat 6 directory as it does for the
earlier Tomcat Versions. I have tried using the version for Tomcat 5.5.23,
and modified the config files to fit into the Tomcat 6 directory structure,
but it doesn't work. I tried the package in the Pluto 1.1.13 Portal Server,
which is using Tomcat 5.5.20 as its base, and it works fine. So at the
moment I am at a loss to know where to get it, or if it even exists yet.

regards,
Steve Morris
IT Security Access Management
Technology Risk and Security
Technology Australia
National Australia Bank
Phone: +61-3-8634 1755 (x31755)
Mobile: +0438 537 569
email: [EMAIL PROTECTED]

Earn more interest on your savings or pay less interest on your variable
home loan? You could with new Bank of New Zealand TotalMoney.Take the
TotalMoney testdrive at www.totalmoney.co.nz. TotalMoney: it all adds up.
Full details, TotalMoney terms and conditions, and disclosure statement may
be obtained free of charge from any branch or www.bnz.co.nz




National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the intended recipient, 
please immediately notify us at [EMAIL PROTECTED] or by replying to the sender, and then 
destroy all copies of this email. Except where this email indicates otherwise, views 
expressed in this email are those of the sender and not of National Australia Bank Ltd. 
Advice in this email does not take account of your objectives, financial situation, or 
needs. It is important for you to consider these matters and, if the e-mail refers to a 
product(s), you should read the relevant Product Disclosure Statement(s)/other disclosure 
document(s) before making any decisions. If you do not want email marketing from us in 
future, forward this email with "unsubscribe" in the subject line to [EMAIL 
PROTECTED] in order to stop marketing emails from this sender. National Australia Bank 
Ltd does not represent that this email is free of errors, viruses or interference.

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

  




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



Tomcat Administration Package Download?

2007-07-02 Thread Stephen . Morris

Hi,
  Can anybody tell me where I can find the administration package for
Tomcat 6? I have gone to the archive.apache.org/tomcat site, but it does
not have the package in the relevant Tomcat 6 directory as it does for the
earlier Tomcat Versions. I have tried using the version for Tomcat 5.5.23,
and modified the config files to fit into the Tomcat 6 directory structure,
but it doesn't work. I tried the package in the Pluto 1.1.13 Portal Server,
which is using Tomcat 5.5.20 as its base, and it works fine. So at the
moment I am at a loss to know where to get it, or if it even exists yet.

regards,
Steve Morris
IT Security Access Management
Technology Risk and Security
Technology Australia
National Australia Bank
Phone: +61-3-8634 1755 (x31755)
Mobile: +0438 537 569
email: [EMAIL PROTECTED]

Earn more interest on your savings or pay less interest on your variable
home loan? You could with new Bank of New Zealand TotalMoney.Take the
TotalMoney testdrive at www.totalmoney.co.nz. TotalMoney: it all adds up.
Full details, TotalMoney terms and conditions, and disclosure statement may
be obtained free of charge from any branch or www.bnz.co.nz




National Australia Bank Ltd - ABN 12 004 044 937
This email may contain confidential information. If you are not the intended 
recipient, please immediately notify us at [EMAIL PROTECTED] or by replying to 
the sender, and then destroy all copies of this email. Except where this email 
indicates otherwise, views expressed in this email are those of the sender and 
not of National Australia Bank Ltd. Advice in this email does not take account 
of your objectives, financial situation, or needs. It is important for you to 
consider these matters and, if the e-mail refers to a product(s), you should 
read the relevant Product Disclosure Statement(s)/other disclosure document(s) 
before making any decisions. If you do not want email marketing from us in 
future, forward this email with "unsubscribe" in the subject line to [EMAIL 
PROTECTED] in order to stop marketing emails from this sender. National 
Australia Bank Ltd does not represent that this email is free of errors, 
viruses or interference.

-
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 Administration HTTP Status 500 -

2007-06-07 Thread Elton Kong
03) 

   at 
org.apache.struts.util.RequestUtils.message(RequestUtils.java:1043)
   at 
org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:294)
   at 
org.apache.jsp.login_jsp._jspx_meth_bean_message_0(login_jsp.java:206)

   at org.apache.jsp.login_jsp._jspService(login_jsp.java:85)
   at 
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)

   at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
   at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162) 

   at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
   at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)




Martin Gainty wrote:

Hi Elton
what does the log say at
$CATALINA_HOME/logs/admin.-MM-DD.log
Thanks/
M--
This email message and any files transmitted with it contain 
confidential
information intended only for the person(s) to whom this email 
message is
addressed.  If you have received this email message in error, please 
notify

the sender immediately by telephone or email and destroy the original
message without making a copy.  Thank you.

- Original Message - From: "Elton Kong" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, June 06, 2007 4:37 PM
Subject: Tomcat Administration HTTP Status 500 -



Hi,

I've been trying to troubleshoot this problem and could not figure 
out a solution to it. Basically I have installed an instance of 
tomcat 4.1.31. I have configured the tomcat-user.xml for an admin 
login and manager login. The manager login works fine, but when I 
click the administration, I get to a HTTP Status 500 page. It says 
that it is a type Exception report and the description of this 
error is _The server encountered an internal error () that 
prevented it from fulfilling this request._ I have read through 
multiple google threads on this and haven't found one reason for 
this error. One thread did hypothesize that it is due to using 
Jasper JSP but I'm not sure if this is the real reason. Does anyone 
know how to fix this problem? Please let me know, thanks!


Elton





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




-
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 Administration HTTP Status 500 -

2007-06-07 Thread David Smith
n_jsp._jspService(login_jsp.java:85)
   at 
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:92)

   at javax.servlet.http.HttpServlet.service(HttpServlet.java:809)
   at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:162) 

   at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)
   at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)




Martin Gainty wrote:

Hi Elton
what does the log say at
$CATALINA_HOME/logs/admin.-MM-DD.log
Thanks/
M--
This email message and any files transmitted with it contain 
confidential
information intended only for the person(s) to whom this email 
message is
addressed.  If you have received this email message in error, please 
notify

the sender immediately by telephone or email and destroy the original
message without making a copy.  Thank you.

- Original Message - From: "Elton Kong" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, June 06, 2007 4:37 PM
Subject: Tomcat Administration HTTP Status 500 -



Hi,

I've been trying to troubleshoot this problem and could not figure 
out a solution to it. Basically I have installed an instance of 
tomcat 4.1.31. I have configured the tomcat-user.xml for an admin 
login and manager login. The manager login works fine, but when I 
click the administration, I get to a HTTP Status 500 page. It says 
that it is a type Exception report and the description of this error 
is _The server encountered an internal error () that prevented it 
from fulfilling this request._ I have read through multiple google 
threads on this and haven't found one reason for this error. One 
thread did hypothesize that it is due to using Jasper JSP but I'm 
not sure if this is the real reason. Does anyone know how to fix 
this problem? Please let me know, thanks!


Elton





-
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 Administration HTTP Status 500 -

2007-06-06 Thread Elton Kong
 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:240)

   at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:187)



Martin Gainty wrote:

Hi Elton
what does the log say at
$CATALINA_HOME/logs/admin.-MM-DD.log
Thanks/
M--
This email message and any files transmitted with it contain confidential
information intended only for the person(s) to whom this email message is
addressed.  If you have received this email message in error, please 
notify

the sender immediately by telephone or email and destroy the original
message without making a copy.  Thank you.

- Original Message - From: "Elton Kong" <[EMAIL PROTECTED]>
To: 
Sent: Wednesday, June 06, 2007 4:37 PM
Subject: Tomcat Administration HTTP Status 500 -



Hi,

I've been trying to troubleshoot this problem and could not figure 
out a solution to it. Basically I have installed an instance of 
tomcat 4.1.31. I have configured the tomcat-user.xml for an admin 
login and manager login. The manager login works fine, but when I 
click the administration, I get to a HTTP Status 500 page. It says 
that it is a type Exception report and the description of this error 
is _The server encountered an internal error () that prevented it 
from fulfilling this request._ I have read through multiple google 
threads on this and haven't found one reason for this error. One 
thread did hypothesize that it is due to using Jasper JSP but I'm not 
sure if this is the real reason. Does anyone know how to fix this 
problem? Please let me know, thanks!


Elton


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




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




-
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 Administration HTTP Status 500 -

2007-06-06 Thread Martin Gainty

Hi Elton
what does the log say at
$CATALINA_HOME/logs/admin.-MM-DD.log
Thanks/
M--
This email message and any files transmitted with it contain confidential
information intended only for the person(s) to whom this email message is
addressed.  If you have received this email message in error, please notify
the sender immediately by telephone or email and destroy the original
message without making a copy.  Thank you.

- Original Message - 
From: "Elton Kong" <[EMAIL PROTECTED]>

To: 
Sent: Wednesday, June 06, 2007 4:37 PM
Subject: Tomcat Administration HTTP Status 500 -



Hi,

I've been trying to troubleshoot this problem and could not figure out a 
solution to it. Basically I have installed an instance of tomcat 4.1.31. 
I have configured the tomcat-user.xml for an admin login and manager 
login. The manager login works fine, but when I click the 
administration, I get to a HTTP Status 500 page. It says that it is a 
type Exception report and the description of this error is _The server 
encountered an internal error () that prevented it from fulfilling this 
request._ I have read through multiple google threads on this and 
haven't found one reason for this error. One thread did hypothesize that 
it is due to using Jasper JSP but I'm not sure if this is the real 
reason. Does anyone know how to fix this problem? Please let me know, 
thanks!


Elton


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




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



Tomcat Administration HTTP Status 500 -

2007-06-06 Thread Elton Kong

Hi,

I've been trying to troubleshoot this problem and could not figure out a 
solution to it. Basically I have installed an instance of tomcat 4.1.31. 
I have configured the tomcat-user.xml for an admin login and manager 
login. The manager login works fine, but when I click the 
administration, I get to a HTTP Status 500 page. It says that it is a 
type Exception report and the description of this error is _The server 
encountered an internal error () that prevented it from fulfilling this 
request._ I have read through multiple google threads on this and 
haven't found one reason for this error. One thread did hypothesize that 
it is due to using Jasper JSP but I'm not sure if this is the real 
reason. Does anyone know how to fix this problem? Please let me know, 
thanks!


Elton


-
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 Administration

2007-04-17 Thread Martin Gainty

Ven

With tomcat 5.5 Admin Isnt installed by default anymore you will have to 
install manually
go to manager page and at bottom manually browse for catalina-admin.war and 
browse for the war file

webapps\catalina-admin.war
and deploy

Martin
This email message and any files transmitted with it contain confidential
information intended only for the person(s) to whom this email message is
addressed.  If you have received this email message in error, please notify
the sender immediately by telephone or email and destroy the original
message without making a copy.  Thank you.

- Original Message - 
From: "Venkata Naveen" <[EMAIL PROTECTED]>

To: 
Sent: Tuesday, April 17, 2007 1:46 AM
Subject: Tomcat Administration




hi Hi iam unable to get the tomcat administration page. It is giving the
message like "Tomcat's administration web application is no longer 
installed

by default. Download and install the "admin" package to use it. " where to
get the tomcat admin package, and how to install that admin into the 
tomcat

directory. please help me friends...







Thanks & regards Venkata Naveen
--
View this message in context: 
http://www.nabble.com/Tomcat-Administration-tf3588935.html#a10029555

Sent from the Tomcat - User mailing list archive at Nabble.com.


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





-
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 Administration

2007-04-17 Thread David Smith
Your question is answered in the tomcat FAQ.  See the link below for 
further information:


http://wiki.apache.org/tomcat/HowTo#head-f50555909547d981d0e2b030323632b26047013e

--David

Venkata Naveen wrote:


hi Hi iam unable to get the tomcat administration page. It is giving the
message like "Tomcat's administration web application is no longer installed
by default. Download and install the "admin" package to use it. " where to
get the tomcat admin package, and how to install that admin into the tomcat
directory. please help me friends... 








Thanks & regards Venkata Naveen
 




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



Réf. : Tomcat Administration

2007-04-17 Thread jean-louis . mateo

Hello,

you can find it at this URL

http://tomcat.apache.org/download-55.cgi

Best regards




 
  Venkata Naveen
 
  cc :   
 
 Objet :  Tomcat 
Administration  
  17/04/2007 07:46  
 
  Veuillez répondre à   
 
  "Tomcat Users List"   
 

 

 




hi Hi iam unable to get the tomcat administration page. It is giving the
message like "Tomcat's administration web application is no longer
installed
by default. Download and install the "admin" package to use it. " where to
get the tomcat admin package, and how to install that admin into the tomcat
directory. please help me friends...







Thanks & regards Venkata Naveen
--
View this message in context:
http://www.nabble.com/Tomcat-Administration-tf3588935.html#a10029555
Sent from the Tomcat - User mailing list archive at Nabble.com.


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







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



Tomcat Administration

2007-04-16 Thread Venkata Naveen

hi Hi iam unable to get the tomcat administration page. It is giving the
message like "Tomcat's administration web application is no longer installed
by default. Download and install the "admin" package to use it. " where to
get the tomcat admin package, and how to install that admin into the tomcat
directory. please help me friends... 







Thanks & regards Venkata Naveen
-- 
View this message in context: 
http://www.nabble.com/Tomcat-Administration-tf3588935.html#a10029555
Sent from the Tomcat - User mailing list archive at Nabble.com.


-
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 Administration

2007-03-31 Thread dimitryous r .

Hello,

I did what you suggested:
so now I have :

in the directory /usr/local/apache-tomcat-5.5.20/conf/Catalina/ 
localhost/

conf/___
___Catalina
__localhost
_admin.xml
_host-manager.xml
_manager.xml

and in /usr/local/apache-tomcat-5.5.20/server/webapps/

server/__
___webapps
__/admin/
admin.css
admin.xml
etc...
__/host-manager/
etc...
__/manager/
etc...

But when I http://192.168.0.1:8080/admin/ I get the same message as  
before... (after restarting the server).
This message is coming from /usr/local/apache-tomcat-5.5.20/webapps/ 
ROOT/admin/index.html


Will not change the link but have (in the file .../ROOT/admin/ 
index.html) to redirect to xxx. jsp?


There is no index.jsp in the directory .../server/webapps/admin/ so  
what do I have to do?


Is my configuration ok?

Thank you.

Unfortunately there is no guidelines as to what to do when you  
download the admin stuff. Not a word !!!.

On 31 mars 07, at 14:19, Tim Lucia wrote:




-Original Message-
From: dimitryous r. [mailto:[EMAIL PROTECTED]
Sent: Saturday, March 31, 2007 8:04 AM
To: Apache Tomcat
Subject: Tomcat Administration

Hello,
I just finished my upgrade to Apache Tomcat/5.5.20.

I know that for security reasons, using the administration webapp is
restricted to users with role "admin".

The is correct in "/usr/local/apache-tomcat-5.5.20/conf/tomcat-
users.xml" file (I'm admin and manager) but still I get the message:
"Tomcat's administration web application is no longer installed by
default. Download and install the "admin" package to use it."

Then downloaded the package at http://archive.apache.org/dist/tomcat/
tomcat-5/v5.5.20/bin/.

Just don't know where to put (? directory) the extracted files in.


Take the 'conf' directory from the zip and install it over the conf
directory of your installed tomcat area (this provides
conf/Catalina/localhost/admin.xml).  Take the 'server' directory  
from the

zip and ...

Tim



Help me please,

TIA

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





-
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 Administration

2007-03-31 Thread Tim Lucia

> -Original Message-
> From: dimitryous r. [mailto:[EMAIL PROTECTED]
> Sent: Saturday, March 31, 2007 8:04 AM
> To: Apache Tomcat
> Subject: Tomcat Administration
> 
> Hello,
> I just finished my upgrade to Apache Tomcat/5.5.20.
> 
> I know that for security reasons, using the administration webapp is
> restricted to users with role "admin".
> 
> The is correct in "/usr/local/apache-tomcat-5.5.20/conf/tomcat-
> users.xml" file (I'm admin and manager) but still I get the message:
> "Tomcat's administration web application is no longer installed by
> default. Download and install the "admin" package to use it."
> 
> Then downloaded the package at http://archive.apache.org/dist/tomcat/
> tomcat-5/v5.5.20/bin/.
> 
> Just don't know where to put (? directory) the extracted files in.

Take the 'conf' directory from the zip and install it over the conf
directory of your installed tomcat area (this provides
conf/Catalina/localhost/admin.xml).  Take the 'server' directory from the
zip and ...

Tim

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




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



Tomcat Administration

2007-03-31 Thread dimitryous r.

Hello,
I just finished my upgrade to Apache Tomcat/5.5.20.

I know that for security reasons, using the administration webapp is  
restricted to users with role "admin".


The is correct in "/usr/local/apache-tomcat-5.5.20/conf/tomcat- 
users.xml" file (I'm admin and manager) but still I get the message:
"Tomcat's administration web application is no longer installed by  
default. Download and install the "admin" package to use it."


Then downloaded the package at http://archive.apache.org/dist/tomcat/ 
tomcat-5/v5.5.20/bin/.


Just don't know where to put (? directory) the extracted files in.

Help me please,

TIA

-
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 administration data sources/jndi

2007-02-02 Thread Aljosa Mohorovic

line

DataSource ds = (DataSource) initialContext.lookup("java:comp/env/jdbc/zbi");

is

DataSource ds = (DataSource) initialContext.lookup("java:comp/env/jdbc/test");


On 2/2/07, Aljosa Mohorovic <[EMAIL PROTECTED]> wrote:

i created jndi datasource in tomcat administration (Resources > Data
Sources > "JNDI Name"=test) and failed to access it in code:

CODE:
>>>
InitialContext initialContext = new InitialContext();
DataSource ds = (DataSource) initialContext.lookup("java:comp/env/jdbc/zbi");
<<<

i get this exception:
javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

any help is appreciated.

Aljosa




--
Aljosa Mohorovic

http://www.revolucija.hr
Ivana Lucica 5
1 Zagreb, Croatia

+385 (0)1 616 8414

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



tomcat administration data sources/jndi

2007-02-02 Thread Aljosa Mohorovic

i created jndi datasource in tomcat administration (Resources > Data
Sources > "JNDI Name"=test) and failed to access it in code:

CODE:



InitialContext initialContext = new InitialContext();
DataSource ds = (DataSource) initialContext.lookup("java:comp/env/jdbc/zbi");
<<<

i get this exception:
javax.naming.NameNotFoundException: Name jdbc is not bound in this Context

any help is appreciated.

Aljosa

-
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 Administration & SQL Server 2005

2006-09-06 Thread Garthfield Carter

Hi Jimmy,

Firstly no need to send a message twice! A quick Google gave me the 
following:


Apache / Tomcat 5.5 / Windows - 
http://www.devside.net/web/server/windows/tomcat


You can download the SQL Server 2005 JDBC Driver from Microsoft from here:

http://www.microsoft.com/downloads/details.aspx?FamilyID=07287B11-0502-461A-B138-2AA54BFDC03A&displaylang=en

I've never used or configured this but it's a jar file so I assume you 
place it in common/lib just like you would the MySQL driver. Then create 
yourself a DB Pool:


http://tomcat.apache.org/tomcat-5.5-doc/jndi-datasource-examples-howto.html

The examples here though don't include a SQL Server connection example. 
Again a quick Google found this on Microsoft. There's a Tomcat example 
in there (Who would have thought they'd do that :-)):


http://support.microsoft.com/kb/313173/

Garthfield

Jimmy Lindsey wrote:


I need help with the following Tomcat issues:

1. I have Tomcat 5.5 running on a windows PC, but I am unable to get
Tomcat Administration to work.

2. I need help on getting SQL Server 2005 to work with Tomcat 5.5.

3. How to setup Tomcat to work with Apache Web Server.

Thanks

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

 



-
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 Administration & SQL Server 2005

2006-09-06 Thread Jimmy Lindsey

I need help with the following Tomcat issues:

1. I have Tomcat 5.5 running on a windows PC, but I am unable to get
Tomcat Administration to work.

2. I need help on getting SQL Server 2005 to work with Tomcat 5.5.

3. How to setup Tomcat to work with Apache Web Server.

Thanks

-
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 Administration & SQL Server 2005

2006-09-06 Thread Jimmy Lindsey

I need help with the following Tomcat issues:

1. I have Tomcat 5.5 running on a windows PC, but I am unable to get
Tomcat Administration to work.

2. I need help on getting SQL Server 2005 to work with Tomcat 5.5.

3. How to setup Tomcat to work with Apache Web Server.

Thanks

-
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: Error in tomcat, after logging in to the Tomcat Administration page

2006-07-01 Thread Vinu Varghese

hi
Did u ever looked at the logs -> catalina.out ?

- regards
Vinu

[EMAIL PROTECTED] wrote:

Hi everyone,

 After logging in to the Tomcat Administration page, I 
am getting Error status as 500 in right frame for every link on left 
frame, which represetns some internal sever error, I am not getting 
why it has happend so, If any one can tell me the resone why it has 
happend so along with solution I am gald and please to take that,


Thanks in Advance,

Regards.

_
Sexy, sultry, sensuous. - see why Bipasha Basu is all that and more. 
Try MSN Search http://server1.msn.co.in/Profile/bipashabasu.asp



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





--


Vinu Varghese
[EMAIL PROTECTED]
www.x-minds.org



Error in tomcat, after logging in to the Tomcat Administration page

2006-06-30 Thread minchunaveen

Hi everyone,

 After logging in to the Tomcat Administration page, I am 
getting Error status as 500 in right frame for every link on left frame, 
which represetns some internal sever error, I am not getting why it has 
happend so, If any one can tell me the resone why it has happend so along 
with solution I am gald and please to take that,


Thanks in Advance,

Regards.

_
Sexy, sultry, sensuous. - see why Bipasha Basu is all that and more. Try MSN 
Search http://server1.msn.co.in/Profile/bipashabasu.asp



-
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: How to enter in Tomcat Administration?

2006-03-12 Thread Nenad Bosanac
I finally got it!
It was problem with roles.I didn`t put admin role
im tomcat-users.xml file.Now it works fantastic.
thanks for your help

--- Markus Schönhaber
<[EMAIL PROTECTED]> wrote:

> Nenad Bosanac wrote:
> > Well you said
> >
> > >Make that . But that
> shouldn't
> > >be the culprit.
> >
> > How i can make username?
> 
> In your tomcat-user.xml (as you propably copied from
> the docs):
>   It should be:
>   But Tomcat should accept either one - my comment was
> simply informational.
> 
> > You said
> >
> > >Hard to tell. Have you configured a
> RemoteAddrValve
> > >to protect the manager app
> > >or something like that?
> >
> > What is RemoteAddrValve and how can i configure
> this
> 
> It's for example mentioned at the end of this
> section:
>
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html#Configuring%20Manager%20Application%20Access
> 
> More information is to be found here:
>
http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html
> 
> Look at your
> .../conf/Catalina/localhost/manager.xml
> if there's a Valve configured.
> 
> > you also said
> >
> > >Do the logfiles contain any error messages?
> >
> > My log file named localhost.2006-03-11 contain
> next
> > text:
> > /***
> > Mar 11, 2006 12:03:47 PM
> > org.apache.catalina.core.ApplicationContext log
> > INFO: org.apache.webapp.balancer.BalancerFilter:
> > init(): ruleChain:
> > [org.apache.webapp.balancer.RuleChain:
> >
>
[org.apache.webapp.balancer.rules.URLStringMatchRule:
> > Target string: News / Redirect URL:
> > http://www.cnn.com],
> >
>
[org.apache.webapp.balancer.rules.RequestParameterRule:
> > Target param name: paramName / Target param value:
> > paramValue / Redirect URL: http://www.yahoo.com],
> >
>
[org.apache.webapp.balancer.rules.AcceptEverythingRule:
> > Redirect URL: http://jakarta.apache.org]]
> > Mar 11, 2006 2:02:52 PM
> > org.apache.catalina.core.ApplicationContext log
> > INFO: org.apache.webapp.balancer.BalancerFilter:
> > init(): ruleChain:
> > [org.apache.webapp.balancer.RuleChain:
> >
>
[org.apache.webapp.balancer.rules.URLStringMatchRule:
> > Target string: News / Redirect URL:
> > http://www.cnn.com],
> >
>
[org.apache.webapp.balancer.rules.RequestParameterRule:
> > Target param name: paramName / Target param value:
> > paramValue / Redirect URL: http://www.yahoo.com],
> >
>
[org.apache.webapp.balancer.rules.AcceptEverythingRule:
> > Redirect URL: http://jakarta.apache.org]]
> > Mar 11, 2006 4:47:27 PM
> > org.apache.catalina.core.ApplicationContext log
> > INFO: org.apache.webapp.balancer.BalancerFilter:
> > init(): ruleChain:
> > [org.apache.webapp.balancer.RuleChain:
> >
>
[org.apache.webapp.balancer.rules.URLStringMatchRule:
> > Target string: News / Redirect URL:
> > http://www.cnn.com],
> >
>
[org.apache.webapp.balancer.rules.RequestParameterRule:
> > Target param name: paramName / Target param value:
> > paramValue / Redirect URL: http://www.yahoo.com],
> >
>
[org.apache.webapp.balancer.rules.AcceptEverythingRule:
> > Redirect URL: http://jakarta.apache.org]]
> > /**
> 
> Don't see anything unusual in there. Maybe in
> catalina.out?
> 
> > I don`t now what`s happing! Is there any good
> tutorial
> > how to enter in Tomcat Administartion tool or is
> this
> > so complicated
> 
> It's very easy. Just add a user with role manager to
> tomcat-user.xml and it 
> should work. Why it doesn't work for you, I have no
> idea.
> 
> Regards
>   mks
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



Re: How to enter in Tomcat Administration?

2006-03-12 Thread Markus Schönhaber
Nenad Bosanac wrote:
> Well you said
>
> >Make that . But that shouldn't
> >be the culprit.
>
> How i can make username?

In your tomcat-user.xml (as you propably copied from the docs):
  You said
>
> >Hard to tell. Have you configured a RemoteAddrValve
> >to protect the manager app
> >or something like that?
>
> What is RemoteAddrValve and how can i configure this

It's for example mentioned at the end of this section:
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html#Configuring%20Manager%20Application%20Access

More information is to be found here:
http://tomcat.apache.org/tomcat-5.5-doc/config/valve.html

Look at your
.../conf/Catalina/localhost/manager.xml
if there's a Valve configured.

> you also said
>
> >Do the logfiles contain any error messages?
>
> My log file named localhost.2006-03-11 contain next
> text:
> /***
> Mar 11, 2006 12:03:47 PM
> org.apache.catalina.core.ApplicationContext log
> INFO: org.apache.webapp.balancer.BalancerFilter:
> init(): ruleChain:
> [org.apache.webapp.balancer.RuleChain:
> [org.apache.webapp.balancer.rules.URLStringMatchRule:
> Target string: News / Redirect URL:
> http://www.cnn.com],
> [org.apache.webapp.balancer.rules.RequestParameterRule:
> Target param name: paramName / Target param value:
> paramValue / Redirect URL: http://www.yahoo.com],
> [org.apache.webapp.balancer.rules.AcceptEverythingRule:
> Redirect URL: http://jakarta.apache.org]]
> Mar 11, 2006 2:02:52 PM
> org.apache.catalina.core.ApplicationContext log
> INFO: org.apache.webapp.balancer.BalancerFilter:
> init(): ruleChain:
> [org.apache.webapp.balancer.RuleChain:
> [org.apache.webapp.balancer.rules.URLStringMatchRule:
> Target string: News / Redirect URL:
> http://www.cnn.com],
> [org.apache.webapp.balancer.rules.RequestParameterRule:
> Target param name: paramName / Target param value:
> paramValue / Redirect URL: http://www.yahoo.com],
> [org.apache.webapp.balancer.rules.AcceptEverythingRule:
> Redirect URL: http://jakarta.apache.org]]
> Mar 11, 2006 4:47:27 PM
> org.apache.catalina.core.ApplicationContext log
> INFO: org.apache.webapp.balancer.BalancerFilter:
> init(): ruleChain:
> [org.apache.webapp.balancer.RuleChain:
> [org.apache.webapp.balancer.rules.URLStringMatchRule:
> Target string: News / Redirect URL:
> http://www.cnn.com],
> [org.apache.webapp.balancer.rules.RequestParameterRule:
> Target param name: paramName / Target param value:
> paramValue / Redirect URL: http://www.yahoo.com],
> [org.apache.webapp.balancer.rules.AcceptEverythingRule:
> Redirect URL: http://jakarta.apache.org]]
> /**

Don't see anything unusual in there. Maybe in catalina.out?

> I don`t now what`s happing! Is there any good tutorial
> how to enter in Tomcat Administartion tool or is this
> so complicated

It's very easy. Just add a user with role manager to tomcat-user.xml and it 
should work. Why it doesn't work for you, I have no idea.

Regards
  mks

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



Re: How to enter in Tomcat Administration?

2006-03-11 Thread Nenad Bosanac
Well you said 
>Make that . But that shouldn't
>be the culprit.
How i can make username?
You said
>Hard to tell. Have you configured a RemoteAddrValve
>to protect the manager app 
>or something like that?
What is RemoteAddrValve and how can i configure this

you also said
>Do the logfiles contain any error messages?
My log file named localhost.2006-03-11 contain next
text:
/***
Mar 11, 2006 12:03:47 PM
org.apache.catalina.core.ApplicationContext log
INFO: org.apache.webapp.balancer.BalancerFilter:
init(): ruleChain:
[org.apache.webapp.balancer.RuleChain:
[org.apache.webapp.balancer.rules.URLStringMatchRule:
Target string: News / Redirect URL:
http://www.cnn.com],
[org.apache.webapp.balancer.rules.RequestParameterRule:
Target param name: paramName / Target param value:
paramValue / Redirect URL: http://www.yahoo.com],
[org.apache.webapp.balancer.rules.AcceptEverythingRule:
Redirect URL: http://jakarta.apache.org]]
Mar 11, 2006 2:02:52 PM
org.apache.catalina.core.ApplicationContext log
INFO: org.apache.webapp.balancer.BalancerFilter:
init(): ruleChain:
[org.apache.webapp.balancer.RuleChain:
[org.apache.webapp.balancer.rules.URLStringMatchRule:
Target string: News / Redirect URL:
http://www.cnn.com],
[org.apache.webapp.balancer.rules.RequestParameterRule:
Target param name: paramName / Target param value:
paramValue / Redirect URL: http://www.yahoo.com],
[org.apache.webapp.balancer.rules.AcceptEverythingRule:
Redirect URL: http://jakarta.apache.org]]
Mar 11, 2006 4:47:27 PM
org.apache.catalina.core.ApplicationContext log
INFO: org.apache.webapp.balancer.BalancerFilter:
init(): ruleChain:
[org.apache.webapp.balancer.RuleChain:
[org.apache.webapp.balancer.rules.URLStringMatchRule:
Target string: News / Redirect URL:
http://www.cnn.com],
[org.apache.webapp.balancer.rules.RequestParameterRule:
Target param name: paramName / Target param value:
paramValue / Redirect URL: http://www.yahoo.com],
[org.apache.webapp.balancer.rules.AcceptEverythingRule:
Redirect URL: http://jakarta.apache.org]]
/**

I don`t now what`s happing! Is there any good tutorial
how to enter in Tomcat Administartion tool or is this
so complicated

--- Markus Schönhaber
<[EMAIL PROTECTED]> wrote:

> Nenad Bosanac wrote:
> > Thank you for your very fast response but ihave
> same
> > problem again.
> > I try to change tomcat-users.xml and he looks like
> > this
> >
> > /*
> > 
> > 
> >   
> >   
> >   
> >   
> >> roles="standard,manager" />
> 
> Make that . But that shouldn't
> be the culprit.
> 
> >> roles="tomcat"/>
> >> roles="tomcat,role1"/>
> >> roles="role1"/>
> > 
> > /**
> >
> > Of course i change this xml file and start tomcat
> > again and try to login like craigmcc(username) and
> > secret(password) and i got this response
> >
> > /*
> > HTTP Status 403 - Access to the requested resource
> has
> > been denied
> >
> > type Status report
> >
> > message Access to the requested resource has been
> > denied
> >
> > description Access to the specified resource
> (Access
> > to the requested resource has been denied) has
> been
> > forbidden.
> > /**
> > What i make wrong?
> 
> Hard to tell. Have you configured a RemoteAddrValve
> to protect the manager app 
> or something like that?
> Do the logfiles contain any error messages?
> 
> Regards
>   mks
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



Re: How to enter in Tomcat Administration?

2006-03-11 Thread Markus Schönhaber
Nenad Bosanac wrote:
> Thank you for your very fast response but ihave same
> problem again.
> I try to change tomcat-users.xml and he looks like
> this
>
> /*
> 
> 
>   
>   
>   
>   
>roles="standard,manager" />

Make that . But that shouldn't be the culprit.

>roles="tomcat"/>
>roles="tomcat,role1"/>
>roles="role1"/>
> 
> /**
>
> Of course i change this xml file and start tomcat
> again and try to login like craigmcc(username) and
> secret(password) and i got this response
>
> /*
> HTTP Status 403 - Access to the requested resource has
> been denied
>
> type Status report
>
> message Access to the requested resource has been
> denied
>
> description Access to the specified resource (Access
> to the requested resource has been denied) has been
> forbidden.
> /**
> What i make wrong?

Hard to tell. Have you configured a RemoteAddrValve to protect the manager app 
or something like that?
Do the logfiles contain any error messages?

Regards
  mks

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



Re: How to enter in Tomcat Administration?

2006-03-11 Thread Nenad Bosanac
Thank you for your very fast response but ihave same
problem again.
I try to change tomcat-users.xml and he looks like
this

/*


  
  
  
  
  
  
  
  

/**

Of course i change this xml file and start tomcat
again and try to login like craigmcc(username) and
secret(password) and i got this response

/*
HTTP Status 403 - Access to the requested resource has
been denied

type Status report

message Access to the requested resource has been
denied

description Access to the specified resource (Access
to the requested resource has been denied) has been
forbidden.
/**
What i make wrong?

--- Markus Schönhaber
<[EMAIL PROTECTED]> wrote:

> Nenad Bosanac wrote:
> > Hello!
> > I`d like to ask you how i can enter in Tomcat Web
> > Server Administrtaion Tool .
> > I don`t now the username and password ?
> > Is there any default adminsitrator username and
> > password?
> > By the way i have Tomcat 5.5.9 installed and
> working
> > fine.
> 
> Read this:
>
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html
> especially
>
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html#Configuring%20Manager%20Application%20Access
> 
> Regards
>   mks
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



Re: How to enter in Tomcat Administration?

2006-03-11 Thread Nenad Bosanac
Thank you for your very fast response but ihave same
problem again.
I try to change tomcat-users.xml and he looks like
this

/*


  
  
  
  
  
  
  
  

/**

Of course i change this xml file and start tomcat
again and try to login like craigmcc(username) and
secret(password) and i got this response

/*
HTTP Status 403 - Access to the requested resource has
been denied

type Status report

message Access to the requested resource has been
denied

description Access to the specified resource (Access
to the requested resource has been denied) has been
forbidden.
/**
What i make wrong?

--- Markus Schönhaber
<[EMAIL PROTECTED]> wrote:

> Nenad Bosanac wrote:
> > Hello!
> > I`d like to ask you how i can enter in Tomcat Web
> > Server Administrtaion Tool .
> > I don`t now the username and password ?
> > Is there any default adminsitrator username and
> > password?
> > By the way i have Tomcat 5.5.9 installed and
> working
> > fine.
> 
> Read this:
>
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html
> especially
>
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html#Configuring%20Manager%20Application%20Access
> 
> Regards
>   mks
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



Re: How to enter in Tomcat Administration?

2006-03-11 Thread Nenad Bosanac
Thank you for your very fast response but ihave same
problem again.
I try to change tomcat-users.xml and he looks like
this

/*


  
  
  
  
  
  
  
  

/**

Of course i change this xml file and start tomcat
again and try to login like craigmcc(username) and
secret(password) and i got this response

/*
HTTP Status 403 - Access to the requested resource has
been denied

type Status report

message Access to the requested resource has been
denied

description Access to the specified resource (Access
to the requested resource has been denied) has been
forbidden.
/**
What i make wrong?

--- Markus Schönhaber
<[EMAIL PROTECTED]> wrote:

> Nenad Bosanac wrote:
> > Hello!
> > I`d like to ask you how i can enter in Tomcat Web
> > Server Administrtaion Tool .
> > I don`t now the username and password ?
> > Is there any default adminsitrator username and
> > password?
> > By the way i have Tomcat 5.5.9 installed and
> working
> > fine.
> 
> Read this:
>
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html
> especially
>
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html#Configuring%20Manager%20Application%20Access
> 
> Regards
>   mks
> 
>
-
> To unsubscribe, e-mail:
> [EMAIL PROTECTED]
> For additional commands, e-mail:
> [EMAIL PROTECTED]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



Re: How to enter in Tomcat Administration?

2006-03-11 Thread Markus Schönhaber
Nenad Bosanac wrote:
> Hello!
> I`d like to ask you how i can enter in Tomcat Web
> Server Administrtaion Tool .
> I don`t now the username and password ?
> Is there any default adminsitrator username and
> password?
> By the way i have Tomcat 5.5.9 installed and working
> fine.

Read this:
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html
especially
http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html#Configuring%20Manager%20Application%20Access

Regards
  mks

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



How to enter in Tomcat Administration?

2006-03-11 Thread Nenad Bosanac
Hello!
I`d like to ask you how i can enter in Tomcat Web
Server Administrtaion Tool .
I don`t now the username and password ?
Is there any default adminsitrator username and
password?
By the way i have Tomcat 5.5.9 installed and working
fine.
Please help!


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



RE: Tomcat Administration Package installation

2006-02-27 Thread Dhaval Patel
Hi,

   First download tomcat-admin package from website for appropriate OS. Then 
unzip it. When you
unzip the tomcat-admin (both on linux as well as on windows), say you unzip 
into TEMP directory.
Now open TEMP directory and take some time to view the directory structure 
there. Now go to your
tomcat installation (TOMCAT_HOME) and copy files from TEMP directory to 
TOMCAT_HOME, preserving
directory structure. This is one way. A little bit long but you know exactly, 
what you are doing.

   Other way is you can directly upzip tomcat-admin into TOMCAT_HOME directory 
provided whatever
command/program you are using will take care of directory structure at time of 
unzipping. 

   Hope it helps.

Regards,
Dhaval

--- "Biernesser, Beth" <[EMAIL PROTECTED]> wrote:

> I have the same question ... And would appreciate any information on the
> installation instructions.  I am working on a Linux server.  Thanks so
> much. 
> 
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Friday, February 24, 2006 6:02 PM
> To: users@tomcat.apache.org
> Subject: Tomcat Administration Package installation
> 
> Hi All,
> 
> I know that this is a very basic question, but I could not find any
> instruction on Tomcat's web site. I have Tomcat 5.5.15 installed on
> Windows 2003; it is not bundled with the Tomcat Administration Package
> anymore. I have downloaded the Administration Package. It is the
> apache-tomcat-5.5.15.zip. In which exact directory should I unbundle the
> file? The full path to my Tomcat installation is:
> C:\Program Files\Apache Software Foundation\Tomcat 5.5
> 
> Thank you in advance for your help.
> 
> Nguessan
> 
> 
> 
> -
> 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]
> 
> 


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

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



RE: Tomcat Administration Package installation

2006-02-27 Thread Biernesser, Beth
I have the same question ... And would appreciate any information on the
installation instructions.  I am working on a Linux server.  Thanks so
much. 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 24, 2006 6:02 PM
To: users@tomcat.apache.org
Subject: Tomcat Administration Package installation

Hi All,

I know that this is a very basic question, but I could not find any
instruction on Tomcat's web site. I have Tomcat 5.5.15 installed on
Windows 2003; it is not bundled with the Tomcat Administration Package
anymore. I have downloaded the Administration Package. It is the
apache-tomcat-5.5.15.zip. In which exact directory should I unbundle the
file? The full path to my Tomcat installation is:
C:\Program Files\Apache Software Foundation\Tomcat 5.5

Thank you in advance for your help.

Nguessan



-
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]



Tomcat Administration Package installation - Fixed - Thank You

2006-02-24 Thread nguessan
Thanks Mark and Chuck for your help!
Nguessan







>  Original Message 
> Subject: Re: Tomcat Administration Package installation
> From: Mark Thomas <[EMAIL PROTECTED]>
> Date: Fri, February 24, 2006 6:12 pm
> To: Tomcat Users List 
> 
> [EMAIL PROTECTED] wrote:
> > I have downloaded the Administration Package. It is the
> > apache-tomcat-5.5.15.zip. In which exact directory should I unbundle
> > the file?
> 
> C:\Program Files\Apache Software Foundation\Tomcat 5.5
> 
> Mark
> 
> 
> -
> 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: Tomcat Administration Package installation

2006-02-24 Thread Mark Thomas
[EMAIL PROTECTED] wrote:
> I have downloaded the Administration Package. It is the
> apache-tomcat-5.5.15.zip. In which exact directory should I unbundle
> the file?

C:\Program Files\Apache Software Foundation\Tomcat 5.5

Mark


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



RE: Tomcat Administration Package installation

2006-02-24 Thread Caldarale, Charles R
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Subject: Tomcat Administration Package installation
>
> I have downloaded the Administration Package. It is the
> apache-tomcat-5.5.15.zip.

That's the name of the main Tomcat download, not the admin package,
which is in apache-tomcat-5.5.15-admin.zip.

> In which exact directory should I unbundle
> the file? The full path to my Tomcat installation is:
> C:\Program Files\Apache Software Foundation\Tomcat 5.5

Once you get the proper .zip file downloaded, unzip it in the same place
as the main Tomcat download.  They use the same directory structure.

You might want to consider installing Tomcat in a path without any
spaces in the directory names - this has been known to cause problems in
the past.

 - 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 unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Tomcat Administration Package installation

2006-02-24 Thread nguessan
Hi All,

I know that this is a very basic question, but I could not find any
instruction on Tomcat's web site. I have Tomcat 5.5.15 installed on
Windows 2003; it is not bundled with the Tomcat Administration Package
anymore. I have downloaded the Administration Package. It is the
apache-tomcat-5.5.15.zip. In which exact directory should I unbundle
the file? The full path to my Tomcat installation is:
C:\Program Files\Apache Software Foundation\Tomcat 5.5

Thank you in advance for your help.

Nguessan



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