Vous êtes sur la page 1sur 16

[TUTORIEL] - Installation/Configuration Bind et Zimbra

Dbut par Ludo , mar 06 2009 10:53

Page 1 sur 5


SUIVANT

Ce sujet est ferm 81 rponses ce sujet #1Ludo Membre avanc


Membres 37 messages LocalisationBretagne

Post 06 mars 2009 - 10:53

Bonjour tous,

voici un tutoriel d'installation et de configuration de Bind 9 et Zimbra 5.0.13 sur un serveur Ubuntu 8.04.2 LTS. Il a t ralis par moi-mme (Ludo) avec l'aide de Klug.

Il vous permettra de raliser une installation fonctionnelle de Zimbra et de Bind, partir d'un serveur tout frachement install (cas de notre tutoriel). ---------------------------- DEBUT DU TUTORIEL ---------------------------Pr-requis: Pour un serveur d'valuation: - Intel/AMD 32-bit ou 64-bit CPU 1.5GHz. - 1 Go de RAM. - 5 Go despace disque libre. - Espace temporaire disponible (install et upgrade). - Espace disque additionnel pour le stockage des mails.

Pour un serveur de production: - Intel/AMD 32-bit CPU 2.0GHz minimum. Pour les larges dploiement (+ de 2000 utilisateurs) un systme dexploitation 64-bit est recommand. - 2 Go de RAM minimum (recommand 4Go). - 10 Go despace disque libre (SATA ou SCSI pour les performances et RAID/Mirroring pour la redondance). - Espace temporaire disponible (install et upgrade) - Espace disque additionnel pour le stockage des mails

Espace temporaire : Zimbra-store requiert 5Go pour /opt/zimbra, plus lespace additionnel pour le stockage des mails. Les autres modules requiert 100Mo. Gnral : - Aucun firewall. - SELinux dsactiv. - RAID-5 nest pas recommand pour des installation avec plus de 100 comptes. Environnement du Tutorial: SERVEUR : Logiciels : - Ubuntu Server 8.04.2 LTS - Bind 9 - Zimbra OSE 5.0.13

Configuration : - Nom machine : mta.reseau.loc - Domaine : reseau.loc - Adresse ip : 192.168.0.12 - Netmask : 255.255.255.0 - Passerelle : 192.168.0.1 - DNS1 Hbergeur : 217.27.40.241 - DNS2 Hbergeur : 217.27.40.240

Code Couleurs: Bleu: ce que vous devez taper Marron: ce qui est affich comme rsultat aprs une commande/rponse Rouge: instructions suivre (Attention, il ne faut pas les saisir dans les fichiers ou autres)

Memento VI ESC : Entrer / sortir d'un mode (Ajout / Insertion) ESC -> a : Ajouter du texte aprs le curseur (Mode Ajout). ESC -> i : Insrer du texte l'endroit du curseur (Mode Insertion). ESC -> o : Ajouter une ligne aprs la ligne sur laquelle vous vous trouvez. ESC -> w : sauvegarder le fichier. ESC -> wq : sauvegarder et quitter. ESC -> wq! : forcer la sauvegarde et quitter. ESC -> q : quitter sans sauvegarder.

INSTALLATION DE BIND9 root@mta:~# apt-get install bind9 Lecture des listes de paquets... Fait Construction de l'arbre des dpendances Lecture des informations d'tat... Fait Paquets suggrs : bind9-doc resolvconf Les NOUVEAUX paquets suivants seront installs : bind9 0 mis jour, 1 nouvellement installs, 0 enlever et 6 non mis jour. Il est ncessaire de prendre 268ko dans les archives. Aprs cette opration, 762ko d'espace disque supplmentaires seront utiliss. Rception de : 1 http://fr.archive.ubuntu.com hardy-updates/main bind9 1:9.4.2.dfsg.P22ubuntu0.1 [268kB] 268ko rceptionns en 1s (208ko/s) Slection du paquet bind9 prcdemment dslectionn. (Lecture de la base de donnes... 15336 fichiers et rpertoires dj installs.) Dpaquetage de bind9 ( partir de .../bind9_1%3a9.4.2.dfsg.P2-2ubuntu0.1_i386.deb) ... Paramtrage de bind9 (1:9.4.2.dfsg.P2-2ubuntu0.1) ... Adding group `bind' (GID 114) ... Done. Adding system user `bind' (UID 105) ... Adding new user `bind' (UID 105) with group `bind' ... Not creating home directory `/var/cache/bind'. wrote key file "/etc/bind/rndc.key" Reloading AppArmor profiles : done. * Starting domain name service... bind OK ]

CONFIGURATION DU /ETC/HOSTS root@mta:~# cd /etc root@mta:/etc# more hosts root@mta:/etc# vi hosts

AVANT MODIFICATION 127.0.0.1 localhost 127.0.1.1 mta # 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 APRES MODIFICATION 127.0.0.1 localhost #127.0.1.1 mta 192.168.0.12 mta.reseau.loc

mta

# 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

CONFIGURATION DU /ETC/RESOLV.CONF root@mta:/etc# more resolv.conf root@mta:/etc# vi resolv.conf

AVANT MODIFICATION nameserver 212.27.40.240 nameserver 212.27.40.241 APRES MODIFICATION search reseau.loc nameserver 127.0.0.1

CONFIGURATION DES FICHIERS DANS LE /ETC/BIND Ralisation dune sauvegarde des fichiers root@mta:/etc# cd bind root@mta:/etc/bind# mkdir save root@mta:/etc/bind# cp * save/

CONFIGURATION DU /ETC/BIND/NAMED.CONF CONFIGURATION AVANT include "/etc/bind/named.conf.options"; // prime the server with knowledge of the root servers zone "." { type hint; file "/etc/bind/db.root"; }; zone "localhost" { type master; file "/etc/bind/db.local"; }; zone "127.in-addr.arpa" { type master; file "/etc/bind/db.127"; };

zone "0.in-addr.arpa" { type master; file "/etc/bind/db.0"; }; zone "255.in-addr.arpa" { type master; file "/etc/bind/db.255"; }; include "/etc/bind/named.conf.local";

CONFIGURATION APRES include "/etc/bind/named.conf.options"; // prime the server with knowledge of the root servers zone "." { type hint; file "/etc/bind/db.root"; }; zone "localhost" { type master; file "/etc/bind/db.local"; }; zone "127.in-addr.arpa" { type master; file "/etc/bind/db.127"; }; zone "0.in-addr.arpa" { type master; file "/etc/bind/db.0"; }; zone "255.in-addr.arpa" { type master; file "/etc/bind/db.255"; }; include "/etc/bind/named.conf.local"; //ajout des liens vers le fichier de configuration du domaine reseau.loc zone "reseau.loc" { type master; file "/etc/bind/zones/reseau.loc.hosts"; }; //ajout des liens vers le fichier de configuration du reverse pour le LAN zone "0.168.192.in-addr.arpa" { type master; file "/etc/bind/zones/rev.192.168.0.in-addr.arpa"; };

CONFIGURATION DU FICHIER /ETC/BIND/NAMED.CONF.OPTIONS root@mta:/etc/bind# vi named.conf.options options { directory "/var/cache/bind"; query-source address * port 53; forwarders { //ajout des DNS de Free pour quils soient interrogs pour les domaines non internes reseau.loc 217.27.40.240; 217.27.40.241; }; auth-nxdomain no; # conform to RFC1035 listen-on-v6 { any; }; };

CREATION DU FICHIER DE ZONE root@mta:/etc/bind# mkdir zones root@mta:/etc/bind# cd zones root@mta:/etc/bind/zones# vi reseau.loc.hosts $ttl 86400 @ IN SOA

mta.reseau.loc. mail.reseau.loc. ( 2008061801 21600 3600 604800 86400 )

;ENREGISTREMENT "A" DNS <-> IP CLASSIQUES @ IN NS mail.reseau.loc. IN MX 10 mail.reseau.loc. IN A 192.168.0.12 mail IN A 192.168.0.12 mta IN A 192.168.0.12 ;ENREGISTREMENT MESSAGERIE reseau.loc. IN MX 10 mta

CREATION DU FICHIER DE REVERSE DNS root@mta:/etc/bind/zones# vi rev.192.168.0.in-addr.arpa @ IN SOA reseau.loc. admin.reseau.loc. ( 2006081401;

28800; 604800; 604800; 86400); IN NS mta.reseau.loc. IN PTR mta.reseau.loc.

12

REDEMARRAGE DE BIND root@mta:/etc/bind/zones# /etc/init.d/bind9 restart * Stopping domain name service... bind * Starting domain name service... bind root@mta:/etc/bind/zones#

[ OK ] [ OK ]

VERIFICATION VIA DIG & NSLOOKUP root@mta:/etc/bind/zones# dig mx reseau.loc ; <<>> DiG 9.4.2-P2 <<>> mx reseau.loc ;; global options: printcmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 53399 ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 2, AUTHORITY: 1, ADDITIONAL: 2 ;; QUESTION SECTION: ;reseau.loc. IN ;; ANSWER SECTION: reseau.loc. 86400 IN reseau.loc. 86400 IN ;; AUTHORITY SECTION: reseau.loc. 86400 IN ;; ADDITIONAL SECTION: mail.reseau.loc. 86400 IN mta.reseau.loc. 86400 IN

MX

MX MX

10 mail.reseau.loc. 10 mta.reseau.loc.

NS

mail.reseau.loc.

A A

192.168.0.12 192.168.0.12

;; Query time: 1 msec ;; SERVER: 192.168.0.12#53(192.168.0.12) ;; WHEN: Tue Mar 3 12:25:44 2009 ;; MSG SIZE rcvd: 115 root@mta:/etc/bind/zones# dig a mail.reseau.loc ; <<>> DiG 9.4.2-P2 <<>> a mail.reseau.loc ;; global options: printcmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 23440

;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 0 ;; QUESTION SECTION: ;mail.reseau.loc. IN ;; ANSWER SECTION: mail.reseau.loc. 86400 IN ;; AUTHORITY SECTION: reseau.loc. 86400 IN

192.168.0.12

NS

mail.reseau.loc.

;; Query time: 1 msec ;; SERVER: 192.168.0.12#53(192.168.0.12) ;; WHEN: Tue Mar 3 12:27:06 2009 ;; MSG SIZE rcvd: 63

root@mta:/etc/bind/zones# nslookup reseau.loc Server: 192.168.0.12 Address: 192.168.0.12#53 Name: reseau.loc Address: 192.168.0.12

INSTALLATION DE ZIMBRA Version de Zimbra : 5.0.13 OSE Taille de larchive : ~340 Mo Site de tlchargement : Zimbra Site Officiel - http://www.zimbra.co.../downloads.html Rcupration de Zimbra - Via le site officiel. - Avec la mthode wget : root@mta:~# wget http://h.yimg.com/lo...90206174622.tgz --12:32:35-- http://h.yimg.com/lo...90206174622.tgz => `zcs-5.0.13_GA_2791.UBUNTU8.20090206174622.tgz' Resolving h.yimg.com... 4.23.50.124, 207.123.34.126, 206.33.34.126 Connecting to h.yimg.com|4.23.50.124|:80... failed: Connection timed out. Connecting to h.yimg.com|207.123.34.126|:80... connected. HTTP request sent, awaiting response... 200 OK Length: 348 065 711 (332M) [binary/octet-stream] 100%[===================================================================== ================================ ================================>] 348 065 711 253.60K/s ETA 00:00 12:58:56 (245.09 KB/s) - `zcs-5.0.13_GA_2791.UBUNTU8.20090206174622.tgz' saved [348065711/348065711] Dcompression de larchive

root@mta:~# tar xzf zcs-5.0.13_GA_2791.UBUNTU8.20090206174622.tgz root@mta:~# mv zcs-5.0.13_GA_2791.UBUNTU8.20090206174622 zcs Prparation des librairies ncessaires Zimbra root@mta:/zcs# apt-get install libpcre3 libgmp3c2 libstdc++5 libltdl3 fetchmail curl sysstat Lecture des listes de paquets... Fait Construction de l'arbre des dpendances Lecture des informations d'tat... Fait Les paquets supplmentaires suivants seront installs : gcc-3.3-base Les NOUVEAUX paquets suivants seront installs : gcc-3.3-base libgmp3c2 libltdl3 libpcre3 libstdc++5 0 mis jour, 5 nouvellement installs, 0 enlever et 6 non mis jour. Il est ncessaire de prendre 1267ko dans les archives. Aprs cette opration, 2458ko d'espace disque supplmentaires seront utiliss. Souhaitez-vous continuer [O/n] ? O ici, rpondre O Rception de : 1 http://fr.archive.ubuntu.com hardy-updates/universe gcc-3.3-base 1:3.3.615ubuntu6 [151kB] Rception de : 2 http://fr.archive.ubuntu.com hardy/main libgmp3c2 2:4.2.2+dfsg-1ubuntu2 [436kB] Rception de : 3 http://fr.archive.ubuntu.com hardy/main libltdl3 1.5.26-1ubuntu1 [178kB] Rception de : 4 http://fr.archive.ubuntu.com hardy-updates/main libpcre3 7.4-1ubuntu2.1 [206kB] Rception de : 5 http://fr.archive.ubuntu.com hardy-updates/universe libstdc++5 1:3.3.615ubuntu6 [296kB] 1267ko rceptionns en 10s (123ko/s) Slection du paquet gcc-3.3-base prcdemment dslectionn. (Lecture de la base de donnes... 15377 fichiers et rpertoires dj installs.) Dpaquetage de gcc-3.3-base ( partir de .../gcc-3.3-base_1%3a3.3.6-15ubuntu6_i386.deb) ... Slection du paquet libgmp3c2 prcdemment dslectionn. Dpaquetage de libgmp3c2 ( partir de .../libgmp3c2_2%3a4.2.2+dfsg-1ubuntu2_i386.deb) ... Slection du paquet libltdl3 prcdemment dslectionn. Dpaquetage de libltdl3 ( partir de .../libltdl3_1.5.26-1ubuntu1_i386.deb) ... Slection du paquet libpcre3 prcdemment dslectionn. Dpaquetage de libpcre3 ( partir de .../libpcre3_7.4-1ubuntu2.1_i386.deb) ... Slection du paquet libstdc++5 prcdemment dslectionn. Dpaquetage de libstdc++5 ( partir de .../libstdc++5_1%3a3.3.6-15ubuntu6_i386.deb) ... Paramtrage de gcc-3.3-base (1:3.3.6-15ubuntu6) ... Paramtrage de libgmp3c2 (2:4.2.2+dfsg-1ubuntu2) ... Paramtrage de libltdl3 (1.5.26-1ubuntu1) ... Paramtrage de libpcre3 (7.4-1ubuntu2.1) ... Paramtrage de libstdc++5 (1:3.3.6-15ubuntu6) ... Processing triggers for libc6 ... ldconfig deferred processing now taking place

Dbut de linstallation root@mta:~# cd zcs root@mta:~/zcs# ./install.sh Operations logged to /tmp/install.log.4679 Checking for existing installation... zimbra-ldap...NOT FOUND zimbra-logger...NOT FOUND zimbra-mta...NOT FOUND zimbra-snmp...NOT FOUND zimbra-store...NOT FOUND zimbra-apache...NOT FOUND zimbra-spell...NOT FOUND zimbra-proxy...NOT FOUND zimbra-archiving...NOT FOUND zimbra-convertd...NOT FOUND zimbra-cluster...NOT FOUND zimbra-core...NOT FOUND PLEASE READ THIS AGREEMENT CAREFULLY BEFORE USING THE SOFTWARE. ZIMBRA, INC. ("ZIMBRA") WILL ONLY LICENSE THIS SOFTWARE TO YOU IF YOU FIRST ACCEPT THE TERMS OF THIS AGREEMENT. BY DOWNLOADING OR INSTALLING THE SOFTWARE, OR USING THE PRODUCT, YOU ARE CONSENTING TO BE BOUND BY THIS AGREEMENT. IF YOU DO NOT AGREE TO ALL OF THE TERMS OF THIS AGREEMENT, THEN DO NOT DOWNLOAD, INSTALL OR USE THE PRODUCT. License Terms for the Zimbra Collaboration Suite: http://www.zimbra.co...c_eula_2.1.html Press Return to continue ici, presser la touche ENTER

Checking for prerequisites... FOUND: NPTL FOUND: sudo-1.6.9p10-1ubuntu3.3 FOUND: libidn11-1.1-1 FOUND: libpcre3-7.4-1ubuntu2.1 FOUND: libgmp3c2-2:4.2.2+dfsg-1ubuntu2 FOUND: libexpat1-2.0.1-0ubuntu1 FOUND: libstdc++6-4.2.4-1ubuntu3 FOUND: libstdc++5-1:3.3.6-15ubuntu6 FOUND: libltdl3-1.5.26-1ubuntu1 Checking for suggested prerequisites... FOUND: perl-5.8.8 Prerequisite check complete. Checking for installable packages Found zimbra-core Found zimbra-ldap Found zimbra-logger Found zimbra-mta Found zimbra-snmp Found zimbra-store Found zimbra-apache Found zimbra-spell

Found zimbra-proxy

Select the packages to install Install zimbra-ldap [Y] ] Y Install zimbra-logger [Y] Y Install zimbra-mta [Y] Y Install zimbra-snmp [Y] Y Install zimbra-store [Y] Y Install zimbra-apache [Y] Y Install zimbra-spell [Y] Y Install zimbra-proxy [N] N ici nous mettons NON car nous nallons pas lutiliser. Checking required space for zimbra-core checking space for zimbra-store Installing: zimbra-core zimbra-ldap zimbra-logger zimbra-mta zimbra-snmp zimbra-store zimbra-apache zimbra-spell The system will be modified. Continue? [N] Removing /opt/zimbra Removing zimbra crontab entry...done. done. Cleaning up zimbra init scripts...done. Cleaning up /etc/ld.so.conf...done. Cleaning up /etc/security/limits.conf...done. Finished removing Zimbra Collaboration Suite. Installing packages zimbra-core......zimbra-core_5.0.13_GA_2791.UBUNTU8_i386.deb...done zimbra-ldap......zimbra-ldap_5.0.13_GA_2791.UBUNTU8_i386.deb...done zimbra-logger......zimbra-logger_5.0.13_GA_2791.UBUNTU8_i386.deb...done zimbra-mta......zimbra-mta_5.0.13_GA_2791.UBUNTU8_i386.deb...done zimbra-snmp......zimbra-snmp_5.0.13_GA_2791.UBUNTU8_i386.deb...done zimbra-store......zimbra-store_5.0.13_GA_2791.UBUNTU8_i386.deb...done zimbra-apache......zimbra-apache_5.0.13_GA_2791.UBUNTU8_i386.deb...done zimbra-spell......zimbra-spell_5.0.13_GA_2791.UBUNTU8_i386.deb...done Operations logged to /tmp/zmsetup.03032009-143512.log Setting defaults... DNS ERROR resolving MX for mta.reseau.loc It is suggested that the domain name have an MX record configured in DNS Change domain name? [Yes] Yes ici, rpondre YES Create Domain: [mta.reseau.loc] reseau.loc ici, entrer le nom du domaine MX: mta.reseau.loc (192.168.0.12) MX: mail.reseau.loc (192.168.0.12) Y

Interface: 192.168.0.12 Interface: 127.0.0.1 done. Checking for port conflicts Main menu 1) Common Configuration: 2) zimbra-ldap: Enabled 3) zimbra-store: Enabled +Create Admin User: yes +Admin user to create: admin@reseau.loc ******* +Admin Password UNSET +Enable automated spam training: yes +Spam training user: spam.8mdrl4hudb@reseau.loc +Non-spam(Ham) training user: ham.vp9zcdek5k@reseau.loc +Global Documents Account: wiki@reseau.loc +SMTP host: mta.reseau.loc +Web server HTTP port: 80 +Web server HTTPS port: 443 +Web server mode: http +IMAP server port: 143 +IMAP server SSL port: 993 +POP server port: 110 +POP server SSL port: 995 +Use spell check server: yes +Spell server URL: http://mta.reseau.loc:7780/aspell.php +Configure store for use with reverse mail proxy: FALSE +Configure store for use with reverse web proxy: FALSE 4) zimbra-mta: Enabled 5) zimbra-snmp: Enabled 6) zimbra-logger: Enabled 7) zimbra-spell: Enabled 8) Default Class of Service Configuration: r) Start servers after configuration yes s) Save config to file x) Expand menu q) Quit Address unconfigured (**) items (? - help) 3 ici, entrer le chiffre correspondant au menu zimbra-store

Store configuration 1) Status: Enabled 2) Create Admin User: yes 3) Admin user to create: admin@reseau.loc ** 4) Admin Password UNSET 5) Enable automated spam training: yes 6) Spam training user: spam.8mdrl4hudb@reseau.loc 7) Non-spam(Ham) training user: ham.vp9zcdek5k@reseau.loc 8) Global Documents Account: wiki@reseau.loc 9) SMTP host: mta.reseau.loc 10) Web server HTTP port: 80 11) Web server HTTPS port: 443

12) Web server mode: http 13) IMAP server port: 143 14) IMAP server SSL port: 993 15) POP server port: 110 16) POP server SSL port: 995 17) Use spell check server: yes 18) Spell server URL: http://mta.reseau.loc:7780/aspell.php 19) Configure store for use with reverse mail proxy: FALSE 20) Configure store for use with reverse web proxy: FALSE Select, or 'r' for previous menu [r] 4 ici, entrer le chiffre correspondant la configuration de ladmin password Password for admin@reseau.loc (min 6 characters): [qLjNJZQV2Z] taper un mot de passe Store configuration 1) Status: Enabled 2) Create Admin User: yes 3) Admin user to create: admin@reseau.loc 4) Admin Password set 5) Enable automated spam training: yes 6) Spam training user: spam.8mdrl4hudb@reseau.loc 7) Non-spam(Ham) training user: ham.vp9zcdek5k@reseau.loc 8) Global Documents Account: wiki@reseau.loc 9) SMTP host: mta.reseau.loc 10) Web server HTTP port: 80 11) Web server HTTPS port: 443 12) Web server mode: http 13) IMAP server port: 143 14) IMAP server SSL port: 993 15) POP server port: 110 16) POP server SSL port: 995 17) Use spell check server: yes 18) Spell server URL: http://mta.reseau.loc:7780/aspell.php 19) Configure store for use with reverse mail proxy: FALSE 20) Configure store for use with reverse web proxy: FALSE Select, or 'r' for previous menu [r] r Main menu 1) Common Configuration: 2) zimbra-ldap: Enabled 3) zimbra-store: Enabled 4) zimbra-mta: Enabled 5) zimbra-snmp: Enabled 6) zimbra-logger: Enabled 7) zimbra-spell: Enabled 8) Default Class of Service Configuration: r) Start servers after configuration yes s) Save config to file x) Expand menu q) Quit *** CONFIGURATION COMPLETE - press 'a' to apply Select from menu, or press 'a' to apply config (? - help) a ici, presser a pour appliquer les

modifications Save configuration data to a file? [Yes] Yes ici, entrer Yes pour enregistrer la configuration dans un fichier Save config in file: [/opt/zimbra/config.8514] Saving config in /opt/zimbra/config.8514...done. The system will be modified - continue? [No] Yes ici, entrer Yes pour appliquer la configuration au system Operations logged to /tmp/zmsetup.03032009-143512.log Setting local config values... Setting up CA...done. Deploying CA to /opt/zimbra/conf/ca ...done. Creating SSL certificate...done. Installing mailboxd SSL certificates...done. Initializing ldap...done. Setting replication password...done. Setting Postfix password...done. Setting amavis password...done. Setting nginx password...done. Saving CA in ldap ...done. Creating server entry for mta.reseau.loc...done. Saving SSL Certificate in ldap ...done. Setting spell check URL...done. Setting service ports on mta.reseau.loc...done. Adding mta.reseau.loc to zimbraMailHostPool in default COS...done. Installing skins... beach bones waves sky bare lavender zmail hotrod yahoo steel lemongrass sand done. Setting zimbraFeatureIMEnabled=FALSE...done. Setting zimbraFeatureTasksEnabled=TRUE...done. Setting zimbraFeatureBriefcasesEnabled=TRUE...done. Setting zimbraFeatureNotebookEnabled=TRUE...done. Setting MTA auth host...done. Setting TimeZone Preference...done. Creating domain reseau.loc...done. Creating user admin@reseau.loc...done. Creating postmaster alias...done. Creating user wiki@reseau.loc...done. Creating user spam.8mdrl4hudb@reseau.loc...done. Creating user ham.vp9zcdek5k@reseau.loc...done. Setting spam training accounts...done. Initializing store sql database...done. Setting zimbraSmtpHostname for mta.reseau.loc...done. Initializing logger sql database...done. Initializing mta config...done. Configuring SNMP...done. Setting services on mta.reseau.loc...done.

Setting up syslog.conf...done. You have the option of notifying Zimbra of your installation. This helps us to track the uptake of the Zimbra Collaboration Suite. The only information that will be transmitted is: The VERSION of zcs installed (5.0.13_GA_2791_UBUNTU8) The ADMIN EMAIL ADDRESS created (admin@reseau.loc) Notify Zimbra of your installation? [Yes] Yes ici, entrer Yes pour informer ou No Notifying Zimbra of installation via ttp://www.zimbra.com/cgibin/notify.cgi?VER=5.0.13_GA_2791_UBUNTU8&MAIL=admin@reseau .loc Notification complete Starting servers... done. Checking for deprecated zimlets...done. Installing common zimlets... com_zimbra_ymemoticons...done. com_zimbra_email...done. com_zimbra_phone...done. com_zimbra_bulkprovision...done. com_zimbra_cert_manager...done. com_zimbra_date...done. com_zimbra_local...done. com_zimbra_url...done. Finished installing common zimlets. Initializing Documents...done. Restarting mailboxd...done. Setting up zimbra crontab...done.

Moving /tmp/zmsetup.03032009-143512.log to /opt/zimbra/log

Configuration complete - press return to exit ici, presser la touche ENTER

Accs linterface dadministration Ouvrir un navigateur Dans la barre dadresse taper : https://192.168.0.12:7071 Accepter le certificat ou ajouter une exception si ncessaire. Utilisateur : admin@reseau.loc Mot de passe : Entrer le mot de passe saisi lors de l'installation

Accs linterface dadministration Ouvrir un navigateur Dans la barre dadresse taper : http://192.168.0.12

Utilisateur : Entrer l'email d'un utilisateur Mot de passe : Entrer le mot de passe de l'utilisateur

Ressources utiles : Site officiel de Zimbra - http://www.zimbra.co...z/index.fr.html Forum de la communaut Zimbra Francophone - http://www.zimbrafr.org/forum/ Documentation Zimbra - http://www.zimbra.co...umentation.html Guide dadministration de Zimbra - http://files.zimbra....Admin Guide.pdf

------------------------ FIN DU TUTORIEL ------------------------

------------------------------------------------------------------------------- Tlcharger le tutorial au format PDF : Tutoriel d'installation -------------------------------------------------------------------------------

Des modifications peuvent tre apportes/ajoutes, je suis ouvert toutes propositions.

Vous aimerez peut-être aussi