Re: tomcat manager/status question

2011-11-18 Thread Justin Larose
Dan,

Thanks for the help.
I opened the server.xml.orig file (from the Tomcat installation) and 
copied the GlobalNamingResources and Engine and restarted Tomcat.
Afterwards I was able to login using the username and password located in 
the tomcat-users.xml file.


Thanks,
Justin LaRose
Database & Web Services Administrator
NEXCOM
(757) 631-3443
justin.lar...@nexweb.org



From:   Daniel Mikusa 
To: Tomcat Users List 
Date:   11/16/2011 02:21 PM
Subject:Re: tomcat manager/status question


Justin,

Assuming that is the entire file, it looks like you do not have a
UserDatabase or a Realm defined.  You need to define a UserDatabase
Resource tag and a Realm for the security configuration.  This is
required by the manager application perform authentication and
authorization.

This configuration will look something like the following (non-essential
elements removed for brevity)...













For a complete example, grab a fresh copy of Tomcat and take a look at
the server.xml file that is packaged with it.  It has both of these
elements defined and some comments which explain how it works.

Dan



On Wed, 2011-11-16 at 11:04 -0800, Justin Larose wrote:
> I have copied my server.xml file below.
> __
>
> 
> 
> 
>  className="org.apache.catalina.mbeans.ServerLifecycleListener"/>
>  
className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/>
>
> 
>
>  protocol="HTTP/1.1" redirectPort="8443" server="Unknown Web 
Server/1.0"/>
>
> 
> 
>
>  disableUploadTimeout="true" enableLookups="false" keyAlias="tomcat"
> keystoreFile="conf/sample-ssl.jks" keystorePass="*"
> maxHttpHeaderSize="8192" maxSpareThreads="75" maxThreads="150"
> minSpareThreads="25" port="8443" scheme="https" secure="true"
> sslProtocol="TLS" strategy="ms" truststoreFile="conf/sample-ssl.jks"
> truststorePass="*"/>
>
>  disableUploadTimeout="true" enableLookups="false" keyAlias="tomcat"
> keystoreFile="conf/sample-ssl.jks" keystorePass="*"
> maxHttpHeaderSize="8192" maxSpareThreads="75" maxThreads="150"
> minSpareThreads="25" port="8543" scheme="https" secure="true"
> sslProtocol="TLS" strategy="ms" truststoreAlgorithm="AnyCert"
> truststoreFile="conf/sample-ssl.jks" truststorePass="*"/>
>
> 
>  server="Unknown Web Server/1.0"/>
>
> 
>  unpackWARs="true" xmlNamespaceAware="false" xmlValidation="false"/>
> 
>
> 
> 
>
>
> ___
>
> Thanks,
> Justin LaRose
> Database & Web Services Administrator
> NEXCOM
> (757) 631-3443
> justin.lar...@nexweb.org
>
>
>
> From:   Daniel Mikusa 
> To: Tomcat Users List 
> Date:   11/14/2011 04:26 PM
> Subject:Re: tomcat manager/status question
>
>
> Justin,
>
> Your "conf/tomcat-users.xml" looks fine to me.  I copied and pasted it
> into a stock Tocmat 6.0.33 server on my machine and it worked fine.
>
> At this point, you might want to also post your "conf/server.xml" file.
>
> Dan
>
>
>
> On Mon, 2011-11-14 at 13:00 -0800, Justin Larose wrote:
> > Yes I have restarted tomcat after editing this file:
> >
> > 
> > 
> > 
> >  />
> > 
> >
> >
> >
> > Thanks,
> > Justin LaRose
> > Database & Web Services Administrator
> > NEXCOM
> > (757) 631-3443
> > justin.lar...@nexweb.org
> >
> >
> >
> > From:   Daniel Mikusa 
> > To: Tomcat Users List 
> > Date:   11/14/2011 02:32 PM
> > Subject:Re: tomcat manager/status question
> >
> >
> > Justin,
> >
> > What exactly do you have in your "conf/tomcat-users.xml" file?  If you
> > could include the contents of the file inline here, that would be
> > helpful.
> >
> > Don't forget to redact passwords and other sensitive info.
> >
> > Dan
> >
> >
> > On Mon, 2011-11-14 at 11:18 -0800, Justin Larose wrote:
> > > Question:  I upgraded my Tomcat version to 6.0 using the
> > > apache-tomcat-6.0.33.exe file and I am trying to access the manager
> > > and the status pages here:  localhost:port\index.jsp
> > > I get to the default Tomcat page an

Re: tomcat manager/status question

2011-11-16 Thread Daniel Mikusa
Justin,

Assuming that is the entire file, it looks like you do not have a
UserDatabase or a Realm defined.  You need to define a UserDatabase
Resource tag and a Realm for the security configuration.  This is
required by the manager application perform authentication and
authorization.

This configuration will look something like the following (non-essential
elements removed for brevity)...


  

  

  

  

  


For a complete example, grab a fresh copy of Tomcat and take a look at
the server.xml file that is packaged with it.  It has both of these
elements defined and some comments which explain how it works.

Dan



On Wed, 2011-11-16 at 11:04 -0800, Justin Larose wrote:
> I have copied my server.xml file below. 
> __
> 
> 
> 
> 
>  className="org.apache.catalina.mbeans.ServerLifecycleListener"/>
>  className="org.apache.catalina.mbeans.GlobalResourcesLifecycleListener"/>
> 
> 
> 
>  protocol="HTTP/1.1" redirectPort="8443" server="Unknown Web Server/1.0"/>
> 
> 
> 
> 
>  disableUploadTimeout="true" enableLookups="false" keyAlias="tomcat" 
> keystoreFile="conf/sample-ssl.jks" keystorePass="*" 
> maxHttpHeaderSize="8192" maxSpareThreads="75" maxThreads="150" 
> minSpareThreads="25" port="8443" scheme="https" secure="true" 
> sslProtocol="TLS" strategy="ms" truststoreFile="conf/sample-ssl.jks" 
> truststorePass="*"/>
> 
>  disableUploadTimeout="true" enableLookups="false" keyAlias="tomcat" 
> keystoreFile="conf/sample-ssl.jks" keystorePass="*" 
> maxHttpHeaderSize="8192" maxSpareThreads="75" maxThreads="150" 
> minSpareThreads="25" port="8543" scheme="https" secure="true" 
> sslProtocol="TLS" strategy="ms" truststoreAlgorithm="AnyCert" 
> truststoreFile="conf/sample-ssl.jks" truststorePass="*"/>
> 
> 
>  server="Unknown Web Server/1.0"/>
> 
> 
>  unpackWARs="true" xmlNamespaceAware="false" xmlValidation="false"/>
> 
> 
> 
> 
> 
> 
> ___
> 
> Thanks,
> Justin LaRose
> Database & Web Services Administrator
> NEXCOM
> (757) 631-3443
> justin.lar...@nexweb.org
> 
> 
> 
> From:   Daniel Mikusa 
> To: Tomcat Users List 
> Date:   11/14/2011 04:26 PM
> Subject:Re: tomcat manager/status question
> 
> 
> Justin,
> 
> Your "conf/tomcat-users.xml" looks fine to me.  I copied and pasted it
> into a stock Tocmat 6.0.33 server on my machine and it worked fine.
> 
> At this point, you might want to also post your "conf/server.xml" file.
> 
> Dan
> 
> 
> 
> On Mon, 2011-11-14 at 13:00 -0800, Justin Larose wrote:
> > Yes I have restarted tomcat after editing this file:
> >
> > 
> > 
> > 
> >  />
> > 
> >
> >
> >
> > Thanks,
> > Justin LaRose
> > Database & Web Services Administrator
> > NEXCOM
> > (757) 631-3443
> > justin.lar...@nexweb.org
> >
> >
> >
> > From:   Daniel Mikusa 
> > To: Tomcat Users List 
> > Date:   11/14/2011 02:32 PM
> > Subject:Re: tomcat manager/status question
> >
> >
> > Justin,
> >
> > What exactly do you have in your "conf/tomcat-users.xml" file?  If you
> > could include the contents of the file inline here, that would be
> > helpful.
> >
> > Don't forget to redact passwords and other sensitive info.
> >
> > Dan
> >
> >
> > On Mon, 2011-11-14 at 11:18 -0800, Justin Larose wrote:
> > > Question:  I upgraded my Tomcat version to 6.0 using the
> > > apache-tomcat-6.0.33.exe file and I am trying to access the manager
> > > and the status pages here:  localhost:port\index.jsp
> > > I get to the default Tomcat page and select "status" and I get a login
> > > prompt. After entering the username and password that I have
> > > configured in the \conf\tomcat-users.xml
> > > file it just asks for the password again and again. After the 3rd
> > > attempt it will default to the 401 page that talks about configuring
> > > the tomcat-users.xml file. I also get the same error after selecting
> > > the "manager" link as well.
> > >
> > > Do I need to install another portion of Tomcat to get this feature to
> > > work?
> > >
> > >
> > >
> > > Thanks,
> > > Justin LaRose
> > > Database & Web Services Administrator
> > > NEXCOM
> > > (757) 631-3443
> > > justin.lar...@nexweb.org
> > >
> > >
> > 
> **
> > > This email and any files transmitted with it are intended solely for
> > > the use of the individual or agency to whom they are addressed.
> > > If you have received this email in error please notify the Navy
> > > Exchange Service Command e-mail administrator. This footnote
> > > also confirms that this email message has been scanned for the
> > > presence of computer viruses.
> > >
> > > Thank You!
> > >
> > 
> **
> > >
> >
> 


Re: tomcat manager/status question

2011-11-16 Thread Justin Larose
I have copied my server.xml file below. 
__





























___

Thanks,
Justin LaRose
Database & Web Services Administrator
NEXCOM
(757) 631-3443
justin.lar...@nexweb.org



From:   Daniel Mikusa 
To: Tomcat Users List 
Date:   11/14/2011 04:26 PM
Subject:Re: tomcat manager/status question


Justin,

Your "conf/tomcat-users.xml" looks fine to me.  I copied and pasted it
into a stock Tocmat 6.0.33 server on my machine and it worked fine.

At this point, you might want to also post your "conf/server.xml" file.

Dan



On Mon, 2011-11-14 at 13:00 -0800, Justin Larose wrote:
> Yes I have restarted tomcat after editing this file:
>
> 
> 
> 
> 
> 
>
>
>
> Thanks,
> Justin LaRose
> Database & Web Services Administrator
> NEXCOM
> (757) 631-3443
> justin.lar...@nexweb.org
>
>
>
> From:   Daniel Mikusa 
> To: Tomcat Users List 
> Date:   11/14/2011 02:32 PM
> Subject:Re: tomcat manager/status question
>
>
> Justin,
>
> What exactly do you have in your "conf/tomcat-users.xml" file?  If you
> could include the contents of the file inline here, that would be
> helpful.
>
> Don't forget to redact passwords and other sensitive info.
>
> Dan
>
>
> On Mon, 2011-11-14 at 11:18 -0800, Justin Larose wrote:
> > Question:  I upgraded my Tomcat version to 6.0 using the
> > apache-tomcat-6.0.33.exe file and I am trying to access the manager
> > and the status pages here:  localhost:port\index.jsp
> > I get to the default Tomcat page and select "status" and I get a login
> > prompt. After entering the username and password that I have
> > configured in the \conf\tomcat-users.xml
> > file it just asks for the password again and again. After the 3rd
> > attempt it will default to the 401 page that talks about configuring
> > the tomcat-users.xml file. I also get the same error after selecting
> > the "manager" link as well.
> >
> > Do I need to install another portion of Tomcat to get this feature to
> > work?
> >
> >
> >
> > Thanks,
> > Justin LaRose
> > Database & Web Services Administrator
> > NEXCOM
> > (757) 631-3443
> > justin.lar...@nexweb.org
> >
> >
> 
**
> > This email and any files transmitted with it are intended solely for
> > the use of the individual or agency to whom they are addressed.
> > If you have received this email in error please notify the Navy
> > Exchange Service Command e-mail administrator. This footnote
> > also confirms that this email message has been scanned for the
> > presence of computer viruses.
> >
> > Thank You!
> >
> 
**
> >
>



Re: tomcat manager/status question

2011-11-14 Thread Daniel Mikusa
Justin,

Your "conf/tomcat-users.xml" looks fine to me.  I copied and pasted it
into a stock Tocmat 6.0.33 server on my machine and it worked fine.

At this point, you might want to also post your "conf/server.xml" file.

Dan



On Mon, 2011-11-14 at 13:00 -0800, Justin Larose wrote:
> Yes I have restarted tomcat after editing this file:
> 
> 
> 
> 
> 
> 
> 
> 
> 
> Thanks,
> Justin LaRose
> Database & Web Services Administrator
> NEXCOM
> (757) 631-3443
> justin.lar...@nexweb.org
> 
> 
> 
> From:   Daniel Mikusa 
> To:     Tomcat Users List 
> Date:   11/14/2011 02:32 PM
> Subject:Re: tomcat manager/status question
> 
> 
> Justin,
> 
> What exactly do you have in your "conf/tomcat-users.xml" file?  If you
> could include the contents of the file inline here, that would be
> helpful.
> 
> Don't forget to redact passwords and other sensitive info.
> 
> Dan
> 
> 
> On Mon, 2011-11-14 at 11:18 -0800, Justin Larose wrote:
> > Question:  I upgraded my Tomcat version to 6.0 using the
> > apache-tomcat-6.0.33.exe file and I am trying to access the manager
> > and the status pages here:  localhost:port\index.jsp
> > I get to the default Tomcat page and select "status" and I get a login
> > prompt. After entering the username and password that I have
> > configured in the \conf\tomcat-users.xml
> > file it just asks for the password again and again. After the 3rd
> > attempt it will default to the 401 page that talks about configuring
> > the tomcat-users.xml file. I also get the same error after selecting
> > the "manager" link as well.
> >
> > Do I need to install another portion of Tomcat to get this feature to
> > work?
> >
> >
> >
> > Thanks,
> > Justin LaRose
> > Database & Web Services Administrator
> > NEXCOM
> > (757) 631-3443
> > justin.lar...@nexweb.org
> >
> > 
> **
> > This email and any files transmitted with it are intended solely for
> > the use of the individual or agency to whom they are addressed.
> > If you have received this email in error please notify the Navy
> > Exchange Service Command e-mail administrator. This footnote
> > also confirms that this email message has been scanned for the
> > presence of computer viruses.
> >
> > Thank You!
> > 
> **
> >
> 


Re: tomcat manager/status question

2011-11-14 Thread Justin Larose
Yes I have restarted tomcat after editing this file:









Thanks,
Justin LaRose
Database & Web Services Administrator
NEXCOM
(757) 631-3443
justin.lar...@nexweb.org



From:   Daniel Mikusa 
To: Tomcat Users List 
Date:   11/14/2011 02:32 PM
Subject:Re: tomcat manager/status question


Justin,

What exactly do you have in your "conf/tomcat-users.xml" file?  If you
could include the contents of the file inline here, that would be
helpful.

Don't forget to redact passwords and other sensitive info.

Dan


On Mon, 2011-11-14 at 11:18 -0800, Justin Larose wrote:
> Question:  I upgraded my Tomcat version to 6.0 using the
> apache-tomcat-6.0.33.exe file and I am trying to access the manager
> and the status pages here:  localhost:port\index.jsp
> I get to the default Tomcat page and select "status" and I get a login
> prompt. After entering the username and password that I have
> configured in the \conf\tomcat-users.xml
> file it just asks for the password again and again. After the 3rd
> attempt it will default to the 401 page that talks about configuring
> the tomcat-users.xml file. I also get the same error after selecting
> the "manager" link as well.
>
> Do I need to install another portion of Tomcat to get this feature to
> work?
>
>
>
> Thanks,
> Justin LaRose
> Database & Web Services Administrator
> NEXCOM
> (757) 631-3443
> justin.lar...@nexweb.org
>
> 
**
> This email and any files transmitted with it are intended solely for
> the use of the individual or agency to whom they are addressed.
> If you have received this email in error please notify the Navy
> Exchange Service Command e-mail administrator. This footnote
> also confirms that this email message has been scanned for the
> presence of computer viruses.
>
> Thank You!
> 
**
>



Re: tomcat manager/status question

2011-11-14 Thread Daniel Mikusa
Justin,

What exactly do you have in your "conf/tomcat-users.xml" file?  If you
could include the contents of the file inline here, that would be
helpful.  

Don't forget to redact passwords and other sensitive info.

Dan


On Mon, 2011-11-14 at 11:18 -0800, Justin Larose wrote:
> Question:  I upgraded my Tomcat version to 6.0 using the
> apache-tomcat-6.0.33.exe file and I am trying to access the manager
> and the status pages here:  localhost:port\index.jsp 
> I get to the default Tomcat page and select "status" and I get a login
> prompt. After entering the username and password that I have
> configured in the \conf\tomcat-users.xml 
> file it just asks for the password again and again. After the 3rd
> attempt it will default to the 401 page that talks about configuring
> the tomcat-users.xml file. I also get the same error after selecting
> the "manager" link as well. 
> 
> Do I need to install another portion of Tomcat to get this feature to
> work? 
> 
> 
> 
> Thanks, 
> Justin LaRose
> Database & Web Services Administrator 
> NEXCOM
> (757) 631-3443
> justin.lar...@nexweb.org
> 
> **
> This email and any files transmitted with it are intended solely for 
> the use of the individual or agency to whom they are addressed. 
> If you have received this email in error please notify the Navy 
> Exchange Service Command e-mail administrator. This footnote 
> also confirms that this email message has been scanned for the
> presence of computer viruses.
> 
> Thank You!
> **
> 


Re: tomcat manager/status question

2011-11-14 Thread Thad Humphries
Did you restart Tomcat after changing/adding the tomcat-users.xml file?

On Mon, Nov 14, 2011 at 2:18 PM, Justin Larose wrote:

> Question:  I upgraded my Tomcat version to 6.0 using the
> apache-tomcat-6.0.33.exe file and I am trying to access the manager and the
> status pages here:  localhost:port\index.jsp
> I get to the default Tomcat page and select "status" and I get a login
> prompt. After entering the username and password that I have configured in
> the \conf\tomcat-users.xml
> file it just asks for the password again and again. After the 3rd attempt
> it will default to the 401 page that talks about configuring the
> tomcat-users.xml file. I also get the same error after selecting the
> "manager" link as well.
>
> Do I need to install another portion of Tomcat to get this feature to work?
>
>
>
> Thanks,
> Justin LaRose
> Database & Web Services Administrator
> NEXCOM
> (757) 631-3443
> justin.lar...@nexweb.org
>
>
> **
> This email and any files transmitted with it are intended solely for
> the use of the individual or agency to whom they are addressed.
> If you have received this email in error please notify the Navy
> Exchange Service Command e-mail administrator. This footnote
> also confirms that this email message has been scanned for the
> presence of computer viruses.
>
> Thank You!
> *
> **
> *
>



-- 
"Hell hath no limits, nor is circumscrib'd In one self-place; but where we
are is hell, And where hell is, there must we ever be" --Christopher
Marlowe, *Doctor Faustus* (v, 121-24)


tomcat manager/status question

2011-11-14 Thread Justin Larose
Question:  I upgraded my Tomcat version to 6.0 using the 
apache-tomcat-6.0.33.exe file and I am trying to access the manager and 
the status pages here:  localhost:port\index.jsp
I get to the default Tomcat page and select "status" and I get a login 
prompt. After entering the username and password that I have configured in 
the \conf\tomcat-users.xml
file it just asks for the password again and again. After the 3rd attempt 
it will default to the 401 page that talks about configuring the 
tomcat-users.xml file. I also get the same error after selecting the 
"manager" link as well.

Do I need to install another portion of Tomcat to get this feature to 
work?



Thanks,
Justin LaRose
Database & Web Services Administrator
NEXCOM
(757) 631-3443
justin.lar...@nexweb.org
**
This email and any files transmitted with it are intended solely for 
the use of the individual or agency to whom they are addressed. 
If you have received this email in error please notify the Navy 
Exchange Service Command e-mail administrator. This footnote 
also confirms that this email message has been scanned for the
presence of computer viruses.

Thank You!
**