Apache :: Perform SSO To Application - How To Increase HTTP Header Size

Dec 5, 2014

I'm trying to perform SSO to my application. for my login i get an error "Size of a request header field exceeds server limit". I believe the header size got increased then the limit set in apache server. I'm guessing so.

the flow of request: Apache -> tomcat -> SAP Business Objects.

For my colleagues login the SSO works fine with out issue.

So, how to increase the HTTP header size. I'm bridging apache and tomcat using AJP connector. below is the AJP connector parameters in server.xml

<Connector port="8009" protocol="AJP/1.3" redirectPort="443" URIEncoding="UTF-8" enableLookups="false" connectionTimeout="20000"/>

View 1 Replies


ADVERTISEMENT

Increase /home Directory Size

Apr 23, 2008

Is it possible to add another hard-drive and attach it to increase the size of the /home directory?

Beginning to run out of space.

View 6 Replies View Related

How To Increase Mounted Partition Size

Oct 8, 2007

I mounted sda2 as var and its size is 2GB. I wanna to increase its size to 4GB,which command should i run without umount and mount it again?

View 2 Replies View Related

Plesk 11.x / Linux :: Roundcube - Increase Attachment Size

Jan 31, 2014

I seem Plesk Roundcube 6 MB attachment size. I Changed all php.ini and php.ini.tpl files but changes nothing. How Can I rise up the attachment size?

View 3 Replies View Related

Plesk 11.x / Linux :: Increase Import Database Size

May 4, 2015

I have a virtual server with CentOS 6.4 (Final) and Plesk 11.5.30 and I would like to increase the database size to import because right now it's only 2MB and I have to put online a website with 10MB.

View 5 Replies View Related

Plesk 12.x / Linux :: Can't Increase Phpmyadmin Max Upload / Import File Size

Jan 2, 2015

I'm running Plesk 12. I install it today, using the ISO which parallels provides, which includes centos 6.5 and preinstalled Plesk 12 in my vps. Then I logged in plesk, and I did everything it wants. Then I upgraded my php, to php 5.4.36 according to the manual that Paralells provides, and then I tried to increase the max upload file size for phpmyadmin. I have edited my /usr/local/psa/admin/conf/php.ini file and tried to restart using with 3 different ways using terminal:

1st: service sw-cp-server restart
2st: /etc/init.d/psa stop
/etc/init.d/psa start
3st: reboot (which rebooted all the vps)

My php.ini file is:

short_open_tag = On
y2k_compliance = Off
output_buffering = Off
max_execution_time = 600
max_input_time = 600
memory_limit = 256M
max_file_uploads = 99999
max_input_vars = 2000

[Code] ....

However, when I'm trying to import a 31mb sql file, I always get that error, and only some of my tables are being imported:

#1153 - Got a packet bigger than 'max_allowed_packet' bytes

View 2 Replies View Related

(http-header-glue.c.333) Strptime() Failed

Apr 4, 2008

My Lighttpd just started showing this:

2008-04-03 12:54:26: (http-header-glue.c.333) strptime() failed on Thu, 42 Jan 3119 19:59:19 GMT

View 2 Replies View Related

Apache :: How To Perform Redirect Within VirtualHost

Oct 8, 2013

What is the proper syntax to perform a redirect within the <VirtualHost:443> section of the httpd.conf file?

The issue is: I have an existing login URL path that has changed slightly. As an example, let's say the old URL is:

"https://www.something.net/item1/item2/login.jsp" but now there's a "new" name for 'item2'.

I only want a user to be automatically redirected to the "new" path, but is ONLY triggered when the "old" login URL path is entered and nothing else.

View 2 Replies View Related

Apache :: Trying To Set Vary Header

Dec 19, 2013

mod_header is installed and I put this in my htaccess but it doesn't change the header.

<IfModule mod_headers.c>
<FilesMatch ".(htm|html|php)$">
Header append Vary: User-Agent
</FilesMatch>
</IfModule> 

View 1 Replies View Related

Apache :: Adding To Header Requested URL

Oct 22, 2014

I am attempting to add a header a number of requested urls i.e.[URL]...

I understand that this can be achieved by

-using mod_rewrite to set an environment variable
-using mod_headers to add a header based on the existence of an environment variable.

So far I can add the a new header thus

Header add RSS_FEED_URL "Akamai-Edge-Control"

How to achieve this.

View 1 Replies View Related

Apache :: Remove Cookie From Request Header

Dec 11, 2014

I am using 2.2.29 in Windows.Trying to remove one cookie in a request header before passing the request to the application, but having trouble. The cookie is in the middle of the request header.

View 1 Replies View Related

Apache :: Addin A Script To Header Tag Of A Page

Feb 16, 2014

I'm looking for a way to add a script in the header tag of a web page without using a CMS or anything like that.it should be the first script that is running when the page is rendered.I'm running Apache 2.2.25 and Tomcat 7.0.50 - both Win32 versions.

There are two reasons for an approach like that.

(1) - I expect it to work regardless the CMS I'm working with; the same expectation is for Tomcat and Java applications.
(2) - I'm able to start this as early as possible => includes monitoring the performance of the CMS itself.

View 6 Replies View Related

Apache Restarts After Client Send Request With No Header

Jul 14, 2008

I have a client who's Apache on a CPanel based VPS keep's restarting.

In the error log we recieve two of these lines

"client sent HTTP/1.1 request without hostname (see RFC2616 section 14.23): /w00tw00t.at.ISC.SANS.DFin "

Then the Apache will restart.

I have looked around and found some threads about this problem, but none explaining how to fix this.

View 4 Replies View Related

Apache :: Header Field Exceeds Limit / Tomcat AJP

Feb 3, 2015

My configuration is Apache 2.2.3 using Tomcat - AJP with mod_proxy_ajp, mod_ssl.We have configured Kerberos but some users are getting an error - Size of a request header field exceeds server limit.

Users with headers above 8K are getting this error, users less than 8K can get in fine. How can I increase this header limit in Apache/Tomcat? I have tried multiple suggestions found on google and other sites.

Here is what I tried:

Adding the following to the http.conf
LimitRequestFieldSize 65536
ProxyIOBufferSize 65536

Adding the following to server.xml
packetSize="65536"

editing a workers.propeties file, but we dont have any files on the server with that name.

View 2 Replies View Related

Apache :: Adding A Header To A Number Of Requested URLs

Oct 23, 2014

I am attempting to add a header to a number of requested urls i.e. domain/feeds/chicago, domain/feeds/*.I understand that this can be achieved by

•using mod_rewrite to set an environment variable
•using mod_headers to add a header based on the existence of an environment variable.

So far I can add the a new header thus Header add RSS_FEED_URL "Akamai-Edge-Control"

View 1 Replies View Related

Apache :: Disabling Server Info Into Response Header

Mar 4, 2014

We are trying to disable server info into response header.

Header unset Server
Header set Server "unknown"

It is not working.We have installed "Apache 2.4.6-x86 server" on Win 2008 R2 Standard server (64-Bit).

View 3 Replies View Related

How To Increase Open Files Limit In Apache In Cpanel

Jul 14, 2008

How to increase the Open Files limits descriptor in Apache. In the earlier version of Cpanel, we had an option of Raise FD Size Limit to 16384, but the option no longer appear while rebuilding Apache. What is the way to do it and make the change permanent?

View 2 Replies View Related

Apache :: Capturing Internal Apache Errors Return Custom HTTP Status

Nov 15, 2013

Server Version: Apache/2.2.22 (Unix)

On our production service, we've been getting numerous malformed POST requests to some of our CGI scripts that are showing up as 500 errors in our logs. They are malformed in the sense that the actual content length doesn't match the Content-Length specified in the request.

Here's the most trivial example I can come up with that reproduces the problem for us:

POST /some_valid_alias HTTP/1.1
Host: example.org
User-Agent: Arbitrary/1.0
Content-Type: multipart/form-data; boundary=---------------------------41184676334
Content-Length: 769
-----------------------------41184676334

In addition to the 500 error in the access log, we see the corresponding error in the error log:

(70014)End of file found: Error reading request entity data

Based on the nature of the POST request and the error response, it does appear that Apache is doing the right thing here.

The POST never actually makes it as far as the script being targeted (/some_valid_alias in the above example); in other words, Apache returns 500 to the client, writes the error to the error log and never executes the script.

Is there a way to capture/avoid internal Apache errors like 70014, and return some other HTTP status besides 500 (like 403)? It's particularly annoying in our case, because our server sends us an email for all 500 errors.

So far, our best "defense" against these 500 errors is to disallow POST for these aliases, which normally just ignore the POST data anyway (when the request is not malformed):

RewriteCond %{REQUEST_METHOD} ^POST$
RewriteRule ^/(some_valid_alias)(.*)$ $1$2 [R]

But this won't work for all our scripts, because in some cases we do want to permit POST.

View 2 Replies View Related

Apache Not Showing Full File Size

Aug 15, 2007

I have a 2,3 and 5GB files that I need to download but everytime they appear as 1.4GB for some reason. I've tried IE, Mozilla and opera and the same result each time.

Is there some sort of limit to the size of a file that apache will serve?

View 4 Replies View Related

Apache :: How To Assign Maximum Size To Access Log

Mar 19, 2015

Can I configure a maximum size for this file?

I have had to wipe it out a few times because it's been getting larger than 4GB

View 1 Replies View Related

Plesk 12.x / Linux :: Error Installing Application From Application Installer

Oct 13, 2014

whenever one of my customers tries to install an application from the application installer, they get an error that looks like this.

Error: Installation of WordPress at http://*******.com/wordpress failed. Non-zero exit status returned by script. Output stream: 'PHP Warning: mysql_connect(): Access denied for user 'ndari_wordpres_7'@'aeris.jdrepo.com' (using password: YES) in /opt/psa/var/apspackages/apscatalogSTqEEM.zip7b3ca133-9714-5d/cache/scripts/db-util.php on line 66 '.

Error stream: 'PHP Warning: mysql_connect(): Access denied for user 'ndari_wordpres_7'@'aeris.jdrepo.com' (using password: YES) in /opt/psa/var/apspackages/apscatalogSTqEEM.zip7b3ca133-9714-5d/cache/scripts/db-util.php on line 66 '.Click to expand...

View 2 Replies View Related

Apache :: Integrate Websocket Into Existing Application

Jan 7, 2013

I'm trying to integrate the websocket into existing application.Based on my search, i found a websocket module to do this, but it isn't updated yet. URL...

Any chance that the module will be included in Apache ? Also i found in StackOverflow conversation that Apache httpd wasn't design to maintain persistent connection, is that true ? Using WebSocket on Apache server. Should continue using Apache websocket module or using separate websocket server ?

View 6 Replies View Related

Apache :: 2.4.3 - Difference Between Executing As Service Or As Application

Feb 12, 2013

I installed apache 2.4.3 in windows server 2003. Since i did not get administrator rights in this machine i could not install as a service.

I runned as an application through the command line console and is working fine.

Is there any difference regarding performance when running as a service or as an application?

Is there any other benefit or drawback of running as a service or as an application?

View 2 Replies View Related

Apache :: Server Becomes Unresponsive With Wsgi Application

Nov 20, 2013

I have Apache 2.2 installed on Windows to host a web2py application using wsgi.

Apache crashed once stating it had run out of worker threads, so I inscreased ThreadsPerChild to 500. It has since crashed/become unresponsive without giving anything in the error log.

I set up mod_status, and am looking for understanding what I see when looking at server-status page.

It says 135 requests currently being processed, 365 idle worker. However I don't think there are 135 people connected.

Here's the request lines:

SrvPIDAccMSSReqConnChildSlotClientVHostRequest
0-1253840/0/0W138495448300.00.000.00
... the line above is repeated identically 125 times
0-1253840/32/32W000.00.460.46127.0.0.1dalgety-svr8.havelock.intGET /server-status HTTP/1.1
0-1253840/0/0W52400.00.000.00192.168.202.109dalgety-svr8.havelock.intGET /HubForms/ProjectFolderIndexing/index HTTP/1.1

[Code] ....

Question:

1) What are those 125 requests, and why are they not exiting. Are they anything to worry about? why is there no Client/VHost/Request? Could they be from the python process? Could they be what's causing the issue?

2) The Acc entry 0/121/121 on /HubForms/capacity_requests/index - is this representative of an issue?

3) When I restart Apache, it typically says "Terminating 375 threads that failed to exit" but that number doesn't match up with anything. Are these the idle threads?

Also I'm not sure what "restart" actually means, i.e. what stops and what stays (i.e. why am I on generation 0-12?).

4) Is any of this anything to do with why Apache becomes unresponsive, or should I be looking elsewhere?

View 1 Replies View Related

ModSecurity Web Application Firewall For Apache - No Button

Sep 7, 2014

After install the ModSecurity Web Application Firewall for Apache no button for manageing module is displayed in plesk.

Installation was successful. How can I repair the button in plesk / webbased manage mod_security?

View 13 Replies View Related

Account Size Not Matching Real Size

Aug 14, 2008

One of our resellers has an account.. When looking into cpanel, it says that that account is using 3300megs. When we go into the ftp of that account, in reality it is only using 1.3megs. This is a huge difference! Most of folders are empty.
We are using the latest version of WHM and Cpanel.

View 1 Replies View Related

Plesk 11.x / Linux :: PHP Support 11.5.30 - Cannot Change Or Choose Running As Apache Module Or CGI Application

Jul 17, 2015

Hosting Settings

There is no php support - so i can´t change or choose running as apache module or cgi application (s. screenshot)...

OS Ubuntu 12.04.5 LTS

Panel version 11.5.30 Update #50, last updated at July 17, 2015 03:46 AM

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved