Archive for the ‘Controlpanels’ Category
Where is the ISPConfig 2 configuration file?
It’s /home/admispconfig/ispconfig/lib/config.inc.php.
How can I uninstall ISPConfig 2?
Log in to your command line as root and type the following:
/root/42go/uninstall
If the uninstall script fails, you can remove ISPConfig manually by deleteing these directories:
rm -rf /root/ispconfig
rm -rf /home/admispconfig
How will my existing Apache installation be influenced by the installation of ISPConfig 2?
The ISPConfig Apche webserver is installed in parallel with your existing Apache installation. The ISPConfig apache is only used for the controlpanel. The hosted webpages are served by the Apache that ships with your linux distribution.
This means you do not have to compile special modules into your Apache in order to work with ISPConfig. You can compile Apache and PHP the way you like.
The ISPConfig installer comments out the PHP settings in your httpd.conf. PHP can be later enabled for each web separately in the ISPConfig web interface.
Postfix: One of the users on the system has a CatchAll-email address. He receives all emails, even those intended for users of another site on the same server.
Please check if the domain of the users that receives all emails is the same as the domain $mydomain in /etc/postfix/main.cf. If this is the case, change $mydomain and run
postfix reload
on the shell.
You should never enter a domain that is used for a virtual site on the server as $mydomain in /etc/postfix/main.cf!
Which virus- and Spam scanner is used by ISPConfig 3
ISPConfig 3 uses ClamAV (http://www.clamav.net) as virus scanner and spamassassin as spam scanner. Amavisd-new is used as content filter.
Which virus scanner is used by ISPConfig 2
ISPConfig 2 uses ClamAV (http://www.clamav.net) as virus scanner and the E-mail Sanitizer (http://www.impsec.org/email-tools/procmail-security.html) as content filter.
Configure MySQL server to use TCP connections instead of Unix sockets?
Comment out the option:
skip-networking
in the file:
my.cnf
which typically lies in the directory /etc or /etc/mysql.
Then restart your MySQL server:
/etc/rc.d/init.d/mysql restart
or
/etc/init.d/mysql restart
with the command:
netstat -ta
you can check if MySQL is reachable via TCP.
How to enable verbose logging in pure-ftpd on Debian Linux
To turn on verbose logging (e.g. to debug FTP connection or authentication problems) inĀ pure-ftpd FTP server on Debian and Ubuntu Linux, execute the following command as root user in the shell:
echo 'yes' > /etc/pure-ftpd/conf/VerboseLog
and then restart pure-ftpd
/etc/init.d/pure-ftpd-mysql restart
The debug output will be logged to syslog. To view the log content, execute:
tail -n 100 /var/log/syslog
To disable verbose logging, execute these commands:
rm -f /etc/pure-ftpd/conf/VerboseLog
/etc/init.d/pure-ftpd-mysql restart