
September 13th, 2012, 08:11 AM
|
|
Registered User
|
|
Join Date: Sep 2011
Posts: 7
Time spent in forums: 37 m 48 sec
Reputation Power: 0
|
|
Apache 2.4.3 service can autostart, can not stop!
My settings:
Code:
cd /tmp/httpd-2.4.3
./configure --prefix=/usr/local/apache --enable-so --enable-deflate=shared --enable-expires=shared --enable-headers=shared --enable-rewrite=shared --enable-static-support --with-included-apr --with-mpm=prefork
make && make install
cp -f build/rpm/httpd.init /etc/init.d/httpd
chmod +x /etc/init.d/httpd
chkconfig --add httpd
chkconfig httpd on
cd /etc
mv httpd httpd_old
mkdir -p httpd/conf.d
ln -s /usr/local/apache/conf httpd/conf
cd /usr/sbin/
ln -fs /usr/local/apache/bin/httpd
ln -fs /usr/local/apache/bin/apachectl
cd /var/log
rm -rf httpd/
ln -s /usr/local/apache/logs httpd
the httpd service can autostart, however can not stop the service, just like: service httpd stop
.
|