VMware Images:
|
The Perfect Server - CentOS 6.4 x86_64 (Apache2, Dovecot, ISPConfig 3) - Page 3
4 Adjust /etc/hostsNext we edit /etc/hosts. Make it look like this: vi /etc/hosts
5 Configure The Firewall(You can skip this chapter if you have already disabled the firewall at the end of the basic system installation.) I want to install ISPConfig at the end of this tutorial which comes with its own firewall. That's why I disable the default CentOS firewall now. Of course, you are free to leave it on and configure it to your needs (but then you shouldn't use any other firewall later on as it will most probably interfere with the CentOS firewall). Run system-config-firewall and disable the firewall. To check that the firewall has really been disabled, you can run iptables -L afterwards. The output should look like this: [root@server1 ~]# iptables -L
6 Disable SELinuxSELinux is a security extension of CentOS that should provide extended security. In my opinion you don't need it to configure a secure system, and it usually causes more problems than advantages (think of it after you have done a week of trouble-shooting because some service wasn't working as expected, and then you find out that everything was ok, only SELinux was causing the problem). Therefore I disable it (this is a must if you want to install ISPConfig later on). Edit /etc/selinux/config and set SELINUX=disabled: vi /etc/selinux/config
Afterwards we must reboot the system: reboot
7 Enable Additional Repositories And Install Some SoftwareFirst we import the GPG keys for software packages: rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY* Then we enable the RPMforge and EPEL repositories on our CentOS system as lots of the packages that we are going to install in the course of this tutorial are not available in the official CentOS 6.4 repositories: rpm --import http://dag.wieers.com/rpm/packages/RPM-GPG-KEY.dag.txt cd /tmp (If the above link doesn't work anymore, you can find the current version of rpmforge-release here: http://packages.sw.be/rpmforge-release/) rpm --import https://fedoraproject.org/static/0608B895.txt yum install yum-priorities Edit /etc/yum.repos.d/epel.repo... vi /etc/yum.repos.d/epel.repo ... and add the line priority=10 to the [epel] section:
Then we update our existing packages on the system: yum update Now we install some software packages that are needed later on: yum groupinstall 'Development Tools'
8 Quota(If you have chosen a different partitioning scheme than I did, you must adjust this chapter so that quota applies to the partitions where you need it.) To install quota, we run this command: yum install quota Edit /etc/fstab and add ,usrjquota=aquota.user,grpjquota=aquota.group,jqfmt=vfsv0 to the / partition (/dev/mapper/vg_server1-lv_root): vi /etc/fstab
Then run mount -o remount / quotacheck -avugm to enable quota.
9 Install Apache, MySQL, phpMyAdminWe can install the needed packages with one single command: yum install ntp httpd mod_ssl mysql-server php php-mysql php-mbstring phpmyadmin
10 Install DovecotDovecot can be installed as follows: yum install dovecot dovecot-mysql Now create the system startup links and start Dovecot: chkconfig --levels 235 dovecot on
11 Install PostfixPostfix can be installed as follows: yum install postfix Then turn off Sendmail and start Postfix and MySQL: chkconfig --levels 235 mysqld on chkconfig --levels 235 sendmail off
12 Install GetmailGetmail can be installed as follows: yum install getmail
|



Recent comments
1 day 2 hours ago
1 day 7 hours ago
1 day 11 hours ago
1 day 13 hours ago
2 days 3 hours ago
2 days 3 hours ago
2 days 8 hours ago
2 days 15 hours ago
2 days 16 hours ago
2 days 17 hours ago