This thread got so close to answering my question, but then it fell off!!!
I'm trying to get Zimbra Open Source running on a new installation of Ubuntu 8.04. Everything was going along great, until it began configuration and got an error.
I reviewed the log and this is what I found:
Code:
Sat Aug 22 09:16:46 2009 zimbra-ldap is enabled
Sat Aug 22 09:16:46 2009 Initializing ldap...
Sat Aug 22 09:16:46 2009 *** Running as zimbra user: /opt/zimbra/libexec/zmldapinit
IO::Socket::INET: Bad hostname 'mydomain.com' at /opt/zimbra/libexec/zmldapinit line 160.
Sat Aug 22 09:17:28 2009 failed. (5632)
Sat Aug 22 09:17:28 2009
ERROR
Sat Aug 22 09:17:28 2009
Configuration failed
I think (??) I followed the Ubuntu 8.04 LTS Server Install Guide to the "T", but I must have missed something. I've reviewed the guide and my system several times and can't find what I'm missing. ANY help would be greatly appreciated!
Here's what I've got:
HOSTS:
Code:
127.0.0.1 localhost.localdomain localhost
172.17.2.10 mail.mydomain.com mail
# 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
RESOLV.CONF:
Code:
search mydomain.com
nameserver 172.17.2.10
db.mydomain.com:
Code:
;
; BIND data file for mydomain.com
;
$TTL 604800
@ IN SOA mail.mydomain.com. admin.mydomain.com. {
090821 ; Serial
604800 ; Refresh
86400 ; Retry
2419200 ; Expire
604800 } ; Negative Cache TTL
;
@ IN NS mail
IN MX 10 mail
IN A 172.17.2.10
mail IN A 172.17.2.10
dig mydomain.com any
Code:
; <<>> DiG 9.4.2-P2 <<>> mydomain.com any
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: SERVFAIL, id: 3027
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;mydomain.com. IN ANY
;; Query time: 0 msec
;; SERVER: 172.17.2.10#53(172.17.2.10)
;; WHEN: Sat Aug 22 10:00:09 2009
;; MSG SIZE rcvd: 43
dig mydomain.mx
Code:
; <<>> DiG 9.4.2-P2 <<>> mydomain.mx
;; global options: printcmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 20908
;; flags: qr rd ra; QUERY: 1, ANSWER: 0, AUTHORITY: 1, ADDITIONAL: 0
;; QUESTION SECTION:
;mydomain.mx. IN A
;; AUTHORITY SECTION:
mx. 1800 IN SOA m.mx-ns.mx. hostmaster.nic.mx. 68 3600 900 604800 1800
;; Query time: 105 msec
;; SERVER: 172.17.2.10#53(172.17.2.10)
;; WHEN: Sat Aug 22 10:01:01 2009
;; MSG SIZE rcvd: 101
host `hostname`
Code:
Host mail not found: 3(NXDOMAIN)
Thanks in advance for any help you might offer!