Re: Issue finding Worker using mod_jk ...

2007-11-08 Thread Kim Albee
be JkMount / ein1 JkMount /* ein1 Filip Kim Albee wrote: We are having an issue when setting up integration between Apache 2.0.52 and Tomcat 6.0.14... Here are the mod_jk.log entries: [Wed Nov 07 14:31:25 2007] [jk_uri_worker_map.c (445)]: Into jk_uri_worker_map_t::map_uri_to_worker

Issue finding Worker using mod_jk ...

2007-11-07 Thread Kim Albee
We are having an issue when setting up integration between Apache 2.0.52 and Tomcat 6.0.14... Here are the mod_jk.log entries: [Wed Nov 07 14:31:25 2007] [jk_uri_worker_map.c (445)]: Into jk_uri_worker_map_t::map_uri_to_worker [Wed Nov 07 14:31:25 2007] [jk_uri_worker_map.c (459)]: Attempting

HELP -- need to get Basic Authentication working (.htaccess) with Apache/Tomcat 5 to prevent access

2007-09-19 Thread Kim Albee
I need to figure out a way to 'gate' access in a broad sense to the overall website on a test server. The site is all JSP, using Apache and Tomcat, but .htaccess doesn't work, as it appears that Apache hands off to Tomcat prior to doing the .htaccess check. Does anyone have a solution to this?

Re: HELP -- need to get Basic Authentication working (.htaccess) with Apache/Tomcat 5 to prevent access

2007-09-19 Thread Kim Albee
M - I'm confused. we don't need SSL at all here... ??? clarification? thanks, Kim :-) On 9/19/00, Martin Gainty [EMAIL PROTECTED] wrote: http://www.apache-ssl.org/ M-- - Original Message - From: Kim Albee [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent

Re: Does anyone have an approach to checking if Tomcat instance is UP?

2007-08-21 Thread Kim Albee
: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kim, Kim Albee wrote: The JSP does a call to a method in our app -- which if it runs, that means the app is up and available -- the method does a simple query against the DB and then returns a status of OK if the method runs through just fine

Re: 20 Tips for Using Tomcat in Production

2007-08-21 Thread Kim Albee
In putting #1 into the JAVA_OPTS (which it appears that is the CATALINA_OPTS for our implementation), it doesn't appear to work, as Tomcat doesn't restart. It could be our version -- which is currently 5.0.30. please let me know if there are other steps we need to take here as well. thanks, Kim

Does anyone have an approach to checking if Tomcat instance is UP?

2007-08-20 Thread Kim Albee
Hello -- We have a load balanced situation, and we have a JSP that runs and checks our application to ensure it's up and returns a string that the monitor app is looking for if all is well. Repeatedly, that JSP will work, but the site is down because Tomcat hit an OutOfMemory exception -- but

Re: Does anyone have an approach to checking if Tomcat instance is UP?

2007-08-20 Thread Kim Albee
it should see will do the trick... Dan On 8/20/07, Kim Albee [EMAIL PROTECTED] wrote: Hello -- We have a load balanced situation, and we have a JSP that runs and checks our application to ensure it's up and returns a string that the monitor app is looking for if all is well

Re: Does anyone have an approach to checking if Tomcat instance is UP?

2007-08-20 Thread Kim Albee
issuing a request to your app and checking the HTTP status? If so, why isn't it recognizing the 500? Or is the JSP in your application which is failing? | -Original Message- | From: Kim Albee [mailto:[EMAIL PROTECTED] | Sent: Monday, 20 August, 2007 09:48 | | Repeatedly, that JSP

Re: Issue with Changing sessionid values -- please help...

2007-01-15 Thread Kim Albee
how Apache and/or Tomcat determine the sessionid... do you know how that happens? thanks, Kim :-) On 1/10/07, Christopher Schultz [EMAIL PROTECTED] wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kim, Kim Albee wrote: Client Config: AOL Version 9 web browser. How are you managing

Issue with Changing sessionid values -- please help...

2007-01-10 Thread Kim Albee
Server Configuration: Linux Fedora Core 3, Apache 2.0, Tomcat 5.0.30 session sharing and load balanced (with session persistence on a server) across two servers (not using tomcat / JK load balancing). Client Config: AOL Version 9 web browser. When users come in to the site and login, then move

Re: Question with the Apache/Tomcat interface...

2006-10-30 Thread Kim Albee
below: Modified /etc/selinix/config to: SELINUX=permissive From SELINUX=enforced Executed /usr/sbin/setenforce 0 to put this into effect immediately. It will persist across reboots. Thanks for the responses... Kim :-) On 10/27/06, Caldarale, Charles R [EMAIL PROTECTED] wrote: From: Kim Albee

Re: Question with the Apache/Tomcat interface...

2006-10-27 Thread Kim Albee
Rainer, What is your platform and what is errno 13 on your platform? ###how would I find out? our platform is Fedora Core 3 for this server. Can you confirm, that tomcat listens on the port your worker p2 is configured for (using netstat -n or a similar tool)? ###when I run netstat, it

Question with the Apache/Tomcat interface...

2006-10-24 Thread Kim Albee
We are running Tomcat 5.0.30 and Apache 1.2 using mod_jk, with workers.properties. It's been working just fine, no problems. But our ISP had a power outage, that forced a reboot on the servers. And now, one of the servers Apache/Tomcat link appears to not work, so that server is still

Issue with specifying Session timeout value

2006-10-11 Thread Kim Albee
Hello -- I set the web.xml to specify a 45 minute time out... but sessions are still timing out at 30 minutes... We are using tomcat 5.0.30, and have tomcat clustering between two servers. The entry that I placed in the web.xml file is: web-app session-config

Re: Issue with specifying Session timeout value

2006-10-11 Thread Kim Albee
thanks! i think that was it. Kim :-) On 10/11/06, Gregor Schneider [EMAIL PROTECTED] wrote: Hi Kim, You can specify session-timeout either in the deplyment-descriptor of your web-app (web.xml) or in the web.xml of Tomcat itself, which is located at tomcat/conf/web.xml I bet my bottom penny

NEED HELP: WARNING: Internal error flushing the buffer in release()

2006-08-24 Thread Kim Albee
We are receiving this error in the catalina.out logs. here's the full log message: Aug 24, 2006 4:09:15 PM org.apache.jasper.runtime.PageContextImpl release WARNING: Internal error flushing the buffer in release() We get this error repeatedly. We are running Tomcat 5.0.30. Is there a way to

Re: Session hijacking with Tomcat/Myfaces - unable to fix it

2006-08-09 Thread Kim Albee
It's a fundamentally bad security scheme to use the session-ID as the identifier for your users. Might be straight forward, but architecturally a bad choice if you *really* want a secure area. Kim :-) On 8/9/06, Tomas Hulek [EMAIL PROTECTED] wrote: The default Tomcat installation is prone to

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Kim Albee
probably something you've made sure to do, but are you loading mod_jk.so in the httpd.conf? Kim :-) On 7/26/06, Ian Caswell [EMAIL PROTECTED] wrote: I'm an OS guy, so applications are new to me. Any help is appreciated. I'm trying to integrate apache and tomcat w/ mod_jk. Regular html pages

Re: apache not talking to tomcat w/ mod_jk

2006-07-26 Thread Kim Albee
don't see any errors in the httpd logs about it, but i don't know how to verify it's loaded. Is there a way for apache to show loaded modules? --- Kim Albee [EMAIL PROTECTED] wrote: probably something you've made sure to do, but are you loading mod_jk.so in the httpd.conf? Kim :-) On 7/26

Re: Tomcat Crashing -- how do I read the resulting hs_err_pid11598.log?

2006-07-21 Thread Kim Albee
] wrote: Kim Albee wrote: The box has 4GB of RAM on it, and has experienced a memory failure. We tested the physical RAM on the server, and it failed 2 extended memory tests, so we replaced the RAM. We also saw that the swap space was only at 1.5GB, so we upped that to 6.5 GB. For most real-time

Re: Tomcat Crashing -- how do I read the resulting hs_err_pid11598.log?

2006-07-21 Thread Kim Albee
making a copy. Thank you. - Original Message - From: Darryl Miles [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org Sent: Thursday, July 20, 2006 7:31 AM Subject: Re: Tomcat Crashing -- how do I read the resulting hs_err_pid11598.log? Kim Albee wrote: The box has 4GB

Re: Tomcat Crashing -- how do I read the resulting hs_err_pid11598.log?

2006-07-21 Thread Kim Albee
Message - From: Kim Albee [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org; Martin Gainty [EMAIL PROTECTED] Sent: Friday, July 21, 2006 11:09 AM Subject: Re: Tomcat Crashing -- how do I read the resulting hs_err_pid11598.log? Martin -- How do I tell when the memory

Re: Tomcat Crashing -- how do I read the resulting hs_err_pid11598.log?

2006-07-21 Thread Kim Albee
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: Kim Albee [EMAIL PROTECTED] To: Tomcat Users List users@tomcat.apache.org

Tomcat Crashing -- how do I read the resulting hs_err_pid11598.log?

2006-07-19 Thread Kim Albee
I'm running Fedora Core 3, Tomcat 5.0.30, in a two server environment, where we have an F5 load balancer and are doing session sharing at the Tomcat level. The box has 4GB of RAM on it, and has experienced a memory failure. We tested the physical RAM on the server, and it failed 2 extended

downloaded JK binaries for Linux - which to use? workers or prefork?

2006-06-14 Thread Kim Albee
I need some help -- I'm downloading the JK binaries to get my tomcat installation working with Apache, and when I go to download the jk binaries for linux/apache, I see the two files: jakarta-tomcat-connectors-jk-1.2.14-linux-sles9-x86_64-prefork.so

Re: downloaded JK binaries for Linux - which to use? workers or prefork?

2006-06-14 Thread Kim Albee
yes -- but what is the difference? i'm running Fedora Core 3 on a single processor Linux box, running Apache 2.x what does prefork mean? vs. worker? thanks, Kim :-) On 6/14/06, David Rees [EMAIL PROTECTED] wrote: On 6/14/06, Kim Albee [EMAIL PROTECTED] wrote: I need some help -- I'm

Way to debug ports Tomcat is listening on?

2006-06-08 Thread Kim Albee
This server's Apache/Tomcat connector used to work just fine. Now it has stopped working and I get this error... I haven't changed anything in the config, but am wondering how I troubleshoot/debug this issue. I continually get this error: [jk_ajp_common.c (720)]: Error connecting to tomcat.