On minimal install (tested on VMware Workstation 8):
make sure have at least 2506 MB of RAM
make sure dns had been setup to point to this server in mx record (sample provided at the end of this post)
stop and disable postfix at boot time
Code:
service postfix stop
chkconfig postfix off
run visudo and comment in
Defaults requiretty
install perl, systat, libstdc++.i686
Code:
yum install perl systat libstdc++.i686
install with --platform-override
Code:
cd extracted-installer's-folder
./install.sh --platform-override
when asked for domain, make sure to type in domain.tld (zimbra.com if you copied my dns configs sample below)
sample /etc/named.conf
Code:
zone "zimbra.com." IN {
type master;
file "/var/named/zimbra.com";
};
zone "234.16.172.in-addr.arpa." IN {
type master;
file "/var/named/172.16.234.rev";
}; sample /var/named/zimbra.com (forward zone)
Code:
$ORIGIN zimbra.com.
$TTL 1W
@ IN SOA zimbra.com. root.zimbra.com. (
01 ; serial
2D ; refresh
4H ; retry
6W ; expiry
1W ) ; minimum
IN A 172.16.234.128
IN NS ns01
IN MX 0 mail01.zimbra.com.
ns01 IN A 172.16.234.128
mail01 IN A 172.16.234.128 sample /var/named/172.16.234.rev (reverse zone)
Code:
$ORIGIN 234.16.172.in-addr.arpa.
$TTL 1W
@ IN SOA zimbra.com. root.zimbra.com. (
01 ; serial
2D ; refresh
4H ; retry
6W ; expiry
1W ) ; minimum
IN NS ns01.zimbra.com.
128 IN PTR ns01.zimbra.com.
128 IN PTR mail01.zimbra.com.