Morning all ...
Just built a 'jail' environment under a 4.5 system so that I can
putz around with Apache2-HEAD, where I could "reformat" at will to clean
up any cruft ... build went great, using:
#!/bin/sh
./configure \
--prefix=/usr/local/apache \
--with-perl=/usr/bin/perl \
--enable-so \
--with-suexec-caller=nobody \
--with-mpm=worker \
--enable-threads \
--with-port=80 \
--enable-mods-shared='all cgid ssl proxy proxy-connect proxy-ftp proxy-http
cache mem-cache file-cache'
Install went as smooth ... but I can't connect ...
logs/error_log shows:
[Fri Jan 11 14:20:17 2002] [info] mod_unique_id: using ip addr 131.162.139.86
[Fri Jan 11 14:20:18 2002] [info] mod_unique_id: using ip addr 131.162.139.86
[Fri Jan 11 14:20:19 2002] [notice] Digest: generating secret for digest
authentication ...
[Fri Jan 11 14:20:19 2002] [notice] Digest: done
[Fri Jan 11 14:20:19 2002] [warn] pid file /usr/local/apache/logs/httpd.pid
overwritten -- Unclean shutdown of previous Apache run?
[Fri Jan 11 14:20:19 2002] [crit] (78)Function not implemented: Fatal error: could not
open(create) scoreboard
And a ps listing shows no root process, only the one nobody
process:
jail# ps aux | grep http
nobody 83618 0.0 1.1 4224 2924 ?? IJ 2:20PM 0:00.00 bin/httpd
Even if I comment out the 'ScoreBoard' line in httpd.conf, it
gives the 'Function not implemented' error ...
Known problem? If not, suggestions on how to debug and provide
something just a wee bit more useful? I'm not finding any core files
laying about, so nothing I can gdb ...
Oh, I haven't compiled anything into it other then the base source
code (ie. no php or mod_perl or anything ... just straight apache right
now) ... am going to try out a prefork version next ...