On Tue, Jun 21, 2016 at 05:57:40PM -0400, Johan Huldtgren wrote: > hello, > > when the old openbsd apache went away recently I swapped to apache2 > for the one site I have which still needs it, while it works, when it > gets started at boot (or if I wish to restart it), using rc.d or rcctl > will report a failure, but it will start nonetheless. If I use > apachectl2 it starts without issue. Using -d to rcctl produces nothing > obviously wrong (as far as I can tell). My httpd2.conf is barely > changed from the default one shipped (diff below), the only > substantial changes are that mod_rewrite and mod_perl are active and > there is one virtual host (but removing all those does not change the > behavior). Since apache seems happy with the config and it runs, turning up > debugging or syntax checks haven't produced anything useful. I don't know > if there is any additional debugging I can set for rcctl which would be > helpful. > > If anybody has any ideas I'd appreciate it, while it's not a huge > issue it's a bit unnerving to see apache2 being reported as not running > each morning in the daily mail.
Should be fixed in current. Thanks for the report. > > thanks, > > .jh > > > # rcctl -d start apache2 > doing _rc_parse_conf > doing _rc_quirks > apache2_flags empty, using default >< > doing _rc_parse_conf /var/run/rc.d/apache2 > doing _rc_quirks > doing rc_check > apache2 > doing rc_start > doing _rc_wait start > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing rc_check > doing _rc_rm_runfile > (failed) > > # ps auxww | grep httpd > root 4803 0.0 0.2 19940 31124 ?? Ss 2:30PM 0:00.54 httpd2: > /usr/local/sbin/httpd2 > www 96364 0.0 0.0 19816 3616 ?? I 2:30PM 0:00.05 httpd2: > /usr/local/sbin/httpd2 > www 92392 0.0 0.0 19816 3656 ?? I 2:30PM 0:00.05 httpd2: > /usr/local/sbin/httpd2 > www 60610 0.0 0.0 19816 3588 ?? I 2:30PM 0:00.03 httpd2: > /usr/local/sbin/httpd2 > www 45996 0.0 0.0 19816 3580 ?? I 2:30PM 0:00.05 httpd2: > /usr/local/sbin/httpd2 > www 90635 0.0 0.0 19816 3548 ?? I 2:30PM 0:00.02 httpd2: > /usr/local/sbin/httpd2 > root 42612 0.0 0.0 172 364 p2 R+ 2:30PM 0:00.00 grep httpd > > # apachectl2 -t > > Syntax OK > > # diff -u /usr/local/share/examples/apache2/conf/httpd2.conf > /etc/apache2/httpd2.conf > --- /usr/local/share/examples/apache2/conf/httpd2.conf Mon Jun 13 08:19:54 > 2016 > +++ /etc/apache2/httpd2.conf Tue Jun 21 14:28:14 2016 > @@ -49,7 +49,7 @@ > # prevent Apache from glomming onto all bound IP addresses. > # > #Listen 12.34.56.78:80 > -Listen 80 > +Listen 127.0.0.1:80 > > # > # Dynamic Shared Object (DSO) Support > @@ -172,7 +172,8 @@ > #LoadModule speling_module /usr/local/lib/apache2/mod_speling.so > #LoadModule userdir_module /usr/local/lib/apache2/mod_userdir.so > LoadModule alias_module /usr/local/lib/apache2/mod_alias.so > -#LoadModule rewrite_module /usr/local/lib/apache2/mod_rewrite.so > +LoadModule rewrite_module /usr/local/lib/apache2/mod_rewrite.so > +LoadModule perl_module /usr/local/lib/apache2/mod_perl.so > > <IfModule unixd_module> > # > @@ -205,7 +206,7 @@ > # e-mailed. This address appears on some server-generated pages, such > # as error documents. e.g. [email protected] > # > -ServerAdmin [email protected] > +ServerAdmin [email protected] > > # > # ServerName gives the name and port that the server uses to identify > itself. > @@ -214,7 +215,7 @@ > # > # If your host doesn't have a registered DNS name, enter its IP address > here. > # > -#ServerName www.example.com:80 > +ServerName www.mysite.com > > # > # Deny access to the entirety of your server's filesystem. You must > @@ -238,8 +239,8 @@ > # documents. By default, all requests are taken from this directory, but > # symbolic links and aliases may be used to point to other locations. > # > -DocumentRoot "/var/www/htdocs" > -<Directory "/var/www/htdocs"> > +DocumentRoot "/var/www/htdocs_www" > +<Directory "/var/www/htdocs_www"> > # > # Possible values for the Options directive are "None", "All", > # or any combination of: > @@ -290,7 +291,7 @@ > # logged here. If you *do* define an error logfile for a <VirtualHost> > # container, that host's errors will be logged there and not here. > # > -ErrorLog "logs/error_log" > +ErrorLog "logs/default/error_apache.log" > > # > # LogLevel: Control the number of messages logged to the error_log. > @@ -319,7 +320,7 @@ > # define per-<VirtualHost> access logfiles, transactions will be > # logged therein and *not* in this file. > # > - CustomLog "logs/access_log" common > + CustomLog "logs/default/access_apache.log" combined > > # > # If you prefer a logfile with access, agent, and referer information > @@ -438,7 +439,7 @@ > # > # Some examples: > #ErrorDocument 500 "The server made a boo boo." > -#ErrorDocument 404 /missing.html > +ErrorDocument 404 http://www.mysite.com/missing.html > #ErrorDocument 404 "/cgi-bin/missing_handler.pl" > #ErrorDocument 402 http://www.example.com/subscription_info.html > # > @@ -517,4 +518,6 @@ > </IfModule> > > # Include extra module configuration files > -IncludeOptional /var/www/conf/modules/*.conf > +#IncludeOptional /var/www/conf/modules/*.conf > + > +Include /etc/apache2/sites-enabled/mysite/mysite.conf > > # dmesg > OpenBSD 6.0-beta (GENERIC.MP) #2198: Sun Jun 19 11:58:45 MDT 2016 > [email protected]:/usr/src/sys/arch/amd64/compile/GENERIC.MP > real mem = 17135230976 (16341MB) > avail mem = 16611397632 (15841MB) > mpath0 at root > scsibus0 at mpath0: 256 targets > mainbus0 at root > bios0 at mainbus0: SMBIOS rev. 2.7 @ 0xeb4c0 (54 entries) > bios0: vendor American Megatrends Inc. version "2.00" date 05/08/2012 > bios0: Supermicro X9SCD > acpi0 at bios0: rev 2 > acpi0: sleep states S0 S4 S5 > acpi0: tables DSDT FACP APIC FPDT MCFG PRAD HPET SSDT SPMI SSDT SSDT DMAR > acpi0: wakeup devices PS2K(S4) PS2M(S4) UAR1(S4) P0P1(S4) USB1(S4) USB2(S4) > USB3(S4) USB4(S4) USB5(S4) USB6(S4) USB7(S4) PXSX(S4) RP01(S4) PXSX(S4) > RP02(S4) PXSX(S4) [...] > acpitimer0 at acpi0: 3579545 Hz, 24 bits > acpimadt0 at acpi0 addr 0xfee00000: PC-AT compat > cpu0 at mainbus0: apid 0 (boot processor) > cpu0: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.93 MHz > cpu0: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu0: 256KB 64b/line 8-way L2 cache > cpu0: smt 0, core 0, package 0 > mtrr: Pentium Pro MTRR support, 10 var ranges, 88 fixed ranges > cpu0: apic clock running at 99MHz > cpu0: mwait min=64, max=64, C-substates=0.2.1.1, IBE > cpu1 at mainbus0: apid 2 (application processor) > cpu1: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.30 MHz > cpu1: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu1: 256KB 64b/line 8-way L2 cache > cpu1: smt 0, core 1, package 0 > cpu2 at mainbus0: apid 4 (application processor) > cpu2: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.30 MHz > cpu2: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu2: 256KB 64b/line 8-way L2 cache > cpu2: smt 0, core 2, package 0 > cpu3 at mainbus0: apid 6 (application processor) > cpu3: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.30 MHz > cpu3: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu3: 256KB 64b/line 8-way L2 cache > cpu3: smt 0, core 3, package 0 > cpu4 at mainbus0: apid 1 (application processor) > cpu4: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.30 MHz > cpu4: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu4: 256KB 64b/line 8-way L2 cache > cpu4: smt 1, core 0, package 0 > cpu5 at mainbus0: apid 3 (application processor) > cpu5: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.30 MHz > cpu5: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu5: 256KB 64b/line 8-way L2 cache > cpu5: smt 1, core 1, package 0 > cpu6 at mainbus0: apid 5 (application processor) > cpu6: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.30 MHz > cpu6: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu6: 256KB 64b/line 8-way L2 cache > cpu6: smt 1, core 2, package 0 > cpu7 at mainbus0: apid 7 (application processor) > cpu7: Intel(R) Xeon(R) CPU E3-1240 V2 @ 3.40GHz, 3392.30 MHz > cpu7: > FPU,VME,DE,PSE,TSC,MSR,PAE,MCE,CX8,APIC,SEP,MTRR,PGE,MCA,CMOV,PAT,PSE36,CFLUSH,DS,ACPI,MMX,FXSR,SSE,SSE2,SS,HTT,TM,PBE,SSE3,PCLMUL,DTES64,MWAIT,DS-CPL,VMX,SMX,EST,TM2,SSSE3,CX16,xTPR,PDCM,PCID,SSE4.1,SSE4.2,x2APIC,POPCNT,DEADLINE,AES,XSAVE,AVX,F16C,RDRAND,NXE,LONG,LAHF,PERF,ITSC,FSGSBASE,SMEP,ERMS,SENSOR,ARAT > cpu7: 256KB 64b/line 8-way L2 cache > cpu7: smt 1, core 3, package 0 > ioapic0 at mainbus0: apid 2 pa 0xfec00000, version 20, 24 pins > acpimcfg0 at acpi0 addr 0xf8000000, bus 0-63 > acpihpet0 at acpi0: 14318179 Hz > acpiprt0 at acpi0: bus 0 (PCI0) > acpiprt1 at acpi0: bus 2 (P0P1) > acpiprt2 at acpi0: bus -1 (RP01) > acpiprt3 at acpi0: bus -1 (RP02) > acpiprt4 at acpi0: bus -1 (RP03) > acpiprt5 at acpi0: bus -1 (RP04) > acpiprt6 at acpi0: bus -1 (RP05) > acpiprt7 at acpi0: bus -1 (RP06) > acpiprt8 at acpi0: bus -1 (RP07) > acpiprt9 at acpi0: bus -1 (RP08) > acpiprt10 at acpi0: bus 1 (PEG0) > acpiprt11 at acpi0: bus -1 (PEG1) > acpiprt12 at acpi0: bus -1 (PEG2) > acpiprt13 at acpi0: bus -1 (PEG3) > acpiec0 at acpi0: not present > acpicpu0 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpicpu1 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpicpu2 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpicpu3 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpicpu4 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpicpu5 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpicpu6 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpicpu7 at acpi0: C3(350@80 mwait.1@0x20), C1(1000@1 mwait.1), PSS > acpipwrres0 at acpi0: FN00, resource for FAN0 > acpipwrres1 at acpi0: FN01, resource for FAN1 > acpipwrres2 at acpi0: FN02, resource for FAN2 > acpipwrres3 at acpi0: FN03, resource for FAN3 > acpipwrres4 at acpi0: FN04, resource for FAN4 > acpitz0 at acpi0: critical temperature is 106 degC > acpitz1 at acpi0: critical temperature is 106 degC > "INT3F0D" at acpi0 not configured > "PNP0303" at acpi0 not configured > "PNP0F03" at acpi0 not configured > "PNP0501" at acpi0 not configured > "PNP0501" at acpi0 not configured > "IPI0001" at acpi0 not configured > acpibtn0 at acpi0: PWRB > "PNP0C0B" at acpi0 not configured > "PNP0C0B" at acpi0 not configured > "PNP0C0B" at acpi0 not configured > "PNP0C0B" at acpi0 not configured > "PNP0C0B" at acpi0 not configured > acpivideo0 at acpi0: GFX0 > acpivout0 at acpivideo0: DD02 > ipmi at mainbus0 not configured > cpu0: Enhanced SpeedStep 3392 MHz: speeds: 3401, 3400, 3300, 3100, 3000, > 2900, 2800, 2600, 2500, 2400, 2200, 2100, 2000, 1900, 1700, 1600 MHz > pci0 at mainbus0 bus 0 > pchb0 at pci0 dev 0 function 0 "Intel Xeon E3-1200 v2 Host" rev 0x09 > ppb0 at pci0 dev 1 function 0 "Intel Core 3G PCIE" rev 0x09: msi > pci1 at ppb0 bus 1 > em0 at pci1 dev 0 function 0 "Intel 82580" rev 0x01: msi, address > 00:25:90:6a:c8:90 > em1 at pci1 dev 0 function 1 "Intel 82580" rev 0x01: msi, address > 00:25:90:6a:c8:91 > "Intel 6 Series MEI" rev 0x04 at pci0 dev 22 function 0 not configured > vendor "Intel", unknown product 0x1c3b (class communications subclass > miscellaneous, rev 0x04) at pci0 dev 22 function 1 not configured > ehci0 at pci0 dev 26 function 0 "Intel 6 Series USB" rev 0x05: apic 2 int 16 > usb0 at ehci0: USB revision 2.0 > uhub0 at usb0 "Intel EHCI root hub" rev 2.00/1.00 addr 1 > ehci1 at pci0 dev 29 function 0 "Intel 6 Series USB" rev 0x05: apic 2 int 23 > usb1 at ehci1: USB revision 2.0 > uhub1 at usb1 "Intel EHCI root hub" rev 2.00/1.00 addr 1 > ppb1 at pci0 dev 30 function 0 "Intel 82801BA Hub-to-PCI" rev 0xa5 > pci2 at ppb1 bus 2 > vga1 at pci2 dev 3 function 0 "Matrox MGA G200eW" rev 0x0a > wsdisplay0 at vga1 mux 1: console (80x25, vt100 emulation) > wsdisplay0: screen 1-5 added (80x25, vt100 emulation) > pcib0 at pci0 dev 31 function 0 "Intel C204 LPC" rev 0x05 > ahci0 at pci0 dev 31 function 2 "Intel 6 Series AHCI" rev 0x05: msi, AHCI > 1.3 > ahci0: port 0: 3.0Gb/s > scsibus1 at ahci0: 32 targets > sd0 at scsibus1 targ 0 lun 0: <ATA, WDC WD1003FBYX-0, 01.0> SCSI3 0/direct > fixed naa.50014ee20736de8c > sd0: 953869MB, 512 bytes/sector, 1953525168 sectors > ichiic0 at pci0 dev 31 function 3 "Intel 6 Series SMBus" rev 0x05: apic 2 > int 18 > iic0 at ichiic0 > sdtemp0 at iic0 addr 0x19: se97 > sdtemp1 at iic0 addr 0x1b: se97 > lm1 at iic0 addr 0x2c: W83627DHG > spdmem0 at iic0 addr 0x51: 8GB DDR3 SDRAM ECC PC3-10600 with thermal sensor > spdmem1 at iic0 addr 0x53: 8GB DDR3 SDRAM ECC PC3-10600 with thermal sensor > isa0 at pcib0 > isadma0 at isa0 > com0 at isa0 port 0x3f8/8 irq 4: ns16550a, 16 byte fifo > pckbc0 at isa0 port 0x60/5 irq 1 irq 12 > pckbd0 at pckbc0 (kbd slot) > wskbd0 at pckbd0: console keyboard, using wsdisplay0 > pcppi0 at isa0 port 0x61 > spkr0 at pcppi0 > wbsio0 at isa0 port 0x2e/2: NCT6776F rev 0x33 > lm2 at wbsio0 port 0xa30/8: NCT6776F > uhub2 at uhub0 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 > umass0 at uhub2 port 1 configuration 1 interface 0 "Ours Technology product > 0x2222" rev 2.00/2.00 addr 3 > umass0: using SCSI over Bulk-Only > scsibus2 at umass0: 2 targets, initiator 0 > sd1 at scsibus2 targ 1 lun 0: <IPMI, Virtual Disk, 3000> SCSI0 0/direct > removable > umass1 at uhub2 port 1 configuration 1 interface 1 "Ours Technology product > 0x2222" rev 2.00/2.00 addr 3 > umass1: using ATAPI over Bulk-Only > scsibus3 at umass1: 2 targets, initiator 0 > cd0 at scsibus3 targ 1 lun 0: <IPMI, Virtual CDROM, YS0J> ATAPI 5/cdrom > removable > uhidev0 at uhub2 port 2 configuration 1 interface 0 "Winbond Electronics > Corp Hermon USB hidmouse Device" rev 1.10/0.01 addr 4 > uhidev0: iclass 3/1 > ums0 at uhidev0: 3 buttons, Z dir > wsmouse0 at ums0 mux 0 > uhidev1 at uhub2 port 2 configuration 1 interface 1 "Winbond Electronics > Corp Hermon USB hidmouse Device" rev 1.10/0.01 addr 4 > uhidev1: iclass 3/1 > ukbd0 at uhidev1: 8 variable keys, 6 key codes > wskbd1 at ukbd0 mux 1 > wskbd1: connecting to wsdisplay0 > uhub3 at uhub1 port 1 "Intel Rate Matching Hub" rev 2.00/0.00 addr 2 > vscsi0 at root > scsibus4 at vscsi0: 256 targets > softraid0 at root > scsibus5 at softraid0: 256 targets > root on sd0a (46c61511629c7bbd.a) swap on sd0b dump on sd0b > ichiic0: abort failed, status 0x41<BUSY,INUSE> > -- Antoine
