]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdadm.conf.5
Stuff like..
[thirdparty/mdadm.git] / mdadm.conf.5
CommitLineData
56eb10c0
NB
1.TH MDADM.CONF 5
2.SH NAME
3mdadm.conf \- configuration for management of Software Raid with mdadm
4.SH SYNOPSIS
5/etc/mdadm.conf
6.SH DESCRIPTION
7.PP
8.B mdadm
11a3e71d 9is a tool for creating, managing, and monitoring RAID devices using the
56eb10c0
NB
10.B md
11driver in Linux.
12.PP
13Some common tasks, such as assembling all arrays, can be simplified
2d465520 14by describing the devices and arrays in this configuration file.
56eb10c0
NB
15
16.SS SYNTAX
17The file should be seen as a collection of words separated by white
18space (space, tab, or newline).
11a3e71d 19Any word that beings with a hash sign (#) starts a comment and that
2d465520 20word together with the remainder of the line is ignored.
56eb10c0 21
2d465520 22Any line that starts with white space (space or tab) is treated as
56eb10c0
NB
23though it were a continuation of the previous line.
24
25Empty lines are ignored, but otherwise each (non continuation) line
2d465520 26must start with a keyword as listed below. The keywords are case
e0d19036 27insensitive and can be abbreviated to 3 characters.
56eb10c0
NB
28
29The keywords are:
30.TP
31.B DEVICE
32A
33.B device
34line lists the devices (whole devices or partitions) that might contain
35a component of an MD array. When looking for the components of an
36array,
37.B mdadm
2d465520 38will scan these devices (or any devices listed on the command line).
56eb10c0
NB
39
40The
41.B device
42line may contain a number of different devices (separated by spaces)
43and each device name can contain wild cards as defined by
44.BR glob (7).
45
46Also, there may be several device lines present in the file.
47
5787fa49
NB
48Alternatively, a
49.B device
50line can contain the word
51.BR partitions .
52This will cause
53.I mdadm
54to read
55.I /proc/partitions
56and include all devices and partitions found there-in.
57.I mdadm
58does not use the names from
59.I /proc/partitions
60but only the major and minor device numbers. It scans
61.I /dev
62to find the name that matches the numbers.
63
11a3e71d
NB
64For example:
65.IP
66DEVICE /dev/hda* /dev/hdc*
67.br
68DEV /dev/sd*
69.br
70DEVICE /dev/discs/disc*/disc
5787fa49
NB
71.br
72DEVICE partitions
11a3e71d 73
56eb10c0
NB
74.TP
75.B ARRAY
11a3e71d
NB
76The ARRAY lines identify actual arrays. The second word on the line
77should be the name of the device where the array is normally
78assembled, such as
79.BR /dev/md1 .
e0d19036
NB
80Subsequent words identify the array, or identify the array as a member
81of a group. If multiple identities are given,
2d465520
NB
82then a component device must match ALL identities to be considered a
83match. Each identity word has a tag, and equals sign, and some value.
84The tags are:
11a3e71d
NB
85
86.RS 4
87.TP
88.B uuid=
89The value should be a 128 bit uuid in hexadecimal, with punctuation
90interspersed if desired. This must match the uuid stored in the
91superblock.
92.TP
947fd4dd
NB
93.B name=
94The value should be a simple textual name as was given to
95.I mdadm
96when the array was created. This must match the name stored in the
97superblock on a device for that device to be included in the array.
98Not all superblock-formats support names.
99.TP
11a3e71d
NB
100.B super-minor=
101The value is an integer which indicates the minor number that was
102stored in the superblock when the array was created. When an array is
103created as /dev/mdX, then the minor number X is stored.
104.TP
105.B devices=
56eedc1a
NB
106The value is a comma separated list of device names or device name
107patterns.
108Only devices with names which match one entry in the list will be used
109to assemble the array. Note that the devices
11a3e71d
NB
110listed there must also be listed on a DEVICE line.
111.TP
112.B level=
113The value is a raid level. This is not normally used to
114identify an array, but is supported so that the output of
115
116.B "mdadm --examine --scan"
117
118can be use directly in the configuration file.
119.TP
b83d95f3
NB
120.B num-devices=
121The value is the number of devices in a complete active array. As with
11a3e71d
NB
122.B level=
123this is mainly for compatibility with the output of
56eb10c0 124
11a3e71d 125.BR "mdadm --examine --scan" .
e0d19036
NB
126
127.TP
128.B spare-group=
129The value is a textual name for a group of arrays. All arrays with
130the same
131.B spare-group
132name are considered to be part of the same group. The significance of
133a group of arrays is that
134.B mdadm
135will, when monitoring the arrays, move a spare drive from one array in
136a group to another array in that group if the first array had a failed
137or missing drive but no spare.
dd0781e5
NB
138
139.TP
140.B auto=
141This option declares to
142.B mdadm
143that it should try to create the device file of the array if it
144doesn't already exist, or exists but with the wrong device number.
145
146The value of this option can be "yes" or "md" to indicate that a
147traditional, non-partitionable md array should be created, or "mdp",
148"part" or "partition" to indicate that a partitionable md array (only
149available in linux 2.6 and later) should be used. This later set can
150also have a number appended to indicate how many partitions to create
151device files for, e.g.
152.BR auto=mdp5 .
153The default is 4.
11a3e71d 154.RE
e0d19036
NB
155
156.TP
157.B MAILADDR
158The
159.B mailaddr
160line gives an E-mail address that alerts should be
161sent to when
162.M mdadm
163is running in
164.B --monitor
165mode (and was given the
166.B --scan
167option). There should only be one
168.B MAILADDR
169line and it should have only one address.
170
171
172.TP
173.B PROGRAM
174The
175.B program
176line gives the name of a program to be run when
177.B "mdadm --monitor"
178detects potentially interesting events on any of the arrays that it
179is monitoring. This program gets run with two or three arguments, they
180being the Event, the md device, and possibly the related component
181device.
182
183There should only be one
184.B program
185line and it should be give only one program.
186
2d465520
NB
187.SH EXAMPLE
188DEVICE /dev/sd[bcdjkl]1
189.br
190DEVICE /dev/hda1 /dev/hdb1
191
192# /dev/md0 is known by it's UID.
193.br
194ARRAY /dev/md0 UUID=3aaa0122:29827cfa:5331ad66:ca767371
195.br
196# /dev/md1 contains all devices with a minor number of
197.br
198# 1 in the superblock.
199.br
200ARRAY /dev/md1 superminor=1
201.br
202# /dev/md2 is made from precisey these two devices
203.br
a9d69660 204ARRAY /dev/md2 devices=/dev/hda1,/dev/hdb1
2d465520
NB
205
206# /dev/md4 and /dev/md5 are a spare-group and spares
207.br
208# can be moved between them
209.br
210ARRAY /dev/md4 uuid=b23f3c6d:aec43a9f:fd65db85:369432df
211.br
212 spare-group=group1
213.br
214ARRAY /dev/md5 uuid=19464854:03f71b1b:e0df2edd:246cc977
215.br
216 spare-group=group1
dd0781e5
NB
217.br
218# /dev/md/home is created if need to be a partitionable md array
219.br
220# any spare device number is allocated.
221.br
222ARRAY /dev/md/home UUID=9187a482:5dde19d9:eea3cc4a:d646ab8b
223.br
224 auto=part
2d465520
NB
225
226MAILADDR root@mydomain.tld
227.br
228PROGRAM /usr/sbin/handle-mdadm-events
229
e0d19036 230
56eb10c0 231.SH SEE ALSO
11a3e71d
NB
232.BR mdadm (8),
233.BR md (4).
56eb10c0 234