Zimbra offers Open Source email server software and shared calendar for Linux and the Mac
Go Back   Zimbra :: Forums > Zimbra Collaboration Suite > Installation

Welcome to the Zimbra :: Forums!
Welcome, if you would like to post a comment please register. We also encourage you to explore all things Zimbra with our team and members of the community.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #11 (permalink)  
Old 10-27-2009, 06:29 AM
Intermediate Member
 
Posts: 17
Default

it still giving me this error

Code:
Installing packages

    zimbra-core......zimbra-core_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-ldap......zimbra-ldap_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-logger......zimbra-logger_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-mta......zimbra-mta_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-snmp......zimbra-snmp_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-store......zimbra-store_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-apache......zimbra-apache_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-spell......zimbra-spell_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
Operations logged to /tmp/zmsetup.10272009-102911.log
Setting defaults...

DNS ERROR resolving MX for correo.example.cl
It is suggested that the domain name have an MX record configured in DNS
Change domain name? [Yes]
Reply With Quote
  #12 (permalink)  
Old 10-27-2009, 06:36 AM
Loyal Member
 
Posts: 85
Default

Quote:
Originally Posted by padial View Post
it still giving me this error

Code:
Installing packages

    zimbra-core......zimbra-core_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-ldap......zimbra-ldap_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-logger......zimbra-logger_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-mta......zimbra-mta_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-snmp......zimbra-snmp_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-store......zimbra-store_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-apache......zimbra-apache_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
    zimbra-spell......zimbra-spell_5.0.13_GA_2791.DEBIAN4.0_i386.deb...done
Operations logged to /tmp/zmsetup.10272009-102911.log
Setting defaults...

DNS ERROR resolving MX for correo.example.cl
It is suggested that the domain name have an MX record configured in DNS
Change domain name? [Yes]
This is a litle problem, Zimbra looking for mx record for correo.example.cl, acctualy correo.example.cl doesn't have any mx record, your valid domain and have mx record is a example.cl

Just answered Yes and create domain [example.cl]

CMIIW
__________________
Just logs
blog.pnyet.web.id
Reply With Quote
  #13 (permalink)  
Old 10-27-2009, 07:36 AM
Intermediate Member
 
Posts: 17
Default

the server only have the public ip 200.42.X.Y configurated on
/etc/network/interfaces
IT'S NOT BEHIND A ROUTER/NAT, it's directly conected to my isp provider's router.
this is my complete conf

/etc/hostname
Code:
correo
/etc/hosts
Code:
127.0.0.1       localhost.localdomain localhost
200.42.X.Y   correo.example.cl correo
# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
/etc/resolv.conf
Code:
nameserver ISP DNS1
nameserver ISP DNS2
named.conf.local
Code:
//
// Do any local configuration here
//
// Consider adding the 1918 zones here, if they are not used in your
// organization
//include "/etc/bind/zones.rfc1918";
zone "example.cl" {
        type master;
        file "/etc/bind/db.example.cl";
        allow-query { any; };
};
named.conf.options
Code:
options {
        directory "/var/cache/bind";
        // 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 {
                ISP DNS1;
                ISP DNS2;
        };
        auth-nxdomain no;    # conform to RFC1035
        listen-on-v6 { any; };
};
/etc/bind/db.example.cl
Code:
;
; archivo BIND para zona example.cl
;
$TTL    604800
@       IN      SOA    ns1.example.cl. hostmaster.example.cl. (
                1       ; Serial
                          86400         ; Refresh
                           7200         ; Retry
                        1209600         ; Expire
                          10800 )       ; Negative Cache TTL


example.cl.           IN      NS     ns1.example.cl.
example.cl.           IN      MX     0 correo.example.cl.
localhost           IN      A      127.0.0.1
example.cl.           IN      A      200.42.X.Y
www                 IN      A      200.42.X.Y
ns1                 IN      A      200.42.X.Y
correo              IN      A      200.42.X.Y

THANKS AGAIN
Reply With Quote
  #14 (permalink)  
Old 10-27-2009, 10:36 AM
Moderator
 
Posts: 1,147
Default

Your /etc/resolv.conf should be listing 127.0.0.1 or the public IP address of the server, not your ISP's DNS servers. Listing the ISP DNS servers makes the server bypass it's local DNS server entirely.

Your example.cl. domain file still lists localhost.example.cl. As I said before this is totally bogus data and should be removed.

Now that we can see what domain the setup is trying to lookup for p_nyet is perfectly correct, you need to hit enter (yes) on that prompt and change the domain name it is looking up to be example.cl rather then corrreo.example.cl.


All of your current issues have already been addressed in this thread...
Reply With Quote
  #15 (permalink)  
Old 10-27-2009, 11:11 AM
Intermediate Member
 
Posts: 17
Default

i'm gonna try with the configuration you told me.
If nslookup don't resolve the ip for the domain, trying to install zcs it's a waste of time???
Reply With Quote
  #16 (permalink)  
Old 10-27-2009, 11:43 AM
Intermediate Member
 
Posts: 17
Default

After many tries it finally worked.....
my problem was that i make many mistakes in the bind9 conf........ thanks so much to all who helped me to solve this......
i think this post could help more people like me. I didn't know that the answers were so fast in the zimbra forum, probably you (as a starter zimbra user) will see another posts from me.

Thank again, sorry for my tarzan-style english, but i'm english it's no my mother language and in south america don't teach us english really good.

greetings from viña del mar, chile
Reply With Quote
  #17 (permalink)  
Old 10-27-2009, 06:45 PM
Loyal Member
 
Posts: 85
Default

Quote:
Originally Posted by padial View Post
After many tries it finally worked.....
my problem was that i make many mistakes in the bind9 conf........ thanks so much to all who helped me to solve this......
i think this post could help more people like me. I didn't know that the answers were so fast in the zimbra forum, probably you (as a starter zimbra user) will see another posts from me.

Thank again, sorry for my tarzan-style english, but i'm english it's no my mother language and in south america don't teach us english really good.

greetings from viña del mar, chile
Hello Padial,

Congratulations....
My english is a trazan style to...
__________________
Just logs
blog.pnyet.web.id
Reply With Quote
  #18 (permalink)  
Old 11-18-2009, 12:54 PM
Intermediate Member
 
Posts: 17
Default

how should i do this same for a server behind a router/firewall?.
My zimbra server is going to be the only one in the dmz network
Reply With Quote
  #19 (permalink)  
Old 11-18-2009, 01:07 PM
Zimbra Consultant & Moderator
 
Posts: 20,317
Default

Quote:
Originally Posted by padial View Post
how should i do this same for a server behind a router/firewall?.
Use a Split DNS set-up.
Quote:
Originally Posted by padial View Post
My zimbra server is going to be the only one in the dmz network
What does that mean in relation to the other part of your question? I thought you'd fixed the DNS according to your earlier post, have you? What exactly are you trying to do?
__________________
Regards


Bill
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads

Why Join?

Registering let's you ask questions, makes it easier to search, displays any files attached to posts, and notifies you about replies.

blog.zimbra.com




 

SEO by vBSEO ©2011, Crawlability, Inc.