Hi,
I'm trying to get Zimbra to install on Ubuntu 8.04, all the packages install fine however it runs into the problem of not being able to resolve my hostname. I am running BIND9 and I own the domain listed below - I have put in an MX record for pointing to the server.
this is what the install.sh script says
Quote:
|
Originally Posted by install.sh DNS ERROR resolving jonathanip.com.au
It is suggested that the hostname be resolveable via DNS
Re-Enter hostname [Yes] yes
Please enter the logical hostname for this host [ms1.jonathanip.com.au]
No results returned for A lookup of ms1.jonathanip.com.au
Checked nameservers:
192.168.0.100 |
Running a dig request results in:
Quote:
|
Originally Posted by dig root@ms1:/etc/bind/zones# dig ms1.jonathanip.com.au
; <<>> DiG 9.4.2-P2 <<>> ms1.jonathanip.com.au
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 64698
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;ms1.jonathanip.com.au. IN A
;; Query time: 0 msec
;; SERVER: 192.168.0.100#53(192.168.0.100)
;; WHEN: Sun Jan 18 18:07:26 2009
;; MSG SIZE rcvd: 39
root@ms1:/etc/bind/zones# dig ms1.jonathanip.com.au -t MX
; <<>> DiG 9.4.2-P2 <<>> ms1.jonathanip.com.au -t MX
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 28105
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;ms1.jonathanip.com.au. IN MX
;; Query time: 0 msec
;; SERVER: 192.168.0.100#53(192.168.0.100)
;; WHEN: Sun Jan 18 18:07:30 2009
;; MSG SIZE rcvd: 39 |
this is my BIND configuration
Quote:
|
Originally Posted by /etc/bind/named.conf.local
zone "jonathanip.com.au" {
type master;
file "/etc/bind/zones/jonathanip.com.au.db";
};
zone "3.13.10.in-addr.arpa" {
type master;
file "/etc/bind/zones/rev.0.168.192.in-addr.arpa";
}; |
Quote:
|
Originally Posted by /etc/bind/zones/jonathanip.com.au.db $TTL 1500
@ IN SOA ms1.jonathanip.com.au. root (
2007062703 ;serial
28800 ;refresh
3600 ;retry
604800 ;expire
38400 ) ;minimum 25 minutes
jonathanip.com.au. IN NS ms1.jonathanip.com.au.
ms1.jonathanip.com.au. IN A 192.168.0.100
ms1.jonathanip.com.au. IN MX 0 ms1.jonathanip.com.au.
jonathanip.com.au. IN MX 0 ms1.jonathanip.com.au. |
Quote:
|
Originally Posted by /etc/bind/zones/rev.3.13.10.in-addr.arpa $TTL 1500
@ IN SOA ms1.jonathanip.com.au. root (
2007062703 ;serial
28800 ;refresh
3600 ;retry
604800 ;expire
38400 ) ;minimum 25 minutes
IN NS ms1.jonathanip.com.au.
100 IN PTR ms1.jonathanip.com.au. |
Quote:
|
Originally Posted by /etc/resolv.conf search jonathanip.com.au
nameserver 192.168.0.100 |
the server is referring to itself for DNS and this works fine, however I just cannot get Zimbra to find the MX and A records during install. I have already looked at the wiki and forums to no avail. What am I doing wrong?