Author |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Wed 29 Jun '11 20:49 Post subject: Start issues 2.3.13 beta |
|
|
Just to keep you informed.
It is building. Done with GUI and the dep files at http://httpd.apache.org/dev/dist/. Ingnored the errors with ldap.
Started httpd.exe in a command window with the shipped httpd.conf. It is over and over starting (see below).
Anyone get it running with the sources at http://httpd.apache.org/dev/dist ?
Steffen
Code: |
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.0.3 for ServerName
[Wed Jun 29 17:12:34.100804 2011] [mpm_winnt:notice] [pid 3708:tid 288] Apache/2.3.13 (Win32) configured -- resuming normal operations
[Wed Jun 29 17:12:34.100804 2011] [mpm_winnt:notice] [pid 3708:tid 288] Server built: Jun 29 2011 15:58:17
[Wed Jun 29 17:12:34.100804 2011] [core:notice] [pid 3708:tid 288] Command line: 'C:\\Apache23\\bin\\httpd.exe -d C:/Apache23'
[Wed Jun 29 17:12:34.130848 2011] [mpm_winnt:notice] [pid 3708:tid 288] Parent: Created child process 2812
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.0.3 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.0.3 for ServerName
[Wed Jun 29 17:12:34.891942 2011] [mpm_winnt:notice] [pid 2812:tid 1920] Child process is running
[Wed Jun 29 17:12:34.932000 2011] [mpm_winnt:notice] [pid 2812:tid 1920] Child: Acquired the start mutex.
[Wed Jun 29 17:12:34.932000 2011] [mpm_winnt:notice] [pid 2812:tid 1920] Child: Starting 64 worker threads.
[Wed Jun 29 17:12:45.987897 2011] [mpm_winnt:notice] [pid 3708:tid 288] Parent: child process exited with status 0 -- Restarting.
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.0.3 for ServerName
[Wed Jun 29 17:12:46.759006 2011] [mpm_winnt:notice] [pid 3708:tid 288] Apache/2.3.13 (Win32) configured -- resuming normal operations
[Wed Jun 29 17:12:46.759006 2011] [mpm_winnt:notice] [pid 3708:tid 288] Server built: Jun 29 2011 15:58:17
[Wed Jun 29 17:12:46.759006 2011] [core:notice] [pid 3708:tid 288] Command line: 'C:\\Apache23\\bin\\httpd.exe -d C:/Apache23'
[Wed Jun 29 17:12:46.769020 2011] [mpm_winnt:notice] [pid 3708:tid 288] Parent: Created child process 4244
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.0.3 for ServerName
httpd.exe: Could not reliably determine the server's fully qualified domain name, using 192.168.0.3 for ServerName
[Wed Jun 29 17:12:48.140993 2011] [mpm_winnt:notice] [pid 4244:tid 1920] Child process is running
[Wed Jun 29 17:12:48.140993 2011] [mpm_winnt:notice] [pid 4244:tid 1920] Child: Acquired the start mutex.
[Wed Jun 29 17:12:48.140993 2011] [mpm_winnt:notice] [pid 4244:tid 1920] Child: Starting 64 worker threads.
[Wed Jun 29 17:13:49.829697 2011] [mpm_winnt:notice] [pid 3708:tid 288] Parent: child process exited with status 0 -- Restarting.
[Wed Jun 29 17:13:49.829697 2011] [core:error] [pid 3708:tid 288] no record of generation 0 of exiting child 4244
...
...
etc.
|
|
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Thu 30 Jun '11 3:37 Post subject: |
|
|
Steffen,
Are you trying to load mod_watchdog? Don't if you are, or patch. This garbage is not needed and is causing the problem with the module, again.
Code: |
--- modules/core/mod_watchdog.c 2011-05-17 22:19:15.532600000 -0700
+++ modules/core/mod_watchdog.c 2011-05-17 22:19:34.594600000 -0700
@@ -444,19 +444,6 @@
/* First time config phase -- skip. */
return OK;
-#if defined(WIN32)
- {
- const char *ppid = getenv("AP_PARENT_PID");
- if (ppid && *ppid) {
- ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s,
- "[%" APR_PID_T_FMT " - %s] "
- "child second stage post config hook",
- getpid(), ppid);
- return OK;
- }
- }
-#endif
-
apr_pool_userdata_get((void *)&wd_server_conf, pk, pproc);
if (!wd_server_conf) {
if (!(wd_server_conf = apr_pcalloc(pproc, sizeof(wd_server_conf_t))))
|
|
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Thu 30 Jun '11 12:37 Post subject: |
|
|
Nope, just using the shipped httpd.conf and it's restarting over and over again.
Steffen |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Fri 01 Jul '11 1:48 Post subject: |
|
|
I have seen this before,
[Wed Jun 29 17:13:49.829697 2011] [core:error] [pid 3708:tid 288] no record of generation 0 of exiting child 4244
Was when I was trying to add logging into a place where it just would not work. This will not be fun to figure out. I wish I could remember what I was doing when I got those, I was trying to debug something just cannot remember what it was.
Not loading or trying to load any third party modules are you? If not I'm stumped The 2.3 series has been working well for me for a long time with exception of a small list of problems. |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Fri 01 Jul '11 3:27 Post subject: |
|
|
I lied, I am getting this same thing on XP, but not on Vista. Will find out about Server 2008 R2 here in a few minutes but I'm pretty sure it will not be a problem on it. |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Fri 01 Jul '11 3:52 Post subject: |
|
|
I am wondering, I remember seeing a update for VS9 SP1 in Vista, I do not remember it in XP. Looking at this XP I was trying I do not see the KB listed. So since I built on vista, and copied over to the XP machine, I am wondering if that is it. I'll no more in a day or two.
I am going to build 2.3.13 on XP w/o the KB installed and see if it work on the server machine that is missing that KB.
KB2538243
Edit:
No, but it is a pre-Vista thing for sure, or it wouldn't be working perfectly on my Vista x86 for the past 24+ hours |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Sat 02 Jul '11 23:53 Post subject: |
|
|
Problem found and fixed in r1142264 |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Sun 03 Jul '11 12:22 Post subject: |
|
|
Works also here.
Only build problem left is that mod_ldap is not building.
Plan to make a download available today, so others can test some.
Steffen |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Sun 03 Jul '11 12:54 Post subject: |
|
|
Other issue:
Starts in command windows, following issue.
When closing the window (click cross or ctrl-x) Apache is not stopping.
httpd does not receive the signal to shut down.
Should work.
Steffen |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
Posted: Sun 03 Jul '11 22:28 Post subject: |
|
|
We've been making them available since 2.3.6 I think at Apachehaus. I tend to wait till the source is officially released is all.
mod_ldap is a real mess from about 40 hours before the tag. Before that I could get it to build with adding an -D AP_HAS_LDAP, I have reverted back to that for our distro.
I think 2.3.13 will pass and be released, but I have never been good at guessing this. 2.3.14 maybe if the mod_ldap stuff is figured out soon.
we'll see |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Sun 03 Jul '11 22:54 Post subject: |
|
|
Steffen wrote: | Other issue:
When closing the window (click cross or ctrl-x) Apache is not stopping.
httpd does not receive the signal to shut down.
|
Did you double click the binary or use httpd on the command line? I wonder why Crtl+x? I guess you mean Ctrl + c? For me Ctrl+c works... |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Mon 04 Jul '11 12:30 Post subject: |
|
|
ctrl+c and clicking the cross does not stop Apache here (XP), I does it in e.g. 2.2.19.
Started Apache by double clicking.
Steffen |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 04 Jul '11 18:58 Post subject: |
|
|
Started by double clicking I can confirm that it doesn't work to close apache using ctrl+c or clicking on the x on the window (using Windows 2003) |
|
Back to top |
|