Ecco step by step le istruzioni per un'installazione di base di Zimbra, software di collaborazione che ho appena iniziato a testare in azienda e che consente di gestire in modo centralizzato posta, agenda, rubrica, documenti e messaggistica.
Installazione di base ZIMBRA
Download del software
http://www.zimbra.com/products/downloads.html
Configurazione /etc/hosts
[root@mail etc]# more /etc/hosts
# Do not remove the following line, or various programs
# that require network functionality will fail.
127.0.0.1 localhost.localdomain localhost
xxx.xxx.xxx.yyy mail.pippo.com mail
Configurazione hostname
echo mail.pippo.com > /etc/hostname
vim /etc/sysconfig/network
NETWORKING=yes
NETWORKING_IPV6=no
HOSTNAME=mail.pippo.com
GATEWAY=xxx.xxx.xxx.yyy
Installazione e configurazione bind
rpm -ivh bind-9.3.4-6.P1.el5.i386.rpm bind-chroot-9.3.4-6.P1.el5.i386.rpm bind-libs-9.3.4-6.P1.el5.i386.rpm bind-utils-9.3.4-6.P1.el5.i386.rpm
vim /var/named/chroot/etc/named.conf
options {
directory "/var/named";
dump-file "/var/named/data/cache_dump.db";
statistics-file "/var/named/data/named_stats.txt";
forwarders { ip_of_public_dns ; };
};
include "/etc/rndc.key";
// We are the master server for mail.pippo.com
zone "mail.pippo.com" {
type master;
file "db.mail.pippo.com";
};
vim /var/named/chroot/var/named/db.mail.pippo.com
;
; Addresses and other host information.
;
@ IN SOA mail.pippo.com. hostmaster.mail.pippo.com. (
10118 ; Serial
43200 ; Refresh
3600 ; Retry
3600000 ; Expire
2592000 ) ; Minimum
; Define the nameservers and the mail servers
IN NS xxx.xxx.xxx.yyy
IN A xxx.xxx.xxx.yyy
IN MX 10 mail.pippo.com.
Start named
/etc/init.d/named start
Abilitazione named allo start automatico
chkconfig named on
Test named
nslookup mail.pippo.com
Server: 127.0.0.1
Address: 127.0.0.1#53
Name: mail.pippo.com
Address:xxx.xxx.xxx.yyy
Configurazione /etc/resolv.conf
[root@mail etc]# more /etc/resolv.conf
search pippo.com
nameserver localhost
Configurazione /etc/host.conf
[root@mail etc]# more /etc/host.conf
order bind,hosts
Installazione Zimbra
./install.sh
Commenti recenti