Typically Web servers set fairly generous limits on length for URL query string e.g. up to 2048 or 4096 characters. While running a web application in Tomcat & HTTP Apache server, we came across a situation where we were asked to handle an extremely long URL query strings. Which was throwing HTTP 414 “Request-URI Too Long” error. For this situation ... Read More »
Tag Archives: http apache server
Creating sub-domain in Apache
Steps to create sub-domain on Apache : 1). Uncomment “Include conf/extra/httpd-vhosts.conf” line in the httpd.conf file. 2).Open the httpd-vhosts.conf file and enter the below mentioned line- Note: 10.10.10.10 is the IP address of the server, provide the sub-domain name against the “ServerName” field and if there is any particular index.html file for this sub-domain then give the path of that ... Read More »
How to Find Apache HTTP server version in your Linux machine
The command to find the Apache HTTP server version in your Linux machine is httpd -v To run this command first go to your bin directory of Apache installed and then run the above command. Read More »
Configuring HTTP Apache Server and Tomact/ Jboss AS Application server
Download mod_jk (mod_jk.so is a Tomcat connector.) Download HTTP Apache server. And below I am describing the ways to configure mod_jk, HTTP Apache and Tomcat/Jboss AS 1). After downloading mod_jk rename this file as mod_jk.so 2). Place this file in the installed directory of apache in the below specified path – 3). Create the below mentioned files in the conf ... Read More »
Installation of Apache HTTP Server 2.2.x
1). Download the Apache HTTP Server from the apache official site based on the OS you use.Choose the correct OS based file. 2) Create a installation folder “apache” inside the dev folder. c:\dev\apache – I am going to use this folder path in my further reference. 3) Now run the setup and during the setup process fill the appropriate data ... Read More »
Jkoder.com Tutorials, Tips and interview questions for Java, J2EE, Android, Spring, Hibernate, Javascript and other languages for software developers