Installing A Web, Email & MySQL Database Cluster On Debian 6.0 With ISPConfig 3
|
Submitted by till (Contact Author) (Forums) on Tue, 2012-02-14 16:33. :: Debian | ISPConfig | Web Server | Control Panels | Email | MySQL
Installing A Web, Email & MySQL Database Cluster On Debian 6.0 With ISPConfig 3Version 1.0 This tutorial describes the installation of a clustered web, email, database and DNS server to be used for redundancy, high availability and load balancing on Debian 6 with the ISPConfig 3 control panel. MySQL Master/Master replication will be used to replicate the MySQL client databases between the servers and Unison will be used to Sync the /var/www (websites) and /var/vmail (email account data) folders.
1 Setting Up The Two Base SystemsIn this setup there will be one master server (which runs the ISPConfig control panel interface) and one slave server which mirrors the web (apache), email (postfix and dovecot) and database (MySQL) services of the master server. To install the clustered setup, we need two servers with a Debian 6.0 minimal install. The base setup is described in the following tutorial in the steps 1 - 8: http://www.howtoforge.com/perfect-server-debian-squeeze-with-bind-and-dovecot-ispconfig-3 Install only steps 1 - 8 of the perfect server tutorial and not the other steps as they differ for a clustered setup! In my example I use the following hostnames and IP addresses for the two servers: Master Server Hostname: server1.example.tld Slave server Hostname: server2.example.tld Whereever these hostnames or IP addresses occur in the next installation steps you will have to change them to match the IP's and hostnames of your servers.
2 Installing The Two ServersThe following steps have to be executed on the master and on the slave server. If a specific step is only for the master or slave, then I've added a note in the description in red. vi /etc/hosts 127.0.0.1 localhost 192.168.0.105 server1.example.tld 192.168.0.106 server2.example.tld # The following lines are desirable for IPv6 capable hosts ::1 localhost ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters ff02::3 ip6-allhosts Set the hostname of the server: echo server1.example.tld > /etc/hostname Use server1.example.tld on the first server and server2.example.tld on the second server. Edit the sources.list file... vi /etc/apt/sources.list ... and ensure that your /etc/apt/sources.list contains the squeeze-updates repository (this makes sure you always get the newest updates for the ClamAV virus scanner - this project publishes releases very often, and sometimes old versions stop working). [...] Run apt-get update to install the latest updates (if there are any). It is a good idea to synchronize the system clock with an NTP (network time protocol) server over the Internet. Simply run apt-get -y install ntp ntpdate and your system time will always be in sync. On server 1: Now we create a private/public key pair on server1.example.tld: ssh-keygen -t dsa root@server1:~# ssh-keygen -t dsa It is important that you do not enter a passphrase otherwise the mirroring will not work without human interaction so simply hit ENTER! Next, we copy our public key to server2.example.tld: ssh-copy-id -i $HOME/.ssh/id_dsa.pub root@192.168.0.106 root@server1:~# ssh-copy-id -i $HOME/.ssh/id_dsa.pub root@192.168.0.101 .ssh/authorized_keys to make sure we haven't added extra keys that you weren't expecting. Now check on server2 if server1's public key has correctly been transferred: server2: cat $HOME/.ssh/authorized_keys ssh-dss AAAAB3NzaC1kc3MAAACBAPhiAexgEBexnw0rFG8lXwAuIsca/V+lhmv5lhF3BqUfAbL7e2sWlQlGhxZ8I2UnzZK8Ypffq6Ks+lp46yOs7MMXLqb7JBP9gkgqxyEWqOoUSt5hTE9ghupcCvE7rRMhefY5shLUnRkVH6hnCWe6yXSnH+Z8lHbcfp864GHkLDK1AAAAFQDddQckbfRG4C6LOQXTzRBpIiXzoQAAAIEAleevPHwi+a3fTDM2+Vm6EVqR5DkSLwDM7KVVNtFSkAY4GVCfhLFREsfuMkcBD9Bv2DrKF2Ay3OOh39269Z1rgYVk+/MFC6sYgB6apirMlHj3l4RR1g09LaM1OpRz7pc/GqIGsDt74D1ES2j0zrq5kslnX8wEWSHapPR0tziin6UAAACBAJHxgr+GKxAdWpxV5MkF+FTaKcxA2tWHJegjGFrYGU8BpzZ4VDFMiObuzBjZ+LrUs57BiwTGB/MQl9FKQEyEV4J+AgZCBxvg6n57YlVn6OEA0ukeJa29aFOcc0inEFfNhw2jAXt5LRyvuHD/C2gG78lwb6CxV02Z3sbTBdc43J6y root@server1.example.tld Install postfix, dovecot and mysql with one single command: apt-get -y install postfix postfix-mysql postfix-doc mysql-client mysql-server openssl getmail4 rkhunter binutils dovecot-imapd dovecot-pop3d sudo Enter the new password for the MySQL root user when requested by the installer. You should choose the same password for both servers. Then answer the next questions as decsribed below: General type of configuration? <-- Internet site Use server1.example.tld on the first server and server2.example.tld on the second server. We want MySQL to listen on all interfaces, not just localhost, therefore we edit /etc/mysql/my.cnf and comment out the line bind-address = 127.0.0.1: vi /etc/mysql/my.cnf [...] # Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. #bind-address = 127.0.0.1 [...] Then restart MySQL: /etc/init.d/mysql restart Now we prepare the MySQL servers for mysql master/master replication. On server 1: Log into MySQL on the shell with... mysql -u root -p ... and enter the MySQL root passord that you had choosen during mysql install. Then execute this commnd on the MySQL shell: GRANT REPLICATION SLAVE ON *.* TO 'slaveuser'@'%' IDENTIFIED BY 'slave_user_password'; Replace 'slave_user_password' with a secure password that you want to use for the slave to connect to the master server. Replace this placeholder in the next steps with the password that you had choosen wherever the placeholder occurs. Now let's configure our 2 MySQL nodes: On server 1: vi /etc/mysql/my.cnf Search for the section that starts with [mysqld], and put the following options into it (commenting out all existing conflicting options): [...] [mysqld] server-id = 1 replicate-same-server-id = 0 auto-increment-increment = 2 auto-increment-offset = 1 master-host = 192.168.0.106 master-user = slaveuser master-password = slave_user_password master-connect-retry = 60 expire_logs_days = 10 max_binlog_size = 500M log_bin = /var/log/mysql/mysql-bin.log [...] Then stop MySQL: /etc/init.d/mysql stop Now do nearly the same on server2... On server 2: vi /etc/mysql/my.cnf Search for the section that starts with [mysqld], and put the following options into it (commenting out all existing conflicting options): [...] [mysqld] server-id = 2 replicate-same-server-id = 0 auto-increment-increment = 2 auto-increment-offset = 2 master-host = 192.168.0.105 master-user = slaveuser master-password = slave_user_password master-connect-retry = 60 expire_logs_days = 10 max_binlog_size = 500M log_bin = /var/log/mysql/mysql-bin.log [...] Then stop MySQL: /etc/init.d/mysql stop Now we have to sync the two mysql servers. We do this by copying over the mysql data directory from the master to the slave and also the debian configuration file that contains the debian-sys-maint user. This can be done as we stopped mysql before on both servers. On server 1: scp -pr /var/lib/mysql/* root@server2.example.tld:/var/lib/mysql/ Now we start MySQL on the master server again: /etc/init.d/mysql start Log into the MySQL shell as root user... mysql -u root -p ... and execute this command in the MySQL shell... SHOW MASTER STATUS; ... to get the MySQL master status: mysql> SHOW MASTER STATUS; The information that we need for the next step is the binlog file mysql-bin.000002 and the binlog position 106. We need the same details for server2 later below. Now execute this command in the MySQL shell on the master to connect it to the slave: STOP SLAVE; Then check the slave status: SHOW SLAVE STATUS \G It is important that both Slave_IO_Running and Slave_SQL_Running have the value Yes in the output. On server 2: Log into the MySQL shell as root user... mysql -u root -p ... and execute this command in the MySQL shell: STOP SLAVE; Then check the slave status: SHOW SLAVE STATUS \G It is important that both Slave_IO_Running and Slave_SQL_Running have the value Yes in the output The configuration of the mysql master/master replication is finished now and we proceed to install the other software packages.
|



Recent comments
5 hours 13 min ago
14 hours 40 min ago
15 hours 30 min ago
19 hours 3 min ago
23 hours 27 min ago
23 hours 49 min ago
1 day 1 hour ago
1 day 12 hours ago
1 day 16 hours ago
1 day 18 hours ago