[EMAIL PROTECTED] Shared Memory Config Issue - Win Apache

2008-06-17 Thread Stusynski, Dan
Hey users, Hopefully someone can help me with this issue since I can't seem to resolve it. After compiling Apache 2.2.9 on Win XP with (with mod_ldap and mod_authnz_ldap support) I'm trying to configure Apache's Shared Memory usage. My relevant configuration is: LoadModule ldap_module modules/m

RE: [EMAIL PROTECTED] server listening, not serving pages, no errors logged

2008-06-11 Thread Stusynski, Dan
Did you verify the the port is being listened on with netstat (or similar)? Out of curiousity, do you have an IPv6 stack on this Win machine, and if so, are you listening on IPv6 also (using the default Listen 80)? Reason I ask is it sounds similar to an issue I ran into resulting from IPv6 at o

RE: [EMAIL PROTECTED] Apache Log File 2GB

2008-06-03 Thread Stusynski, Dan
To rotate the logs you can use Apaches piped rotatelogs: http://httpd.apache.org/docs/2.2/programs/rotatelogs.html Put something like the following in your httpd.conf (or whereever your logging is define), 'CustomLog "| /bin/rotatelogs -l /logs/access_log%Y-%m-%d_%H_%M_%S 2048M" custom' That

RE: [EMAIL PROTECTED] HTTPD won't start. Fails with error message.

2008-02-16 Thread Stusynski, Dan
Despite netstat not showing anything on port 80, for sanity sake have you tried changing the bind address to something else, perhaps an obscure port? Dan -Original Message- From: Mike Watson [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 7:50 PM To: users@httpd.apache.org S

RE: [EMAIL PROTECTED] Apache 2.2.8 Windows Compile Issue/Failure

2008-02-11 Thread Stusynski, Dan
default install location rectified the error. I would assume it does however. Dan From: Stusynski, Dan [mailto:[EMAIL PROTECTED] Sent: Monday, February 11, 2008 12:22 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Apache 2.2.8 Windows Compile Issue

[EMAIL PROTECTED] Apache 2.2.8 Windows Compile Issue/Failure

2008-02-11 Thread Stusynski, Dan
Hello all, Hopefully someone can provide guidance or has seen this problem before since google didn't dredge up anything useful. During my Win XP build of Apache 2.2.8 using MSCV++ 6.0 I've run across an issue I can't immediately resolve. The build fails towards the end of the build when the

RE: [EMAIL PROTECTED] Occasional "500 Internal Server Error"

2007-11-13 Thread Stusynski, Dan
It sounds like an issue we encountered where Active Directory would close inactive connections on it's side. When the client tries to recontact the ldap server it returns a LDAP_UNAVAILABLE as opposed to what it should return. Refreshing the browser would resend and open the connection. In any cas

RE: [EMAIL PROTECTED] Apache 2.2.6 Compile Error: --with-expat

2007-10-31 Thread Stusynski, Dan
EMAIL PROTECTED] Apache 2.2.6 Compile Error: --with-expat Stusynski, Dan wrote: > Greetings list, > > I'm having an issue I can't seem to resolve when compiling Apache > 2.2.6 on both Sun Solaris 10 and AIX 5.3 machines with the expat > library. I'm running

[EMAIL PROTECTED] Apache 2.2.6 Compile Error: --with-expat

2007-10-31 Thread Stusynski, Dan
Greetings list, I'm having an issue I can't seem to resolve when compiling Apache 2.2.6 on both Sun Solaris 10 and AIX 5.3 machines with the expat library. I'm running into a break when configuring with expat. The compile error is below and appears solely related to expat. As such, I tried to comp

RE: [EMAIL PROTECTED] apache 2.2.4 and AD: authentication failed.

2007-10-26 Thread Stusynski, Dan
Looks like you can't acccess the resource. See: http://httpd.apache.org/docs/2.2/mod/mod_authnz_ldap.html The Authorization Phase During the authorization phase, mod_authnz_ldap attempts to determine if the user is authorized to access the resource. Many of these checks require mod_authnz_ldap to

RE: [EMAIL PROTECTED] apache 2.2.4 and ldap on solaris 10 sparc

2007-10-25 Thread Stusynski, Dan
AP or iPlanet LDAP?? According to apache, the ldap module supports sdks from novell,openldap and iplanet... Many thanks for your support. Best regards, --- "Stusynski, Dan" <[EMAIL PROTECTED]> wrote: > Melanie, > > He was saying that the directories you provided should b

RE: [EMAIL PROTECTED] apache 2.2.4 and ldap on solaris 10 sparc

2007-10-25 Thread Stusynski, Dan
Melanie, He was saying that the directories you provided should be inputs into the configure, not outputs. For example: --with-ldap-lib=/opt/apache/lib "/opt/apache/lib" is where your LDAP/lib directory resides. Apache will not output anything to that directory but is expecting the necessary LDAP

RE: [EMAIL PROTECTED] make_sock: could not bind to ...

2007-10-23 Thread Stusynski, Dan
Jinu, That screenshot basically shows that you are trying to bind Apache to port 80 which is already in use by another service. Arnab's comment below should solve the problem. In /conf/httpd.conf change any existing instance of "80" to something else, such as "888". Specifically, change: Listen

RE: [EMAIL PROTECTED] Windows compile of Apache 2.0.61 with SSL fails...

2007-10-19 Thread Stusynski, Dan
communication and everything appears to work just fine. Of course, I'm not sure what that means. :-) Thanks again, Dan Stusynski -Original Message- From: Stusynski, Dan [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 1:59 PM To: users@httpd.apache.org Subject: RE: [

RE: [EMAIL PROTECTED] Windows compile of Apache 2.0.61 with SSL fails...

2007-10-18 Thread Stusynski, Dan
) and see if that alleviates the issue. Dan -Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED] Sent: Thursday, October 18, 2007 12:45 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Windows compile of Apache 2.0.61 with SSL fails... Stusynski, Dan wrote

RE: [EMAIL PROTECTED] IPv6 address connection to apache web server. PLease help

2007-10-18 Thread Stusynski, Dan
Ashwani, The ensure your Apache has or does not have IPv6 support you can check the build parameters of httpd by running httpd.exe -V. If your Apache has IPv6 support you should see: -D APR_HAVE_IPV6 (IPv4-mapped addresses disabled). If that parameter isn't present then your Apache doesn't have

[EMAIL PROTECTED] Windows compile of Apache 2.0.61 with SSL fails...

2007-10-18 Thread Stusynski, Dan
I tried compiling Apache 2.0.61 on Windows with ZLIB and SSL and the build fails. I receive the following error: Configuration: BuildBin - Win32 Release Microsoft (R) Program Maintenance Utility Version 6.00.8168.0 Copyright (C) Microsoft Corp 1988-1998

[EMAIL PROTECTED] IPv6 Configuration - Windows

2007-08-17 Thread Stusynski, Dan
I built Apache 2.2.4 on Win XP sp2 from source and everything works fine except 1 thing. In httpd.conf I have the following Listen directives: Listen ipv4_address:88 Listen [ipv6_address]:88 After starting Apache, it appears to receive requests for both http://ipv4_address:88 and http://[ipv6_a

[EMAIL PROTECTED] IPv6 - Windows Builds

2007-08-07 Thread Stusynski, Dan
I'm wondering if anyone has any thoughts on the below. I've build Apache 2.2.4 from source on Windows XP with IPv6 support by toggling the value of APR_HAVE_IPv6 to 1 in apr.hw. Running httpd.exe -V reveals -D APR_HAVE_IPV6 (IPv4-mapped addresses disabled), which I was expecting. However, I'm won