You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by James Moe <ji...@sohnen-moe.com> on 2016/02/28 08:07:21 UTC

[users@httpd] Migrating from apache 2.2 to 2.4

opensuse 42.1
apache 2.4.16

  I just upgraded a linux distribution from opensuse 13.2 to 42.1. It
included an upgrade of apache from 2.2. to 2.4.
  The initial upgrade was not to 2.4.16; rather an earlier version.
After adding mod_access_compat module, apache started fine.
  Then came the update to 2.4.16. Now I get a load of messages like the
following, one for each module listed in </etc/sysconfig/apache2>,
APACHE_MODULES.

[so:warn] [pid 7621] AH01574: module access_compat_module is already
loaded, skipping

  The curious part is that if I remove them to prevent the warning,
other complaints are logged about missing modules. So: is this a bogus
message? Known good error? Meaningless warning?
  The only messages logged are the warnings about
already-loaded-modules. Apache still does not start. It is not providing
any information about its failure to launch.

  Finally, the question: Why does httpd fail to start?

-- 
James Moe
moe dot james at sohnen-moe dot com
520.743.3936


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Migrating from apache 2.2 to 2.4

Posted by James Moe <ji...@sohnen-moe.com>.
On 02/28/2016 12:07 AM, James Moe wrote:
>   Finally, the question: Why does httpd fail to start?
>
  Found it.
  It was one of the vhosts that was not loading. A message about port
808 already in use, and it quit. After disabling that vhost, apache
started up normally.


Listen 808
<VirtualHost *:808>
    ServerAdmin jimoe@sohnen-moe.com

    ServerName cloud.sma.com
    DocumentRoot "/data01/t-drv/websites/owncloud"

    ErrorLog  "/data01/t-drv/websites/.logs/cloud-error_log"
    CustomLog "/data01/t-drv/websites/.logs/cloud-access_log" common

 <Directory "/data01/t-drv/websites/ownloud">
    AllowOverride FileInfo Authconfig
    Options -ExecCGI
 </Directory>
</VirtualHost>

-- 
James Moe
moe dot james at sohnen-moe dot com
520.743.3936

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org