Re: [users@httpd] Apache + 2 tomcat appserver failover configuration

2012-08-31 Thread Igor Cicimov
On Fri, Aug 31, 2012 at 11:13 AM, Ed Young e...@summitbid.com wrote: I've set up a load balancing configuration based on an Apache server and two tomcats Tomcat6A, and Tomcat6B. I'm trying to set it up so that Tomcat6B is a failover server, so if Tomcat6A goes down, Tomcat6B will handle all

[users@httpd] mod_rewrite rules give 500 error

2012-08-31 Thread Jack Knowlton
Hi all. I have a very simple mod_rewrite .htaccess rule to transform urls like “domain.com/new/” to “domain.com/index.php?page=new”. Unfortunately, it does not seem to be working :( .htaccess syntax RewriteEngine on RewriteCond %{REQUEST_SCRIPT} !-f RewriteCond %{REQUEST_SCRIPT} !-d

Re: [users@httpd] Apache + 2 tomcat appserver failover configuration

2012-08-31 Thread Ed Young
Thanks for the reply. On Fri, Aug 31, 2012 at 12:10 AM, Igor Cicimov icici...@gmail.com wrote: On Fri, Aug 31, 2012 at 11:13 AM, Ed Young e...@summitbid.com wrote: I've set up a load balancing configuration based on an Apache server and two tomcats Tomcat6A, and Tomcat6B. I'm trying to set it

Re: [users@httpd] Apache + 2 tomcat appserver failover configuration

2012-08-31 Thread Igor Cicimov
On Sep 1, 2012 1:38 AM, Ed Young e...@summitbid.com wrote: Thanks for the reply. On Fri, Aug 31, 2012 at 12:10 AM, Igor Cicimov icici...@gmail.com wrote: On Fri, Aug 31, 2012 at 11:13 AM, Ed Young e...@summitbid.com wrote: I've set up a load balancing configuration based on an Apache

Re: [users@httpd] Apache + 2 tomcat appserver failover configuration

2012-08-31 Thread Ed Young
Thanks again for the reply. I believe the cluster descriptor in httpd.conf describes the tomcat cluster, no? See below. I was able to install httpd-devel by hand and build and install mod_jk, so I'm ready to take a shot at configuring cluster failover using mod_jk. I've added the jk_module

Re: [users@httpd] Apache + 2 tomcat appserver failover configuration

2012-08-31 Thread Igor Cicimov
On Sep 1, 2012 2:23 AM, Ed Young e...@summitbid.com wrote: Thanks again for the reply. I believe the cluster descriptor in httpd.conf describes the tomcat cluster, no? See below. I was able to install httpd-devel by hand and build and install mod_jk, so I'm ready to take a shot at

Re: [users@httpd] mod_rewrite rules give 500 error

2012-08-31 Thread Scott Brimhall
Have you tried %{REQUEST_FILENAME} instead? -Scott On Aug 31, 2012, at 9:28 AM, Jack Knowlton jknowl...@vp44.com wrote: Hi all. I have a very simple mod_rewrite .htaccess rule to transform urls like “domain.com/new/” to “domain.com/index.php?page=new”. Unfortunately, it does not seem to be

Re: [users@httpd] Apache + 2 tomcat appserver failover configuration

2012-08-31 Thread Ed Young
Yes, I realized I put the jk_module descriptor in the wrong file seconds after I sent this off. I've now gotten failover working the way I need it to so thanks for the help. I now need to get the urls for the /admin/jkmanager or /balancer-manager working. Currently they are yielding 404. Thanks