Vine3.1で、php5-apache2モジュールを組み込んだapache2が起動しない場合の対処方法

del /etc/alternatives/apache2
ln -s /usr/sbin/apache2.prefork* /etc/alternatives/apache2

または

http://k_miya.blogcoara.jp/k_miya/2005/07/phpapache2_6c2f.html
にあるようにapache2 のMPM(Multi Processing Module)をprefork MPM に変更する。

# update-alternatives --config apache2

There are 4 alternatives which provide `apache2'.

  Selection    Alternative
                                                                                            • -
1 /usr/sbin/apache2.worker 2 /usr/sbin/apache2.prefork 3 /usr/sbin/apache2.threadpool 4 /usr/sbin/apache2.perchild Press enter to keep the default[*], or type selection number: 2 Using `/usr/sbin/apache2.prefork' to provide `apache2'.

その後、apache2 を(再)起動します。

# service apache2 restart