20090303 - Installation Bind et Zimbra - CORRIGE

Transcription

20090303 - Installation Bind et Zimbra - CORRIGE
Mars 2009
TUTORIAL
CONFIGURATION DE BIND ET INSTALLATION DE ZIMBRA
Pré-requis :
Serveur
Pour évaluation :
- Intel/AMD 32-bit ou 64-bit CPU 1.5GHz.
- 1 Go de RAM.
- 5 Go d’espace disque libre.
- Espace temporaire disponible (install et upgrade).
- Espace disque additionnel pour le stockage des mails.
Espace temporaire :
Zimbra-store requiert 5Go pour
/opt/zimbra, plus l’espace additionnel
pour le stockage des mails.
Les autres modules requiert 100Mo.
Général :
- Aucun firewall.
- SELinux désactivé.
- RAID-5 n’est pas recommandé pour des
installation avec plus de 100 comptes.
Pour production :
- Intel/AMD 32-bit CPU 2.0GHz minimum.
Pour les larges déploiement (+ de 2000 utilisateurs) un système
d’exploitation 64-bit est recommandé.
- 2 Go de RAM minimum (recommandé 4Go).
- 10 Go d’espace 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
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 Hébergeur : 217.27.40.241
- DNS2 Hébergeur : 217.27.40.240
Code Couleurs :
Bleu :
ce que vous devez taper
Marron : ce qui est affiché comme résultat après une commande/réponse
Rouge : instructions à suivre (Attention, il ne faut pas saisir dans les fichiers ou autres)
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 1 sur 13
Mars 2009
INSTALLATION DE BIND9
root@mta:~# apt-get install bind9
Lecture des listes de paquets... Fait
Construction de l'arbre des dépendances
Lecture des informations d'état... Fait
Paquets suggérés :
bind9-doc resolvconf
Les NOUVEAUX paquets suivants seront installés :
bind9
0 mis à jour, 1 nouvellement installés, 0 à enlever et 6 non mis à jour.
Il est nécessaire de prendre 268ko dans les archives.
Après cette opération, 762ko d'espace disque supplémentaires seront utilisés.
Réception de : 1 http://fr.archive.ubuntu.com hardy-updates/main bind9 1:9.4.2.dfsg.P2-2ubuntu0.1 [268kB]
268ko réceptionnés en 1s (208ko/s)
Sélection du paquet bind9 précédemment désélectionné.
(Lecture de la base de données... 15336 fichiers et répertoires déjà installés.)
Dépaquetage de bind9 (à partir de .../bind9_1%3a9.4.2.dfsg.P2-2ubuntu0.1_i386.deb) ...
Paramétrage 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
127.0.0.1
127.0.1.1
AVANT MODIFICATION
localhost
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
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 2 sur 13
Mars 2009
CONFIGURATION DES FICHIERS DANS LE /ETC/BIND
Réalisation d’une 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
CONFIGURATION APRES
include "/etc/bind/named.conf.options";
include "/etc/bind/named.conf.options";
// prime the server with knowledge of the root servers
zone "." {
type hint;
file "/etc/bind/db.root";
};
// 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 "localhost" {
type master;
file "/etc/bind/db.local";
};
zone "127.in-addr.arpa" {
type master;
file "/etc/bind/db.127";
};
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 "0.in-addr.arpa" {
type master;
file "/etc/bind/db.0";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
zone "255.in-addr.arpa" {
type master;
file "/etc/bind/db.255";
};
include "/etc/bind/named.conf.local";
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 qu’ils soient interrogé 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; };
};
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 3 sur 13
Mars 2009
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);
12
IN NS mta.reseau.loc.
IN PTR mta.reseau.loc.
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#
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
[ OK ]
[ OK ]
Page 4 sur 13
Mars 2009
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
MX
;; ANSWER SECTION:
reseau.loc.
86400 IN
reseau.loc.
86400 IN
MX
MX
10 mail.reseau.loc.
10 mta.reseau.loc.
;; AUTHORITY SECTION:
reseau.loc.
86400 IN
NS
mail.reseau.loc.
;; ADDITIONAL SECTION:
mail.reseau.loc.
86400 IN
mta.reseau.loc.
86400 IN
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
A
;; ANSWER SECTION:
mail.reseau.loc.
86400 IN
;; AUTHORITY SECTION:
reseau.loc.
86400 IN
A
NS
192.168.0.12
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
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 5 sur 13
Mars 2009
INSTALLATION DE ZIMBRA
Version de Zimbra : 5.0.13 OSE
Taille de l’archive : ~340 Mo
Site de téléchargement : Zimbra Site Officiel - http://www.zimbra.com/community/downloads.html
Récupération de Zimbra
- Via le site officiel.
- Avec la méthode wget :
root@mta:~# wget http://h.yimg.com/lo/downloads/5.0.13_GA/zcs-5.0.13_GA_2791.UBUNTU8.20090206174622.tgz
--12:32:35-- http://h.yimg.com/lo/downloads/5.0.13_GA/zcs-5.0.13_GA_2791.UBUNTU8.20090206174622.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]
Décompression de l’archive
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
Préparation des librairies nécessaires à 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 dépendances
Lecture des informations d'état... Fait
Les paquets supplémentaires suivants seront installés :
gcc-3.3-base
Les NOUVEAUX paquets suivants seront installés :
gcc-3.3-base libgmp3c2 libltdl3 libpcre3 libstdc++5
0 mis à jour, 5 nouvellement installés, 0 à enlever et 6 non mis à jour.
Il est nécessaire de prendre 1267ko dans les archives.
Après cette opération, 2458ko d'espace disque supplémentaires seront utilisés.
Souhaitez-vous continuer [O/n]Â ? O ici, répondre « O »
Réception de : 1 http://fr.archive.ubuntu.com hardy-updates/universe gcc-3.3-base 1:3.3.6-15ubuntu6 [151kB]
Réception de : 2 http://fr.archive.ubuntu.com hardy/main libgmp3c2 2:4.2.2+dfsg-1ubuntu2 [436kB]
Réception de : 3 http://fr.archive.ubuntu.com hardy/main libltdl3 1.5.26-1ubuntu1 [178kB]
Réception de : 4 http://fr.archive.ubuntu.com hardy-updates/main libpcre3 7.4-1ubuntu2.1 [206kB]
Réception de : 5 http://fr.archive.ubuntu.com hardy-updates/universe libstdc++5 1:3.3.6-15ubuntu6 [296kB]
1267ko réceptionnés en 10s (123ko/s)
Sélection du paquet gcc-3.3-base précédemment désélectionné.
(Lecture de la base de données... 15377 fichiers et répertoires déjà installés.)
Dépaquetage de gcc-3.3-base (à partir de .../gcc-3.3-base_1%3a3.3.6-15ubuntu6_i386.deb) ...
Sélection du paquet libgmp3c2 précédemment désélectionné.
Dépaquetage de libgmp3c2 (à partir de .../libgmp3c2_2%3a4.2.2+dfsg-1ubuntu2_i386.deb) ...
Sélection du paquet libltdl3 précédemment désélectionné.
Dépaquetage de libltdl3 (à partir de .../libltdl3_1.5.26-1ubuntu1_i386.deb) ...
Sélection du paquet libpcre3 précédemment désélectionné.
Dépaquetage de libpcre3 (à partir de .../libpcre3_7.4-1ubuntu2.1_i386.deb) ...
Sélection du paquet libstdc++5 précédemment désélectionné.
Dépaquetage de libstdc++5 (à partir de .../libstdc++5_1%3a3.3.6-15ubuntu6_i386.deb) ...
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 6 sur 13
Mars 2009
Paramétrage de gcc-3.3-base (1:3.3.6-15ubuntu6) ...
Paramétrage de libgmp3c2 (2:4.2.2+dfsg-1ubuntu2) ...
Paramétrage de libltdl3 (1.5.26-1ubuntu1) ...
Paramétrage de libpcre3 (7.4-1ubuntu2.1) ...
Paramétrage de libstdc++5 (1:3.3.6-15ubuntu6) ...
Processing triggers for libc6 ...
ldconfig deferred processing now taking place
Début de l’installation
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.com/license/zimbra_public_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
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 7 sur 13
Mars 2009
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 n’allons pas l’utiliser.
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] Y
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, répondre 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)
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 8 sur 13
Mars 2009
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:
[email protected]
******* +Admin Password
UNSET
+Enable automated spam training:
yes
+Spam training user:
[email protected]
+Non-spam(Ham) training user:
[email protected]
+Global Documents Account:
[email protected]
+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:
5) zimbra-snmp:
6) zimbra-logger:
7) zimbra-spell:
8) Default Class of Service Configuration:
r) Start servers after configuration
s) Save config to file
x) Expand menu
q) Quit
Enabled
Enabled
Enabled
Enabled
yes
Address unconfigured (**) items (? - help) 3 ici, entrer le chiffre correspondant au menu zimbra-store
Store configuration
1) Status:
2) Create Admin User:
3) Admin user to create:
** 4) Admin Password
5) Enable automated spam training:
6) Spam training user:
7) Non-spam(Ham) training user:
8) Global Documents Account:
9) SMTP host:
10) Web server HTTP port:
11) Web server HTTPS port:
12) Web server mode:
13) IMAP server port:
14) IMAP server SSL port:
15) POP server port:
16) POP server SSL port:
17) Use spell check server:
18) Spell server URL:
Enabled
yes
[email protected]
UNSET
yes
[email protected]
[email protected]
[email protected]
mta.reseau.loc
80
443
http
143
993
110
995
yes
http://mta.reseau.loc:7780/aspell.php
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 9 sur 13
Mars 2009
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 l’admin password
Password for [email protected] (min 6 characters): [qLjNJZQV2Z] taper un mot de passe
Store configuration
1) Status:
Enabled
2) Create Admin User:
yes
3) Admin user to create:
[email protected]
4) Admin Password
set
5) Enable automated spam training:
yes
6) Spam training user:
[email protected]
7) Non-spam(Ham) training user:
[email protected]
8) Global Documents Account:
[email protected]
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:
3) zimbra-store:
4) zimbra-mta:
5) zimbra-snmp:
6) zimbra-logger:
7) zimbra-spell:
8) Default Class of Service Configuration:
r) Start servers after configuration
s) Save config to file
x) Expand menu
q) Quit
Enabled
Enabled
Enabled
Enabled
Enabled
Enabled
yes
*** 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.
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 10 sur 13
Mars 2009
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 [email protected].
Creating postmaster alias...done.
Creating user [email protected].
Creating user [email protected].
Creating user [email protected].
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 ([email protected])
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&[email protected]
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.
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 11 sur 13
Mars 2009
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
Accès à l’interface d’administration
Ouvrir un navigateur
Dans la barre d’adresse taper : https://192.168.0.12:7071
Accepter le certificat ou ajouter une exception si nécessaire.
Créer maintenant les comptes utilisateurs, groupes, etc…
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 12 sur 13
Mars 2009
Accès à l’interface d’administration
Ouvrir un navigateur
Dans la barre d’adresse taper : http://192.168.0.12
Ressources utiles :
Site officiel de Zimbra - http://www.zimbra.com/buzz/index.fr.html
Forum de la communauté Zimbra Francophone - http://www.zimbrafr.org/forum/
Documentation Zimbra - http://www.zimbra.com/community/documentation.html
Guide d’administration de Zimbra - http://files.zimbra.com/website/docs/Zimbra%20OS%20Admin%20Guide.pdf
Tutoriel réalisé par Ludovic avec l’aide de Klug du forum francophone Zimbra
Page 13 sur 13

Documents pareils