Yes, I've done everything. When I got to the step in the ZCS installation where it asks me the FQDN, I typed in mail2.pdadmin.com and then it said would you like to create it, after saying yes, I type pdadmin.com and it said there was no MX record found. These are my configurations:
Code:
root@zimbra:~# cat /etc/bind/named.conf.options
options {
directory "/var/cache/bind";
// from bind 9:
// [fetch-glue] is obsolete. In BIND 8, fetch-glue yes caused the
// server to attempt to fetch glue resource records it didn't have
// when constructing the additional data section of a response.
// This is now considered a bad idea and BIND 9 never does it.
fetch-glue no;
// If there is a firewall between you and nameservers you want
// to talk to, you might need to uncomment the query-source
// directive below. Previous versions of BIND always asked
// questions using port 53, but BIND 8.1 and later use an unprivileged
// port by default.
query-source address * port 53;
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
forwarders {
192.168.1.1;
};
auth-nxdomain no; # conform to RFC1035
};
root@zimbra:~# cat /etc/resolv.conf
search pdadmin.com
nameserver 192.168.1.4
nameserver 192.168.1.2
nameserver 192.168.1.1
nameserver 216.249.3.126
root@zimbra:~# cat /etc/bind/named.conf.local
//
// Add local zone definitions here.
zome "pdadmin.com" {
type master;
file "/etc/bind/db.pdadmin.com";
};
root@zimbra:~# cat /etc/bind/db.pdadmin.com
;
; BIND data file for pdadmin.com
;
$TTL 604800
@ IN SOA pdadmin.com. admin.pdadmin.com. (
070616 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 ) ; Negative Cache TTL
;
@ IN NS mail
IN MX 10 mail
IN A 192.168.1.2
mail IN A 192.168.1.2
root@zimbra:~# cat /etc/hosts
127.0.0.1 localhost.localdomain localhost
192.168.1.2 zimbra.pdadmin.com zimbra
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
root@zimbra:~# host `hostname`
Host zimbra not found: 2(SERVFAIL)
root@zimbra:~# dig pdadmin.com mx
; <<>> DiG 9.3.2-P2.1 <<>> pdadmin.com mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 7499
;; flags: qr rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 4, ADDITIONAL: 5
;; QUESTION SECTION:
;pdadmin.com. IN MX
;; ANSWER SECTION:
pdadmin.com. 3600 IN MX 2 mail2.pdadmin.com.
pdadmin.com. 3600 IN MX 1 mail.pdadmin.com.
;; AUTHORITY SECTION:
pdadmin.com. 85341 IN NS ns3.everydns.net.
pdadmin.com. 85341 IN NS ns4.everydns.net.
pdadmin.com. 85341 IN NS ns1.everydns.net.
pdadmin.com. 85341 IN NS ns2.everydns.net.
;; ADDITIONAL SECTION:
mail.pdadmin.com. 3600 IN A 216.249.3.98
mail2.pdadmin.com. 1800 IN A 216.249.3.126
ns1.everydns.net. 1919 IN A 208.76.56.56
ns3.everydns.net. 106514 IN A 208.96.6.134
ns4.everydns.net. 2607 IN A 64.158.219.3
;; Query time: 88 msec
;; SERVER: 192.168.1.4#53(192.168.1.4)
;; WHEN: Thu Jul 17 08:56:20 2008
;; MSG SIZE rcvd: 236
root@zimbra:~# dig pdadmin.com any
; <<>> DiG 9.3.2-P2.1 <<>> pdadmin.com any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 2393
;; flags: qr rd ra; QUERY: 1, ANSWER: 7, AUTHORITY: 4, ADDITIONAL: 5
;; QUESTION SECTION:
;pdadmin.com. IN ANY
;; ANSWER SECTION:
pdadmin.com. 3596 IN MX 1 mail.pdadmin.com.
pdadmin.com. 3596 IN MX 2 mail2.pdadmin.com.
pdadmin.com. 2537 IN A 209.250.128.16
pdadmin.com. 85337 IN NS ns4.everydns.net.
pdadmin.com. 85337 IN NS ns1.everydns.net.
pdadmin.com. 85337 IN NS ns2.everydns.net.
pdadmin.com. 85337 IN NS ns3.everydns.net.
;; AUTHORITY SECTION:
pdadmin.com. 85337 IN NS ns1.everydns.net.
pdadmin.com. 85337 IN NS ns2.everydns.net.
pdadmin.com. 85337 IN NS ns3.everydns.net.
pdadmin.com. 85337 IN NS ns4.everydns.net.
;; ADDITIONAL SECTION:
mail.pdadmin.com. 3596 IN A 216.249.3.98
mail2.pdadmin.com. 1796 IN A 216.249.3.126
ns1.everydns.net. 1915 IN A 208.76.56.56
ns3.everydns.net. 106510 IN A 208.96.6.134
ns4.everydns.net. 2603 IN A 64.158.219.3
;; Query time: 7 msec
;; SERVER: 192.168.1.4#53(192.168.1.4)
;; WHEN: Thu Jul 17 08:56:24 2008
;; MSG SIZE rcvd: 308
root@zimbra:~# During the installation, I'm not quite sure what to do here, or what the conflict is:
Code:
zimbra-core......zimbra-core_5.0.7_GA_2444.UBUNTU6_i386.deb...done
zimbra-ldap......zimbra-ldap_5.0.7_GA_2444.UBUNTU6_i386.deb...done
zimbra-logger......zimbra-logger_5.0.7_GA_2444.UBUNTU6_i386.deb...done
zimbra-mta......zimbra-mta_5.0.7_GA_2444.UBUNTU6_i386.deb...done
zimbra-snmp......zimbra-snmp_5.0.7_GA_2444.UBUNTU6_i386.deb...done
zimbra-store......zimbra-store_5.0.7_GA_2444.UBUNTU6_i386.deb...done
zimbra-apache......zimbra-apache_5.0.7_GA_2444.UBUNTU6_i386.deb...done
zimbra-spell......zimbra-spell_5.0.7_GA_2444.UBUNTU6_i386.deb...done
Operations logged to /tmp/zmsetup.01001900-0000139163496.log
Setting defaults...No results returned for A lookup of zimbra.pdadmin.com
Checked nameservers:
192.168.1.4
192.168.1.2
192.168.1.1
216.249.3.126
DNS ERROR resolving zimbra.pdadmin.com
It is suggested that the hostname be resolveable via DNS
Change hostname [Yes] yes
Please enter the logical hostname for this host [zimbra.pdadmin.com] pdadmin.com
MX: mail.pdadmin.com (192.168.1.27)
MX: mail2.pdadmin.com (216.249.3.126)
Interface: 192.168.1.2
Interface: 127.0.0.1
192.168.1.27
192.168.1.27
216.249.3.126
216.249.3.126
DNS ERROR - none of the MX records for pdadmin.com
resolve to this host
Change domain name? [Yes] yes
Create Domain: [pdadmin.com] mail2.pdadmin.com
Interface: 192.168.1.2
Interface: 127.0.0.1
DNS ERROR - none of the MX records for mail2.pdadmin.com
resolve to this host
It is suggested that the MX record resolve to this host
Re-Enter domain name? [Yes] yes
Create Domain: [pdadmin.com] pdadmin.com
MX: mail2.pdadmin.com (216.249.3.126)
MX: mail.pdadmin.com (192.168.1.27)
Interface: 192.168.1.2
Interface: 127.0.0.1
DNS ERROR - none of the MX records for pdadmin.com
resolve to this host
It is suggested that the MX record resolve to this host
Re-Enter domain name? [Yes] This is the way our DNS is setup: