Projet

Général

Profil

NFS » Historique » Version 14

Patrice Nadeau, 2015-07-01 20:35

1 13 Patrice Nadeau
h1. NFS
2 1 Patrice Nadeau
3 13 Patrice Nadeau
NFS(Network File System) est une solution d’accès de fichier sur un serveur central.
4
La solution est en deux partie, une serveur et l'autre client.
5 8 Patrice Nadeau
6 6 Patrice Nadeau
----
7
8 5 Patrice Nadeau
9 1 Patrice Nadeau
{{toc}}
10
11 13 Patrice Nadeau
h2. Serveur
12 1 Patrice Nadeau
13 13 Patrice Nadeau
h3. Installation
14 1 Patrice Nadeau
15 2 Patrice Nadeau
Les « packages » _libdaemon_ et _avahi_ doivent être présents.
16
17 1 Patrice Nadeau
<pre><code class="bash">
18
zypper install nfs-kernel-server
19
</code></pre>
20
21 13 Patrice Nadeau
h3. Démarrage
22 1 Patrice Nadeau
23
<pre><code class="bash">
24 14 Patrice Nadeau
systemctl enable rpcbind.service
25
systemctl start rpcbind.service
26 1 Patrice Nadeau
systemctl enable nfsserver.service
27
systemctl start nfsserver.service
28
</code></pre>
29
30 13 Patrice Nadeau
h3. Pare-feu
31 4 Patrice Nadeau
32
Via _yast firewall_
33 2 Patrice Nadeau
34 13 Patrice Nadeau
h3. Configuration
35 8 Patrice Nadeau
36 13 Patrice Nadeau
h4. CLI(Command Line Interface)
37 2 Patrice Nadeau
38 1 Patrice Nadeau
Le fichier _/etc/exports_ contient les noms des répertoires à rendre disponibles.
39 2 Patrice Nadeau
40
Les explications de configuration sont fournis par
41 1 Patrice Nadeau
<pre><code class="bash">
42 2 Patrice Nadeau
man 5 exports
43 1 Patrice Nadeau
</code></pre>
44 2 Patrice Nadeau
45
Une fois modifié, relire le fichier avec 
46
<pre><code class="bash">
47
exportfs -a
48 1 Patrice Nadeau
</code></pre>
49
50 13 Patrice Nadeau
h4. GUI(Graphical User interface)
51 8 Patrice Nadeau
52 1 Patrice Nadeau
Via le module _nfs server_ de YaST (*yast nfs_server*)
53 8 Patrice Nadeau
54 13 Patrice Nadeau
h2. Client
55 4 Patrice Nadeau
56 13 Patrice Nadeau
h3. Installation
57 1 Patrice Nadeau
58
<pre><code class="bash">
59
# Installation
60
zypper install nfs-client
61 4 Patrice Nadeau
</code></pre>
62 1 Patrice Nadeau
63 13 Patrice Nadeau
h3. Utilisation
64 8 Patrice Nadeau
65 13 Patrice Nadeau
h4. CLI(Command Line Interface)
66 8 Patrice Nadeau
67
Voir #22
68
69 13 Patrice Nadeau
h4. GUI(Graphical User interface)
70 12 Patrice Nadeau
71 1 Patrice Nadeau
Via le module _NFS client_ de YaST (*yast nfs*)