i am a newbie to linux and open-source community. i have recently installed linux (OpenSuse 11.2) on my server. since Virutalmin GPL does not support OpenSuse, thus i cannot use automatic install scripts.
instead i have installed ‘Webmin’ and ‘Virtualmin GPL’ (as a module in Webmin). the problem that i am facing now is with the installtion of Apache with Suexec in custom configuration.
as Virtualmin requires the ‘docroot’ in Suexec to be set to ‘/home’ instead of ‘/srv/www’, so i need to install Apache manualy and cannot use built-in tool in OpenSuse (YaST) to install and configure it. i found some methods on other forums, but there was none specifically listed for OpenSuse. on following the instructions/commands, none of the errors were generated, but apache is still not installed on my server.
here is the method i used to install apache 2.2.14 on OpenSuse 11.2
download httpd-2.2.14.tar.gz via wget URL TO Downloadfile
tar xfz [filename]
IMPORTANT: When you type in --with-suexec-docroot=/home \ watch out to use /home
./configure --with-suexec-caller=wwwrun \
–with-suexec-docroot=/home \
–with-suexec-gidmin=96 \
–with-suexec-uidmin=96 \
–with-suexec-logfile=/var/log/apache2/suexec.log
make all
cd support
make suexec
cp suexec /usr/sbin/suexec2
cd /usr/sbin/
chown root:root suexec2
chmod u+s suexec2
rcapache2 restart
please let me know how to install Apache + Suexec with custom configuration on OpenSuse 11.2 OR tell me if there is any error(s) in the above commands in context of OpenSuse.
Thanks