NOTE:
If you are running off a OpenVZ Machine you may run into yum memory errors if so run these commands:
Code:
echo "exclude=filesystem* tzdata*" >> /etc/yum.conf
mv /etc/yum/pluginconf.d/fastestmirror.conf /etc/yum/pluginconf.d/fastestmirror.disabled
touch /etc/yum/pluginconf.d/fastestmirror.conf
Step One (installing and configuring mysql):
run the following command:
Code:
yum install mysql-server
and before starting mysql edit the /etc/my.cnf file (in this instance i will be using the text editor called nano)
and i deleted every thing else and put this in there:
Code:
[mysqld]
default-storage-engine = myisam
key_buffer = 8M
query_cache_size = 8M
query_cache_limit = 4M
max_connections=25
thread_cache=1
skip-innodb
query_cache_min_res_unit=0
tmp_table_size = 4M
max_heap_table_size = 4M
table_cache=256
concurrent_insert=2
then i went ahead and ran:
Code:
service mysql start
then i set the password with:
Code:
mysqladmin -u root password NEWPASSWORD
Step Two (installing and configuring kloxo)
Install Kloxo with:
Code:
setenforce 0
wget http://download.lxcenter.org/download/kloxo/production/kloxo-install-master.sh
sh ./kloxo-install-master.sh --db-rootpassword=PASSWORD
After kloxo has been installed
go to yourdomain:7778 pr youripadress:7778 and the default logins will be:
user:admin
pass:admin
change them to your desired logins
then go on the left had side to the tab servers
then go to localhost
then go to switch programs
then change
Web (drop down box) apache ==> Web (drop down box) lighttpd
Dns (drop down box) bind ==> Dns (drop down box) djbdns
Spam (drop down box) spamassasin ==> Spam (drop down box) bojofilter
at least that is what spam program i selected, i close the process later because i can clarify what is spam and what is not.