The Perfect Server - CentOS 5.6 x86_64 [ISPConfig 3] - Page 4

10 Install Dovecot

There's a Dovecot package in the CentOS repository, but unfortunately it doesn't support MySQL. Therefore we must remove the existing Dovecot and install another Dovecot package (from ATrpms) which comes with MySQL support.

yum remove dovecot

Create a new file /etc/yum.repos.d/atrpms.repo...

vi /etc/yum.repos.d/atrpms.repo

... and insert the following lines into the the file:

[atrpms]
name=Red Hat Enterprise Linux 5 - x86_64 - ATrpms
baseurl=http://dl.atrpms.net/el5-x86_64/atrpms/stable
failovermethod=priority
exclude=dovecot-2*
includepkgs=dovecot dovecot-sieve

#
# requires stable
#
[atrpms-testing]
name=Red Hat Enterprise Linux 5 - x86_64 - ATrpms testing
baseurl=http://dl.atrpms.net/el5-x86_64/atrpms/testing
failovermethod=priority
enabled=1
exclude=dovecot-2*
includepkgs=dovecot dovecot-sieve

#
# requires stable and testing
#
[atrpms-bleeding]
name=Red Hat Enterprise Linux 5 - x86_64 - ATrpms bleeding
baseurl=http://dl.atrpms.net/el5-x86_64/atrpms/bleeding
failovermethod=priority
enabled=0

Then import tge gpg key of the atrpm repository...

wget http://ATrpms.net/RPM-GPG-KEY.atrpms
rpm --import RPM-GPG-KEY.atrpms

...and install Dovecot:

yum install dovecot dovecot-sieve

On a 64-bit system, also do this (don't do this on a 32-bit system!):

ln -s /usr/lib64/dovecot/ /usr/lib/dovecot

Now we create the system startup links for Dovecot:

chkconfig --levels 235 dovecot on
/etc/init.d/dovecot start

If Dovecot fails to start with the following error:

Fatal: listen(::, 143) failed: Address already in use

... open /etc/dovecot.conf...

vi /etc/dovecot.conf 

... and add the line listen = *:

[...]
#listen = *, [::]
listen = *
[...]

Then try to start Dovecot again:

/etc/init.d/dovecot start 

 

11 Install Postfix With MySQL Support

The "normal" Postfix package from the CentOS repository doesn't have MySQL, but the Postfix package from the CentOS Plus repository does. Therefore we remove Postfix...

yum remove postfix

... and install it again, this time from the CentOS Plus repository:

yum install postfix   

Then turn off Sendmail and start Postfix and MySQL:

chkconfig --levels 235 mysqld on
/etc/init.d/mysqld start

chkconfig --levels 235 sendmail off
chkconfig --levels 235 postfix on
/etc/init.d/sendmail stop
/etc/init.d/postfix start

 

12 Install Getmail

Getmail can be installed as follows:

yum install getmail

 

13 Set MySQL Passwords And Configure phpMyAdmin

Set passwords for the MySQL root account:

mysql_secure_installation

[[email protected] tmp]# mysql_secure_installation




NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!


In order to log into MySQL to secure it, we'll need the current
password for the root user.  If you've just installed MySQL, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MySQL
root user without the proper authorisation.

Set root password? [Y/n]
 <-- ENTER
New password: <-- yourrootsqlpassword
Re-enter new password: <-- yourrootsqlpassword
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MySQL installation has an anonymous user, allowing anyone
to log into MySQL without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n]
 <-- ENTER
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n]
 <-- ENTER
 ... Success!

By default, MySQL comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n]
 <-- ENTER
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n]
 <-- ENTER
 ... Success!

Cleaning up...



All done!  If you've completed all of the above steps, your MySQL
installation should now be secure.

Thanks for using MySQL!


[[email protected] tmp]#

Now we configure phpMyAdmin. We change the Apache configuration so that phpMyAdmin allows connections not just from localhost (by commenting out the <Directory "/usr/share/phpmyadmin"> stanza):

vi /etc/httpd/conf.d/phpmyadmin.conf
#
#  Web application to manage MySQL
#

#<Directory "/usr/share/phpmyadmin">
#  Order Deny,Allow
#  Deny from all
#  Allow from 127.0.0.1
#</Directory>

Alias /phpmyadmin /usr/share/phpmyadmin
Alias /phpMyAdmin /usr/share/phpmyadmin
Alias /mysqladmin /usr/share/phpmyadmin

Next we change the authentication in phpMyAdmin from cookie to http:

vi /usr/share/phpmyadmin/config.inc.php
[...]
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'http';
[...]

Then we create the system startup links for Apache and start it:

chkconfig --levels 235 httpd on
/etc/init.d/httpd start

Now you can direct your browser to http://server1.example.com/phpmyadmin/ or http://192.168.0.100/phpmyadmin/ and log in with the user name root and your new root MySQL password.

 

14 Install Amavisd-new, SpamAssassin And ClamAV

To install amavisd-new, spamassassin and clamav, run the following command:

yum install amavisd-new spamassassin clamav clamd unzip bzip2 unrar perl-DBD-mysql

Open /etc/sysconfig/amavisd...

vi /etc/sysconfig/amavisd

... and uncomment the line CONFIG_FILE="/etc/amavisd.conf":

### Uncomment this if you want to use amavis with sendmail milter interface.
### See README.milter for details.
#
#MILTER_SOCKET="local:/var/amavis/amavis-milter.sock"
#MILTER_SOCKET="[email protected]"

### These are other defaults.
#AMAVIS_ACCOUNT="amavis"
CONFIG_FILE="/etc/amavisd.conf"
#MILTER_FLAGS=""

Then we start freshclam, amavisd, and clamd...

sa-update
chkconfig --levels 235 amavisd on
chkconfig --levels 235 clamd on
/usr/bin/freshclam
/etc/init.d/amavisd start
/etc/init.d/clamd start

... and create some necessary directories:

mkdir /var/run/amavisd /var/spool/amavisd /var/spool/amavisd/tmp /var/spool/amavisd/db
chown amavis /var/run/amavisd /var/spool/amavisd /var/spool/amavisd/tmp /var/spool/amavisd/db
ln -s /var/run/clamav/clamd.sock /var/spool/amavisd/clamd.sock

Share this page:

Suggested articles

8 Comment(s)

Add comment

Comments

By: Marcelo Santabaia

When I type the command:

vi /usr/share/phpmyadmin/config.inc.php

I receive this ERROR:


"/usr/share/phpmyadmin/config.inc.php"
"/usr/share/phpmyadmin/config.inc.php" E212: Can't open file for writing

 

Why?

By: Anonymous

hi

  you must use this path

 

/etc/httpd/conf.d/config.inc.php

    e.x : nano /etc/httpd/conf.d/config.inc.php

     

By: Hetz Ben Hamo

Trying to install postfix, even by enabling the centosplus repository will not help, since there is an update which is newer then whats available in centosplus.

 Workaround: go to your local centos mirror, go to the centosplus directory, to http://mirror.centos.org/centos/5.6/centosplus/x86_64/RPMS/ and download manually the file: http://mirror.centos.org/centos/5.6/centosplus/x86_64/RPMS/postfix-2.3.3-2.el5.centos.mysql_pgsql.x86_64.rpm

 Then do: yum localinstall postfix-2.3.3-2.el5.centos.mysql_pgsql.x86_64.rpm (it needs to add .. postgresql.. don't ask me why..) and then things will work.

By:
By: Web Age Support

started with:

dovecot-1.2.17-0_115

dovecot-sieve-0.1.18-7

Commands I entered (as root) to get dovecot-sieve working:

yum install rpm-build

yum install redhat-rpm-config

mkdir -p ~/rpmbuild/{BUILD,RPMS,SOURCES,SPECS,SRPMS}

echo '%_topdir %(echo $HOME)/rpmbuild' > ~/.rpmmacros

yum install make gcc

cd /root

wget 'http://dl.atrpms.net/all/dovecot-sieve-0.1.18-7.src.rpm'

wget http://dl.atrpms.net/all/dovecot-devel-1.2.17-0_115.el5.x86_64.rpm

rpm -ivh dovecot-devel-1.2.17-0_115.el5.x86_64.rpm 

rpmbuild --rebuild dovecot-sieve-0.1.18-7.src.rpm 

cd /root/rpmbuild/RPMS/x86_64

rpm -e dovecot-sieve

rpm -ivh dovecot-sieve-0.1.18-7.x86_64.rpm 

service dovecot restart

By: Anonymous

Dovecot Warning ...

At the time i wrote this, the AtRPMS repo updated the dovecot from 1.2.16 to 1.2.17 and the current dovecot-sieve package is not in sync. Either you'll need to wait to update their dovecot-sieve package or you need to recompile from sources with rpmbuild.

 regards

By:

Hi, Thank you for this really nice guide! Is it possible to give us more instructions about dovecot and 1.2.16 version,
i have installed 1.2.17 and i am trying for about two days now to figure out what was wrong.

I mean how to install or downgrade the  1.16 or perhaps how to recompile the dovecote package.

 

By: Luca Tocco

Dovecot 1.2.17 not work on this guide from latest update. I have installed courier instead of dovecot and ispconfig work great!

 Bye.