Hello everyone, I am trying to follow The perfect Server Centos 6.1. I am doing the setup in Centos 6.2. When I try to run the command; chkconfig --levels 235 clamd on I get: error reading information on service clamd. No such file or directory. When I try to install it: yum install clamd, I get that the package is all ready installed. I do not know how to resolve this issue. Thanks
According to http://www.howtoforge.com/perfect-server-centos-6.1-x86_64-with-apache2-ispconfig-3-p5 , the correct commands are Code: sa-update chkconfig --levels 235 amavisd on chkconfig --del clamd chkconfig --levels 235 clamd.amavisd on /usr/bin/freshclam /etc/init.d/amavisd start /etc/init.d/clamd.amavisd start
My mistake. I followed these instruction and I am getting a different error now installing suphp. After I get the file, in the step make I get: MAKE[3] Nothing to be done for 'all'. If I continue with make install, I get Nothing to be done for 'install-data-am' I am new on Linux, sorry for my question Thanks For the Help
Try this: Code: cd /tmp rm -f suphp-0.7.1.tar.gz rm -fr suphp-0.7.1/ wget http://suphp.org/download/suphp-0.7.1.tar.gz tar xvfz suphp-0.7.1.tar.gz cd suphp-0.7.1/ ./configure --prefix=/usr --sysconfdir=/etc --with-apr=/usr/bin/apr-1-config --with-apxs=/usr/sbin/apxs --with-apache-user=apache --with-setid-mode=owner --with-php=/usr/bin/php-cgi --with-logfile=/var/log/httpd/suphp_log --enable-SUPHP_USE_USERGROUP=yes make make install
Thank You Falko, I resolved the issue. I am still not be able to make the server works. After installed squirrelmail and do all configuration, where I try to access: https://server-ip/webmail, I am getting: ERROR: Config file ' . '"config/config.php" not found. You need to ' . 'configure SquirrelMail before you can use it. '; exit; } // If we are, go ahead to the login page. header('Location: src/login.php'); ?> Thanks Again