RE: Tomcat Manager problem..

2008-11-05 Thread Caldarale, Charles R
 From: slytheman [mailto:[EMAIL PROTECTED]
 Subject: Tomcat Manager problem..

Don't suppose you'd care to tell us your Tomcat version?  It makes a 
significant difference.

 Host name=localhost debug=0 appBase=webapps
   unpackWARs=true autoDeploy=true
   xmlValidation=false xmlNamespaceAware=false
   Logger className=org.apache.catalina.logger.FileLogger
   directory=logs  prefix=localhost_log. suffix=.txt
   timestamp=true/

There is no Logger element in any recent version of Tomcat, but then, you 
didn't tell us what you're using.

 /Host
 Host name=www.domain.com appBase=webapps/www.domain.com

You must not nest one appBase within another - keep them entirely separate.

   unpackWARs=true autoDeploy=true
   xmlValidation=false xmlNamespaceAware=false
 /Host

 my website is in webapps which works...

No, your webapps are stored in webapps for the default Host, and must be in a 
completely separate directory for the www.domain.com Host.

 in the Catalina folder I have
 Catalina/localhost/manager.xml
 Catalina/www.domain.com/manager.xml
 manager.xml  :
 Context path=/manager debug=0 privileged=true
  docBase=/opt/tomcat/webapps/manager
 /Context

The path attribute is not allowed, again assuming you're running a 5.5 or 6.0 
version of Tomcat.  Also, if the webapps directory in your docBase is the 
same as the default Host appBase directory, that's not allowed - it confuses 
the webapp deployment process by having such overlap.  The proper way to do 
this depends on what version of Tomcat you're using (which you didn't tell us).

 What AM I doing wrong???

Not telling us your Tomcat version.  Wouldn't hurt to include other 
environmental information, such as OS and JDK versions.

 - 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 manager problem (newbie)

2007-05-16 Thread Caldarale, Charles R
 From: Arrowx7 [mailto:[EMAIL PROTECTED] 
 Subject: tomcat manager problem (newbie)
 
 I put in the 
 role rolename=manager/
 user username=me password=tomcat roles=manager/
 in the conf/tomcat-users.conf

That should be conf/tomcat-users.xml.

 I'm not sure why it doesn't recognize the user/pass.

Did you restart Tomcat after changing the .xml file?  If it's Tomcat 6,
did you uncomment the user/ role list?

 - 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 manager problem (newbie)

2007-05-16 Thread Arrowx7

actually I was editing the users file for the wrong tomcat instance, thank
you!

Caldarale, Charles R wrote:
 
 From: Arrowx7 [mailto:[EMAIL PROTECTED] 
 Subject: tomcat manager problem (newbie)
 
 I put in the 
 role rolename=manager/
 user username=me password=tomcat roles=manager/
 in the conf/tomcat-users.conf
 
 That should be conf/tomcat-users.xml.
 
 I'm not sure why it doesn't recognize the user/pass.
 
 Did you restart Tomcat after changing the .xml file?  If it's Tomcat 6,
 did you uncomment the user/ role list?
 
  - 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-manager-problem-%28newbie%29-tf3764872.html#a10644236
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 manager problem: mbeanserver

2007-04-29 Thread Caldarale, Charles R
 From: [mailto:[EMAIL PROTECTED] 
 Subject: tomcat manager problem: mbeanserver
 
 My configuration: Apache Tomcat/5.0, JVM 1.4.2, Linux: 
 2.6.12-1.1381_FC3.

Is this a true Tomcat download and installation, or some 3rd-party
repackaging of Tomcat?  If the latter, try removing whatever it is, and
installing a real one.  (If you're just getting started with Tomcat, use
a new level, such as 5.5 or 6.0.)  Since you're running a 1.4 JVM, you
will need to install Tomcat's 1.4 compatibility package as well.

Is your 1.4.2 JVM from Sun or from somewhere else?

 - 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 manager problem: mbeanserver

2007-04-29 Thread Martin Gainty

Install/configure and loading JMX Java Management Extensions
http://java.sun.com/javase/technologies/core/mntr-mgmt/javamanagement/download.jsp
OR
You could just download and configure/install J2SE1.5 which has JMX 
prepackaged in distro

http://java.sun.com/j2se/1.5.0/docs/guide/management/agent.html

HTH/
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: Caldarale, Charles R [EMAIL PROTECTED]

To: Tomcat Users List users@tomcat.apache.org
Sent: Sunday, April 29, 2007 2:01 PM
Subject: RE: tomcat manager problem: mbeanserver



From: [mailto:[EMAIL PROTECTED]
Subject: tomcat manager problem: mbeanserver

My configuration: Apache Tomcat/5.0, JVM 1.4.2, Linux:
2.6.12-1.1381_FC3.


Is this a true Tomcat download and installation, or some 3rd-party
repackaging of Tomcat?  If the latter, try removing whatever it is, and
installing a real one.  (If you're just getting started with Tomcat, use
a new level, such as 5.5 or 6.0.)  Since you're running a 1.4 JVM, you
will need to install Tomcat's 1.4 compatibility package as well.

Is your 1.4.2 JVM from Sun or from somewhere else?

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



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