Tagged Questions
0
votes
1answer
31 views
Apache with mod_jk Tomcat change DNS Timeout (TTL)
I'm using GSLB APP for geo-distribution and load-balancing.
The APP is Apache --> Tomcat througth mod_jk in workers.properties I have some like this:
worker.balancing.port=8009 ...
0
votes
0answers
17 views
configure eclipse with apache connected to tomcat using mod_jk
I have to work with an apache server connected to tomcat using mod_jk and the apache configured to work with another folder as root folder. In this situation, do you now how how I can configure the ...
0
votes
0answers
33 views
apache2 load balancer is showing host IP in broswer [closed]
I have successfully setup the apache2 load balancer for my website. Virtualhost, certificate generated... i am able to goto my website and browse. But here is my problem
The browser is showing real ...
2
votes
1answer
317 views
tomcat7 and apache2 on ubuntu in integration with some sort of proxy
I am running php5, apache 2.2 and tomcat7 on ubuntu 12.10
all installed by apt-get.
I need to run both .php and .jsp files.
I can run them separately on each each (tomcat and apache httpd)
I have ...
0
votes
1answer
92 views
Tomcat Load Balancing
I have created a load balancing scenario in my machine and the same works fine. However, I am stuck at one simple issue and request help on the same.
I have two tomcat workers - worker1 and worker2.
...
0
votes
1answer
69 views
Authentication with apache2 php pages and tomcat REST calls
Hello smart people on stackoverflow,
I would be very happy if someone could point me to the right libraries/frameworks to do what I want.
We have the following web architecture set up.
1. We have a ...
3
votes
4answers
297 views
Session mix up - apache httpd with mod_jk, tomcat, spring security - serving data of other user
Recently we have faced a serious problem, that one user was served data of another user. This problem is almost impossible to reproduce.
We are using standard logged-users-management provided by ...
0
votes
2answers
185 views
How do I stop Apache httpd from rejecting HTTP PATCH requests?
I'm working on an implementation of the JSON Patch spec using Java servlets on the Bitnami Tomcat Stack. On the servlet end I'm handling the HTTP PATCH method by overriding HttpServlet.service() ...
0
votes
3answers
406 views
Downloaded files are corrupted in IE when requested simultaneously
I am experiencing an awkward problem related with downloading files in Internet Explorer. The server environment is as follows:
Apache2 as a web server with mod_jk
Tomcat6 as an application server
...
0
votes
0answers
129 views
How to install Apache with mod_proxy to tomcat? [closed]
How to install Apache with mod_proxy to tomcat?
I downloaded the following files:
httpd-2.0.64.tar.gz
apache-tomcat-7.0.33.tar.gz
I untar the httpd-2.0.64.tar.gz and did.
$ ./configure ...
0
votes
1answer
338 views
Multiple Domains Served Through Apache Webserver with Tomcat Instances; One Site is Slow [closed]
I set up Apache2 to serve up multiple domains using virtual hosting. The goal is to run QA and Production environments under separate Tomcat instances on one machine. This setup is working, but ...
1
vote
0answers
237 views
MaxClient (httpd), maxThreads (tomcat) and acceptCount (tomcat)
In my project, I do have 2 web servers (httpd) and two application servers (tomcat).
Each httpd and tomcat is on separate machine.
The DNS (hardware) EQUALLY loadbalance the request to two web servers ...
0
votes
2answers
119 views
Is it possible to only allow Apache HTTPd static resources access to clients authenticated in Tomcat?
I've got a Grails application, using spring-security plugin, deployed on Tomcat and I have Apache Httpd server in front of it.
I would like to deploy few php scripts, which perform some file ...
0
votes
1answer
31 views
Servlet POST Data is clipped depending on caller
I've written a Servlet which simply logs the whole raw stream of an POST-Request into a file. Very simple. Works on my development machine fine. If I deploy that on my UBUNTO-Server with Tomcat 5.5 ...
1
vote
0answers
258 views
How to use mod_proxy and change the application path?
Imagine you want to enable access to your manager Tomcat app through Apache.The basic approach would be:
ProxyPass /manager ajp://localhost:8009/manager
ProxyPassReverse /manager ...