]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdadm.8
Centralise code for copying uuid
[thirdparty/mdadm.git] / mdadm.8
CommitLineData
52826846 1.\" -*- nroff -*-
90fc992e
NB
2''' Copyright Neil Brown and others.
3''' This program is free software; you can redistribute it and/or modify
4''' it under the terms of the GNU General Public License as published by
5''' the Free Software Foundation; either version 2 of the License, or
6''' (at your option) any later version.
7''' See file COPYING in distribution for details.
9255bbc8 8.TH MDADM 8 "" v2.5.6
52826846 9.SH NAME
9a9dab36 10mdadm \- manage MD devices
cd29a5c8
NB
11.I aka
12Linux Software Raid.
13
52826846
NB
14.SH SYNOPSIS
15
e0d19036 16.BI mdadm " [mode] <raiddevice> [options] <component-devices>"
52826846 17
2ae555c3 18.SH DESCRIPTION
52826846 19RAID devices are virtual devices created from two or more
cd29a5c8
NB
20real block devices. This allows multiple devices (typically disk
21drives or partitions there-of) to be combined into a single device to
22hold (for example) a single filesystem.
2d465520 23Some RAID levels include redundancy and so can survive some degree of
cd29a5c8
NB
24device failure.
25
2d465520
NB
26Linux Software RAID devices are implemented through the md (Multiple
27Devices) device driver.
cd29a5c8
NB
28
29Currently, Linux supports
30.B LINEAR
31md devices,
32.B RAID0
33(striping),
34.B RAID1
35(mirroring),
d013a55e
NB
36.BR RAID4 ,
37.BR RAID5 ,
98c6faba 38.BR RAID6 ,
1a7dfc35 39.BR RAID10 ,
b5e64645 40.BR MULTIPATH ,
cd29a5c8 41and
b5e64645 42.BR FAULTY .
d013a55e 43
a9d69660
NB
44.B MULTIPATH
45is not a Software RAID mechanism, but does involve
d013a55e
NB
46multiple devices. For
47.B MULTIPATH
48each device is a path to one common physical storage device.
49
a9d69660
NB
50.B FAULTY
51is also not true RAID, and it only involves one device. It
b5e64645 52provides a layer over a true device that can be used to inject faults.
52826846 53
a9d69660
NB
54'''.B mdadm
55'''is a program that can be used to create, manage, and monitor
56'''MD devices. As
57'''such it provides a similar set of functionality to the
58'''.B raidtools
59'''packages.
60'''The key differences between
61'''.B mdadm
62'''and
63'''.B raidtools
64'''are:
65'''.IP \(bu 4
66'''.B mdadm
67'''is a single program and not a collection of programs.
68'''.IP \(bu 4
69'''.B mdadm
70'''can perform (almost) all of its functions without having a
71'''configuration file and does not use one by default. Also
72'''.B mdadm
73'''helps with management of the configuration
74'''file.
75'''.IP \(bu 4
76'''.B mdadm
77'''can provide information about your arrays (through Query, Detail, and Examine)
78'''that
79'''.B raidtools
80'''cannot.
81'''.P
82'''.I mdadm
83'''does not use
84'''.IR /etc/raidtab ,
85'''the
86'''.B raidtools
87'''configuration file, at all. It has a different configuration file
98b24a2a 88'''with a different format and a different purpose.
52826846
NB
89
90.SH MODES
dd0781e5 91mdadm has 7 major modes of operation:
cd29a5c8
NB
92.TP
93.B Assemble
94Assemble the parts of a previously created
52826846 95array into an active array. Components can be explicitly given
2ae555c3 96or can be searched for.
9a9dab36 97.B mdadm
cd29a5c8
NB
98checks that the components
99do form a bona fide array, and can, on request, fiddle superblock
100information so as to assemble a faulty array.
101
102.TP
103.B Build
a9d69660
NB
104Build an array that doesn't have per-device superblocks. For these
105sorts of arrays,
106.I mdadm
107cannot differentiate between initial creation and subsequent assembly
108of an array. It also cannot perform any checks that appropriate
109devices have been requested. Because of this, the
110.B Build
111mode should only be used together with a complete understanding of
112what you are doing.
cd29a5c8
NB
113
114.TP
115.B Create
116Create a new array with per-device superblocks.
117'''It can progress
118'''in several step create-add-add-run or it can all happen with one command.
119
cd29a5c8
NB
120.TP
121.B "Follow or Monitor"
5787fa49 122Monitor one or more md devices and act on any state changes. This is
1a7dfc35 123only meaningful for raid1, 4, 5, 6, 10 or multipath arrays as
98c6faba
NB
124only these have interesting state. raid0 or linear never have
125missing, spare, or failed drives, so there is nothing to monitor.
5787fa49 126
dd0781e5
NB
127.TP
128.B "Grow"
129Grow (or shrink) an array, or otherwise reshape it in some way.
130Currently supported growth options including changing the active size
2ae555c3 131of component devices in RAID level 1/4/5/6 and changing the number of
dd0781e5 132active devices in RAID1.
cd29a5c8 133
2ae555c3
NB
134.TP
135.B Manage
136This is for doing things to specific components of an array such as
137adding new spares and removing faulty devices.
138
139.TP
140.B Misc
141This is an 'everything else' mode that supports operations on active
142arrays, operations on component devices such as erasing old superblocks, and
143information gathering operations.
144'''This mode allows operations on independent devices such as examine MD
145'''superblocks, erasing old superblocks and stopping active arrays.
146
52826846
NB
147.SH OPTIONS
148
2ae555c3 149.SH Options for selecting a mode are:
52826846 150
cd29a5c8
NB
151.TP
152.BR -A ", " --assemble
2d465520 153Assemble a pre-existing array.
52826846 154
cd29a5c8
NB
155.TP
156.BR -B ", " --build
157Build a legacy array without superblocks.
52826846 158
cd29a5c8
NB
159.TP
160.BR -C ", " --create
161Create a new array.
52826846 162
cd29a5c8
NB
163.TP
164.BR -F ", " --follow ", " --monitor
165Select
166.B Monitor
167mode.
52826846 168
dd0781e5
NB
169.TP
170.BR -G ", " --grow
171Change the size or shape of an active array.
2ae555c3
NB
172.P
173If a device is given before any options, or if the first option is
174.BR --add ,
175.BR --fail ,
176or
177.BR --remove ,
178then the MANAGE mode is assume.
179Anything other than these will cause the
180.B Misc
181mode to be assumed.
dd0781e5 182
2ae555c3 183.SH Options that are not mode-specific are:
e793c2e5 184
cd29a5c8
NB
185.TP
186.BR -h ", " --help
a9d69660
NB
187Display general help message or, after one of the above options, a
188mode specific help message.
56eedc1a
NB
189
190.TP
191.B --help-options
192Display more detailed help about command line parsing and some commonly
193used options.
52826846 194
cd29a5c8
NB
195.TP
196.BR -V ", " --version
9a9dab36 197Print version information for mdadm.
52826846 198
cd29a5c8
NB
199.TP
200.BR -v ", " --verbose
22892d56
NB
201Be more verbose about what is happening. This can be used twice to be
202extra-verbose.
a9d69660 203The extra verbosity currently only affects
22892d56
NB
204.B --detail --scan
205and
206.BR "--examine --scan" .
52826846 207
dab6685f
NB
208.TP
209.BR -q ", " --quiet
210Avoid printing purely informative messages. With this,
211.B mdadm
212will be silent unless there is something really important to report.
213
cd29a5c8
NB
214.TP
215.BR -b ", " --brief
216Be less verbose. This is used with
217.B --detail
218and
219.BR --examine .
22892d56
NB
220Using
221.B --brief
222with
223.B --verbose
224gives an intermediate level of verbosity.
52826846 225
e0d19036
NB
226.TP
227.BR -f ", " --force
228Be more forceful about certain operations. See the various modes of
229the exact meaning of this option in different contexts.
230
231.TP
232.BR -c ", " --config=
2ae555c3
NB
233Specify the config file. Default is to use
234.BR /etc/mdadm.conf ,
235or if that is missing, then
236.BR /etc/mdadm/mdadm.conf .
5787fa49
NB
237If the config file given is
238.B partitions
239then nothing will be read, but
240.I mdadm
241will act as though the config file contained exactly
242.B "DEVICE partitions"
243and will read
244.B /proc/partitions
245to find a list of devices to scan.
d013a55e
NB
246If the word
247.B none
248is given for the config file, then
249.I mdadm
250will act as though the config file were empty.
e0d19036
NB
251
252.TP
253.BR -s ", " --scan
254scan config file or
255.B /proc/mdstat
256for missing information.
257In general, this option gives
258.B mdadm
259permission to get any missing information, like component devices,
260array devices, array identities, and alert destination from the
261configuration file:
262.BR /etc/mdadm.conf .
263One exception is MISC mode when using
264.B --detail
265or
266.B --stop
267in which case
268.B --scan
269says to get a list of array devices from
270.BR /proc/mdstat .
271
570c0542
NB
272.TP
273.B -e ", " --metadata=
274Declare the style of superblock (raid metadata) to be used. The
275default is 0.90 for --create, and to guess for other operations.
2790ffe3
GB
276The default can be overridden by setting the
277.B metadata
278value for the
279.B CREATE
280keyword in
281.BR mdadm.conf .
570c0542
NB
282
283Options are:
284.RS
285.IP "0, 0.90, default"
286Use the original 0.90 format superblock. This format limits arrays to
28728 componenet devices and limits component devices of levels 1 and
288greater to 2 terabytes.
289.IP "1, 1.0, 1.1, 1.2"
290Use the new version-1 format superblock. This has few restrictions.
291The different subversion store the superblock at different locations
292on the device, either at the end (for 1.0), at the start (for 1.1) or
2934K from the start (for 1.2).
294.RE
295
41a3b72a
NB
296.TP
297.B --homehost=
298This will over-ride any
299.B HOMEHOST
300setting in the config file and provides the identify of the host which
301should be considered the home for any arrays.
302
303When creating an array, the
304.B homehost
305will be recorded in the superblock. For version-1 superblocks, it will
306be prefixed to the array name. For version-0.90 superblocks part of
307the SHA1 hash of the hostname will be stored in the later half of the
308UUID.
309
310When reporting information about an array, any array which is tagged
311for the given homehost will be reported as such.
312
313When using Auto-Assemble, only arrays tagged for the given homehost
314will be assembled.
315
2ae555c3
NB
316.SH For create, build, or grow:
317
318.TP
319.BR -n ", " --raid-devices=
320Specify the number of active devices in the array. This, plus the
321number of spare devices (see below) must equal the number of
322.I component-devices
323(including "\fBmissing\fP" devices)
324that are listed on the command line for
325.BR --create .
326Setting a value of 1 is probably
327a mistake and so requires that
328.B --force
329be specified first. A value of 1 will then be allowed for linear,
330multipath, raid0 and raid1. It is never allowed for raid4 or raid5.
331.br
332This number can only be changed using
333.B --grow
334for RAID1 arrays, and only on kernels which provide necessary support.
335
336.TP
337.BR -x ", " --spare-devices=
338Specify the number of spare (eXtra) devices in the initial array.
339Spares can also be added
340and removed later. The number of component devices listed
341on the command line must equal the number of raid devices plus the
342number of spare devices.
343
344
345.TP
346.BR -z ", " --size=
347Amount (in Kibibytes) of space to use from each drive in RAID1/4/5/6.
348This must be a multiple of the chunk size, and must leave about 128Kb
349of space at the end of the drive for the RAID superblock.
350If this is not specified
351(as it normally is not) the smallest drive (or partition) sets the
352size, though if there is a variance among the drives of greater than 1%, a warning is
353issued.
354
355This value can be set with
356.B --grow
357for RAID level 1/4/5/6. If the array was created with a size smaller
358than the currently active drives, the extra space can be accessed
359using
360.BR --grow .
361The size can be given as
362.B max
363which means to choose the largest size that fits on all current drives.
52826846 364
cd29a5c8
NB
365.TP
366.BR -c ", " --chunk=
367Specify chunk size of kibibytes. The default is 64.
52826846 368
cd29a5c8
NB
369.TP
370.BR --rounding=
371Specify rounding factor for linear array (==chunk size)
52826846 372
cd29a5c8
NB
373.TP
374.BR -l ", " --level=
aa88f531
NB
375Set raid level. When used with
376.IR --create ,
98c6faba 377options are: linear, raid0, 0, stripe, raid1, 1, mirror, raid4, 4,
2ae555c3 378raid5, 5, raid6, 6, raid10, 10, multipath, mp, faulty. Obviously some of these are synonymous.
aa88f531
NB
379
380When used with
381.IR --build ,
a9d69660 382only linear, stripe, raid0, 0, raid1, multipath, mp, and faulty are valid.
52826846 383
2ae555c3
NB
384Not yet supported with
385.IR --grow .
386
cd29a5c8 387.TP
1a7dfc35
NB
388.BR -p ", " --layout=
389This option configures the fine details of data layout for raid5,
390and raid10 arrays, and controls the failure modes for
391.IR faulty .
392
393The layout of the raid5 parity block can be one of
2d465520
NB
394left-asymmetric,
395left-symmetric,
396right-asymmetric,
397right-symmetric,
398la, ra, ls, rs. The default is left-symmetric.
52826846 399
1a7dfc35
NB
400When setting the failure mode for
401.I faulty
402the options are:
b5e64645
NB
403write-transient,
404wt,
405read-transient,
406rt,
2ae555c3 407write-persistent,
b5e64645
NB
408wp,
409read-persistent,
410rp,
411write-all,
412read-fixable,
413rf,
414clear,
415flush,
416none.
417
418Each mode can be followed by a number which is used as a period
419between fault generation. Without a number, the fault is generated
420once on the first relevant request. With a number, the fault will be
421generated after that many request, and will continue to be generated
422every time the period elapses.
423
424Multiple failure modes can be current simultaneously by using the
425"--grow" option to set subsequent failure modes.
426
427"clear" or "none" will remove any pending or periodic failure modes,
2ae555c3 428and "flush" will clear any persistent faults.
b5e64645
NB
429
430To set the parity with "--grow", the level of the array ("faulty")
431must be specified before the fault mode is specified.
432
b578481c 433Finally, the layout options for RAID10 are one of 'n', 'o' or 'p' followed
1a7dfc35
NB
434by a small number. The default is 'n2'.
435
436.I n
b578481c
NB
437signals 'near' copies. Multiple copies of one data block are at
438similar offsets in different devices.
439
440.I o
441signals 'offset' copies. Rather than the chunks being duplicated
442within a stripe, whole stripes are duplicated but are rotated by one
443device so duplicate blocks are on different devices. Thus subsequent
444copies of a block are in the next drive, and are one chunk further
445down.
446
1a7dfc35
NB
447.I f
448signals 'far' copies
449(multiple copies have very different offsets). See md(4) for more
450detail about 'near' and 'far'.
451
452The number is the number of copies of each datablock. 2 is normal, 3
453can be useful. This number can be at most equal to the number of
454devices in the array. It does not need to divide evenly into that
455number (e.g. it is perfectly legal to have an 'n2' layout for an array
456with an odd number of devices).
457
cd29a5c8 458.TP
1a7dfc35
NB
459.BR --parity=
460same as --layout (thus explaining the p of
461.IR -p ).
52826846 462
e793c2e5
NB
463.TP
464.BR -b ", " --bitmap=
465Specify a file to store a write-intent bitmap in. The file should not
466exist unless --force is also given. The same file should be provided
2ae555c3
NB
467when assembling the array. If the word
468.B internal
469is given, then the bitmap is stored with the metadata on the array,
470and so is replicated on all devices. If the word
471.B none
472is given with
473.B --grow
474mode, then any bitmap that is present is removed.
e793c2e5 475
2ae555c3
NB
476To help catch typing errors, the filename must contain at least one
477slash ('/') if it is a real file (not 'internal' or 'none').
478
479Note: external bitmaps are only known to work on ext2 and ext3.
480Storing bitmap files on other filesystems may result in serious problems.
e793c2e5 481
cd29a5c8 482.TP
2ae555c3
NB
483.BR --bitmap-chunk=
484Set the chunksize of the bitmap. Each bit corresponds to that many
1bfdbe01
NB
485Kilobytes of storage.
486When using a file based bitmap, the default is to use the smallest
487size that is atleast 4 and requires no more than 2^21 chunks.
2ae555c3
NB
488When using an
489.B internal
490bitmap, the chunksize is automatically determined to make best use of
491available space.
5787fa49 492
cd29a5c8
NB
493
494.TP
2ae555c3
NB
495.BR -W ", " --write-mostly
496subsequent devices lists in a
497.BR --build ,
498.BR --create ,
499or
500.B --add
501command will be flagged as 'write-mostly'. This is valid for RAID1
502only and means that the 'md' driver will avoid reading from these
503devices if at all possible. This can be useful if mirroring over a
504slow link.
52826846 505
2ae555c3
NB
506.TP
507.BR --write-behind=
508Specify that write-behind mode should be enabled (valid for RAID1
509only). If an argument is specified, it will set the maximum number
510of outstanding writes allowed. The default value is 256.
511A write-intent bitmap is required in order to use write-behind
512mode, and write-behind is only attempted on drives marked as
513.IR write-mostly .
dd0781e5
NB
514
515.TP
516.BR --assume-clean
517Tell
518.I mdadm
47d79ef8
NB
519that the array pre-existed and is known to be clean. It can be useful
520when trying to recover from a major failure as you can be sure that no
521data will be affected unless you actually write to the array. It can
522also be used when creating a RAID1 or RAID10 if you want to avoid the
523initial resync, however this practice - while normally safe - is not
524recommended. Use this ony if you really know what you are doing.
dd0781e5 525
2ae555c3
NB
526.TP
527.BR --backup-file=
528This is needed when --grow is used to increase the number of
529raid-devices in a RAID5 if there are no spare devices available.
530See the section below on RAID_DEVICE CHANGES. The file should be
531stored on a separate device, not on the raid array being reshaped.
532
947fd4dd
NB
533.TP
534.BR -N ", " --name=
535Set a
536.B name
537for the array. This is currently only effective when creating an
538array with a version-1 superblock. The name is a simple textual
539string that can be used to identify array components when assembling.
540
dd0781e5
NB
541.TP
542.BR -R ", " --run
543Insist that
544.I mdadm
545run the array, even if some of the components
546appear to be active in another array or filesystem. Normally
547.I mdadm
548will ask for confirmation before including such components in an
549array. This option causes that question to be suppressed.
550
551.TP
552.BR -f ", " --force
553Insist that
554.I mdadm
555accept the geometry and layout specified without question. Normally
556.I mdadm
557will not allow creation of an array with only one device, and will try
558to create a raid5 array with one missing drive (as this makes the
559initial resync work faster). With
560.BR --force ,
561.I mdadm
562will not try to be so clever.
563
564.TP
565.BR -a ", " "--auto{=no,yes,md,mdp,part,p}{NN}"
48f7b27a
NB
566Instruct mdadm to create the device file if needed, possibly allocating
567an unused minor number. "md" causes a non-partitionable array
dd0781e5 568to be used. "mdp", "part" or "p" causes a partitionable array (2.6 and
2ae555c3 569later) to be used. "yes" requires the named md device to have
f9c25f1d 570a 'standard' format, and the type and minor number will be determined
48f7b27a
NB
571from this. See DEVICE NAMES below.
572
a9d69660 573The argument can also come immediately after
dd0781e5
NB
574"-a". e.g. "-ap".
575
75723446
NB
576If --auto is not given on the command line or in the config file, then
577the default will be
578.BR --auto=yes .
579
1337546d
NB
580If
581.I --scan
582is also given, then any
583.I auto=
584entries in the config file will over-ride the
585.I --auto
586instruction given on the command line.
587
dd0781e5
NB
588For partitionable arrays,
589.I mdadm
590will create the device file for the whole array and for the first 4
591partitions. A different number of partitions can be specified at the
592end of this option (e.g.
593.BR --auto=p7 ).
2ae555c3 594If the device name ends with a digit, the partition names add a 'p',
48f7b27a 595and a number, e.g. "/dev/home1p3". If there is no
dd0781e5
NB
596trailing digit, then the partition names just have a number added,
597e.g. "/dev/scratch3".
598
48f7b27a
NB
599If the md device name is in a 'standard' format as described in DEVICE
600NAMES, then it will be created, if necessary, with the appropriate
601number based on that name. If the device name is not in one of these
a9d69660 602formats, then a unused minor number will be allocated. The minor
48f7b27a
NB
603number will be considered unused if there is no active array for that
604number, and there is no entry in /dev for that number and with a
605non-standard name.
606
38098016
NB
607.TP
608.BR --symlink = no
609Normally when
610.B --auto
611causes
612.I mdadm
613to create devices in
614.B /dev/md/
615it will also create symlinks from
616.B /dev/
617with names starting with
618.B md
619or
620.BR md_ .
621Use
622.B --symlink=no
623to suppress this, or
624.B --symlink=yes
625to enforce this even if it is suppressing
626.IR mdadm.conf .
627
628
52826846
NB
629.SH For assemble:
630
cd29a5c8
NB
631.TP
632.BR -u ", " --uuid=
633uuid of array to assemble. Devices which don't have this uuid are
634excluded
635
636.TP
637.BR -m ", " --super-minor=
638Minor number of device that array was created for. Devices which
639don't have this minor number are excluded. If you create an array as
2d465520 640/dev/md1, then all superblocks will contain the minor number 1, even if
cd29a5c8
NB
641the array is later assembled as /dev/md2.
642
d013a55e
NB
643Giving the literal word "dev" for
644.B --super-minor
645will cause
646.I mdadm
647to use the minor number of the md device that is being assembled.
648e.g. when assembling
649.BR /dev/md0 ,
650.M --super-minor=dev
651will look for super blocks with a minor number of 0.
652
947fd4dd
NB
653.TP
654.BR -N ", " --name=
655Specify the name of the array to assemble. This must be the name
624920bb
NB
656that was specified when creating the array. It must either match
657then name stored in the superblock exactly, or it must match
41a3b72a 658with the current
624920bb
NB
659.I homehost
660is added to the start of the given name.
947fd4dd 661
cd29a5c8
NB
662.TP
663.BR -f ", " --force
52826846
NB
664Assemble the array even if some superblocks appear out-of-date
665
cd29a5c8
NB
666.TP
667.BR -R ", " --run
b8a8ccf9
NB
668Attempt to start the array even if fewer drives were given than were
669present last time the array was active. Normally if not all the
670expected drives are found and
cd29a5c8
NB
671.B --scan
672is not used, then the array will be assembled but not started.
673With
674.B --run
675an attempt will be made to start it anyway.
52826846 676
b8a8ccf9
NB
677.TP
678.B --no-degraded
679This is the reverse of
680.B --run
681in that it inhibits the started if array unless all expected drives
682are present. This is only needed with
683.B --scan
684and can be used if you physical connections to devices are
685not as reliable as you would like.
686
dd0781e5
NB
687.TP
688.BR -a ", " "--auto{=no,yes,md,mdp,part}"
689See this option under Create and Build options.
690
e793c2e5
NB
691.TP
692.BR -b ", " --bitmap=
2ae555c3
NB
693Specify the bitmap file that was given when the array was created. If
694an array has an
695.B internal
696bitmap, there is no need to specify this when assembling the array.
697
698.TP
699.BR --backup-file=
700If
701.B --backup-file
702was used to grow the number of raid-devices in a RAID5, and the system
703crashed during the critical section, then the same
704.B --backup-file
705must be presented to --assemble to allow possibly corrupted data to be
706restored.
e793c2e5 707
5787fa49
NB
708.TP
709.BR -U ", " --update=
710Update the superblock on each device while assembling the array. The
feb716e9
NB
711argument given to this flag can be one of
712.BR sparc2.2 ,
713.BR summaries ,
7d99579f 714.BR uuid ,
c4f12c13 715.BR name ,
0237e0ca 716.BR homehost ,
e5329c37 717.BR resync ,
586ed405 718.BR byteorder ,
bee8ec56 719.BR devicesize ,
5787fa49
NB
720or
721.BR super-minor .
722
723The
724.B sparc2.2
7d99579f 725option will adjust the superblock of an array what was created on a Sparc
5787fa49
NB
726machine running a patched 2.2 Linux kernel. This kernel got the
727alignment of part of the superblock wrong. You can use the
728.B "--examine --sparc2.2"
729option to
730.I mdadm
731to see what effect this would have.
732
733The
734.B super-minor
735option will update the
2ae555c3 736.B "preferred minor"
5787fa49 737field on each superblock to match the minor number of the array being
45c073c9
NB
738assembled.
739This can be useful if
740.B --examine
741reports a different "Preferred Minor" to
742.BR --detail .
743In some cases this update will be performed automatically
744by the kernel driver. In particular the update happens automatically
745at the first write to an array with redundancy (RAID level 1 or
746greater) on a 2.6 (or later) kernel.
5787fa49 747
7d99579f
NB
748The
749.B uuid
750option will change the uuid of the array. If a UUID is given with the
38dbfd8a 751"--uuid" option that UUID will be used as a new UUID and will
7d99579f
NB
752.B NOT
753be used to help identify the devices in the array.
754If no "--uuid" is given, a random uuid is chosen.
755
c4f12c13
NB
756The
757.B name
758option will change the
759.I name
760of the array as stored in the superblock. This is only supported for
761version-1 superblocks.
762
0237e0ca
NB
763The
764.B homehost
765option will change the
766.I homehost
767as recorded in the superblock. For version-0 superblocks, this is the
768same as updating the UUID.
769For version-1 superblocks, this involves updating the name.
770
e5329c37
NB
771The
772.B resync
773option will cause the array to be marked
774.I dirty
775meaning that any redundancy in the array (e.g. parity for raid5,
776copies for raid1) may be incorrect. This will cause the raid system
777to perform a "resync" pass to make sure that all redundant information
778is correct.
779
586ed405
NB
780The
781.B byteorder
782option allows arrays to be moved between machines with different
783byte-order.
2ae555c3 784When assembling such an array for the first time after a move, giving
586ed405
NB
785.B "--update=byteorder"
786will cause
787.I mdadm
788to expect superblocks to have their byteorder reversed, and will
789correct that order before assembling the array. This is only valid
2ae555c3 790with original (Version 0.90) superblocks.
586ed405 791
feb716e9
NB
792The
793.B summaries
794option will correct the summaries in the superblock. That is the
795counts of total, working, active, failed, and spare devices.
5787fa49 796
bee8ec56
NB
797The
798.B devicesize
799will rarely be of use. It applies to version 1.1 and 1.2 metadata
800only (where the metadata is at the start of the device) and is only
801useful when the component device has changed size (typically become
802larger). The version 1 metadata records the amount of the device that
803can be used to store data, so if a device in a version 1.1 or 1.2
804array becomes larger, the metadata will still be visible, but the
805extra space will not. In this case it might be useful to assemble the
806array with
807.BR --update=devicesize .
808This will cause
809.I mdadm
810to determine the maximum usable amount of space on each device and
811update the relevant field in the metadata.
812
41a3b72a
NB
813.TP
814.B --auto-update-homehost
815This flag is only meaning with auto-assembly (see discussion below).
816In that situation, if no suitable arrays are found for this homehost,
817.I mdadm
818will recan for any arrays at all and will assemble them and update the
819homehost to match the current host.
820
e0d19036 821.SH For Manage mode:
52826846 822
cd29a5c8
NB
823.TP
824.BR -a ", " --add
2ae555c3 825hot-add listed devices.
52826846 826
fe80f49b
NB
827.TP
828.BR --re-add
2ae555c3 829re-add a device that was recently removed from an array.
fe80f49b 830
cd29a5c8
NB
831.TP
832.BR -r ", " --remove
2d465520 833remove listed devices. They must not be active. i.e. they should
cd29a5c8 834be failed or spare devices.
52826846 835
cd29a5c8
NB
836.TP
837.BR -f ", " --fail
838mark listed devices as faulty.
52826846 839
cd29a5c8
NB
840.TP
841.BR --set-faulty
842same as --fail.
52826846 843
2ae555c3
NB
844.P
845Each of these options require that the first device list is the array
846to be acted upon and the remainder are component devices to be added,
847removed, or marked as fault. Several different operations can be
848specified for different devices, e.g.
849.in +5
850mdadm /dev/md0 --add /dev/sda1 --fail /dev/sdb1 --remove /dev/sdb1
851.in -5
852Each operation applies to all devices listed until the next
853operations.
854
855If an array is using a write-intent bitmap, then devices which have
856been removed can be re-added in a way that avoids a full
857reconstruction but instead just updated the blocks that have changed
858since the device was removed. For arrays with persistent metadata
859(superblocks) this is done automatically. For arrays created with
860.B --build
861mdadm needs to be told that this device we removed recently with
862.B --re-add.
863
864Devices can only be removed from an array if they are not in active
865use. i.e. that must be spares or failed devices. To remove an active
866device, it must be marked as
867.B faulty
868first.
869
870.SH For Misc mode:
871
872.TP
873.BR -Q ", " --query
874Examine a device to see
875(1) if it is an md device and (2) if it is a component of an md
876array.
877Information about what is discovered is presented.
878
879.TP
880.BR -D ", " --detail
881Print detail of one or more md devices.
5787fa49 882
2ae555c3
NB
883.TP
884.BR -E ", " --examine
885Print content of md superblock on device(s).
5787fa49
NB
886.TP
887.B --sparc2.2
a9d69660 888If an array was created on a 2.2 Linux kernel patched with RAID
5787fa49
NB
889support, the superblock will have been created incorrectly, or at
890least incompatibly with 2.4 and later kernels. Using the
891.B --sparc2.2
892flag with
893.B --examine
894will fix the superblock before displaying it. If this appears to do
895the right thing, then the array can be successfully assembled using
896.BR "--assemble --update=sparc2.2" .
897
2ae555c3
NB
898.TP
899.BR -X ", " --examine-bitmap
900Report information about a bitmap file.
e0d19036 901
cd29a5c8
NB
902.TP
903.BR -R ", " --run
904start a partially built array.
52826846 905
cd29a5c8
NB
906.TP
907.BR -S ", " --stop
908deactivate array, releasing all resources.
52826846 909
cd29a5c8
NB
910.TP
911.BR -o ", " --readonly
912mark array as readonly.
52826846 913
cd29a5c8
NB
914.TP
915.BR -w ", " --readwrite
916mark array as readwrite.
52826846 917
e0d19036
NB
918.TP
919.B --zero-superblock
920If the device contains a valid md superblock, the block is
921over-written with zeros. With
922--force
923the block where the superblock would be is over-written even if it
924doesn't appear to be valid.
52826846 925
feb716e9
NB
926.TP
927.BR -t ", " --test
928When used with
929.BR --detail ,
930the exit status of
931.I mdadm
932is set to reflect the status of the device.
933
b90c0e9a
NB
934.TP
935.BR -W ", " --wait
936For each md device given, wait for any resync, recovery, or reshape
937activity to finish before returning.
938.I mdadm
939will return with success if it actually waited for every device
940listed, otherwise it will return failure.
941
e0d19036
NB
942.SH For Monitor mode:
943.TP
944.BR -m ", " --mail
945Give a mail address to send alerts to.
946
947.TP
948.BR -p ", " --program ", " --alert
949Give a program to be run whenever an event is detected.
950
773135f5
NB
951.TP
952.BR -y ", " --syslog
953Cause all events to be reported through 'syslog'. The messages have
954facility of 'daemon' and varying priorities.
955
e0d19036
NB
956.TP
957.BR -d ", " --delay
958Give a delay in seconds.
959.B mdadm
960polls the md arrays and then waits this many seconds before polling
961again. The default is 60 seconds.
962
d013a55e
NB
963.TP
964.BR -f ", " --daemonise
965Tell
966.B mdadm
967to run as a background daemon if it decides to monitor anything. This
968causes it to fork and run in the child, and to disconnect form the
969terminal. The process id of the child is written to stdout.
970This is useful with
971.B --scan
972which will only continue monitoring if a mail address or alert program
973is found in the config file.
974
b5e64645
NB
975.TP
976.BR -i ", " --pid-file
977When
978.B mdadm
979is running in daemon mode, write the pid of the daemon process to
980the specified file, instead of printing it on standard output.
981
aa88f531
NB
982.TP
983.BR -1 ", " --oneshot
984Check arrays only once. This will generate
985.B NewArray
986events and more significantly
987.B DegradedArray
a9d69660
NB
988and
989.B SparesMissing
aa88f531
NB
990events. Running
991.in +5
992.B " mdadm --monitor --scan -1"
993.in -5
994from a cron script will ensure regular notification of any degraded arrays.
995
98c6faba
NB
996.TP
997.BR -t ", " --test
998Generate a
999.B TestMessage
1000alert for every array found at startup. This alert gets mailed and
1001passed to the alert program. This can be used for testing that alert
a9d69660 1002message do get through successfully.
98c6faba 1003
e0d19036 1004.SH ASSEMBLE MODE
52826846 1005
cd29a5c8
NB
1006.HP 12
1007Usage:
9a9dab36 1008.B mdadm --assemble
5787fa49
NB
1009.I md-device options-and-component-devices...
1010.HP 12
1011Usage:
1012.B mdadm --assemble --scan
1013.I md-devices-and-options...
cd29a5c8
NB
1014.HP 12
1015Usage:
9a9dab36 1016.B mdadm --assemble --scan
cd29a5c8 1017.I options...
52826846 1018
cd29a5c8 1019.PP
52826846 1020This usage assembles one or more raid arrays from pre-existing components.
9a9dab36 1021For each array, mdadm needs to know the md device, the identity of the
e0d19036 1022array, and a number of component-devices. These can be found in a number of ways.
52826846 1023
5787fa49
NB
1024In the first usage example (without the
1025.BR --scan )
1026the first device given is the md device.
1027In the second usage example, all devices listed are treated as md
1028devices and assembly is attempted.
1029In the third (where no devices are listed) all md devices that are
1030listed in the configuration file are assembled.
52826846 1031
d013a55e
NB
1032If precisely one device is listed, but
1033.B --scan
dd0781e5 1034is not given, then
d013a55e
NB
1035.I mdadm
1036acts as though
1037.B --scan
1038was given and identify information is extracted from the configuration file.
1039
2ae555c3 1040The identity can be given with the
52826846 1041.B --uuid
cd29a5c8
NB
1042option, with the
1043.B --super-minor
5787fa49 1044option, can be found in the config file, or will be taken from the
e0d19036 1045super block on the first component-device listed on the command line.
52826846 1046
2ae555c3 1047Devices can be given on the
52826846 1048.B --assemble
5787fa49
NB
1049command line or in the config file. Only devices which have an md
1050superblock which contains the right identity will be considered for
1051any array.
52826846 1052
2ae555c3 1053The config file is only used if explicitly named with
52826846 1054.B --config
d013a55e 1055or requested with (a possibly implicit)
2ae555c3 1056.B --scan.
52826846 1057In the later case,
9a9dab36 1058.B /etc/mdadm.conf
52826846
NB
1059is used.
1060
2ae555c3 1061If
52826846 1062.B --scan
cd29a5c8
NB
1063is not given, then the config file will only be used to find the
1064identity of md arrays.
52826846 1065
2d465520 1066Normally the array will be started after it is assembled. However if
cd29a5c8 1067.B --scan
2d465520 1068is not given and insufficient drives were listed to start a complete
cd29a5c8
NB
1069(non-degraded) array, then the array is not started (to guard against
1070usage errors). To insist that the array be started in this case (as
1a7dfc35 1071may work for RAID1, 4, 5, 6, or 10), give the
cd29a5c8
NB
1072.B --run
1073flag.
52826846 1074
75723446
NB
1075If the md device does not exist, then it will be created providing the
1076intent is clear. i.e. the name must be in a standard form, or the
1077.I --auto
1078option must be given to clarify how and whether the device should be
1079created.
dd0781e5
NB
1080
1081This can be useful for handling partitioned devices (which don't have
1082a stable device number - it can change after a reboot) and when using
1083"udev" to manage your
1084.B /dev
1085tree (udev cannot handle md devices because of the unusual device
1086initialisation conventions).
1087
1088If the option to "auto" is "mdp" or "part" or (on the command line
1089only) "p", then mdadm will create a partitionable array, using the
2ae555c3 1090first free one that is not in use, and does not already have an entry
dd0781e5
NB
1091in /dev (apart from numeric /dev/md* entries).
1092
1093If the option to "auto" is "yes" or "md" or (on the command line)
1094nothing, then mdadm will create a traditional, non-partitionable md
1095array.
1096
1097It is expected that the "auto" functionality will be used to create
1098device entries with meaningful names such as "/dev/md/home" or
1099"/dev/md/root", rather than names based on the numerical array number.
1100
1101When using this option to create a partitionable array, the device
1102files for the first 4 partitions are also created. If a different
1103number is required it can be simply appended to the auto option.
1104e.g. "auto=part8". Partition names are created by appending a digit
a9d69660 1105string to the device name, with an intervening "p" if the device name
dd0781e5
NB
1106ends with a digit.
1107
1108The
1109.B --auto
1110option is also available in Build and Create modes. As those modes do
1111not use a config file, the "auto=" config option does not apply to
1112these modes.
52826846 1113
41a3b72a
NB
1114.SS Auto Assembly
1115When
1116.B --assemble
1117is used with
1118.B --scan
1119and no devices are listed,
1120.I mdadm
1121will first attempt to assemble all the arrays listed in the config
1122file.
1123
1124If a
1125.B homehost
1126has been specified (either in the config file or on the command line),
1127.I mdadm
1128will look further for possible arrays and will try to assemble
1129anything that it finds which is tagged as belonging to the given
1130homehost. This is the only situation where
1131.I mdadm
1132will assemble arrays without being given specific device name or
1133identify information for the array.
1134
1135If
1136.I mdadm
1137finds a consistent set of devices that look like they should comprise
1138an array, and if the superblock is tagged as belonging to the given
1139home host, it will automatically choose a device name and try to
1140assemble the array. If the array uses version-0.90 metadata, then the
1141.B minor
1142number as recorded in the superblock is used to create a name in
1143.B /dev/md/
1144so for example
1145.BR /dev/md/3 .
1146If the array uses version-1 metadata, then the
1147.B name
1148from the superblock is used to similarly create a name in
1149.BR /dev/md .
1150The name will have any 'host' prefix stripped first.
1151
1152If
1153.I mdadm
1154cannot find any array for the given host at all, and if
1155.B --auto-update-homehost
1156is given, then
1157.I mdadm
1158will search again for any array (not just an array created for this
1159host) and will assemble each assuming
1160.IR --update=homehost .
1161This will change the host tag in the superblock so that on the next run,
1162these arrays will be found without the second pass. The intention of
1163this feature is to support transitioning a set of md arrays to using
1164homehost tagging.
1165
1166The reason for requiring arrays to be tagged with the homehost for
1167auto assembly is to guard against problems that can arise when moving
1168devices from one host to another.
1169
cd29a5c8 1170.SH BUILD MODE
52826846 1171
cd29a5c8
NB
1172.HP 12
1173Usage:
9a9dab36 1174.B mdadm --build
cd29a5c8
NB
1175.I device
1176.BI --chunk= X
1177.BI --level= Y
b83d95f3 1178.BI --raid-devices= Z
cd29a5c8
NB
1179.I devices
1180
1181.PP
2ae555c3 1182This usage is similar to
cd29a5c8 1183.BR --create .
a9d69660 1184The difference is that it creates an array without a superblock. With
cd29a5c8 1185these arrays there is no difference between initially creating the array and
52826846
NB
1186subsequently assembling the array, except that hopefully there is useful
1187data there in the second case.
1188
a9d69660
NB
1189The level may raid0, linear, multipath, or faulty, or one of their
1190synonyms. All devices must be listed and the array will be started
1191once complete.
cd29a5c8
NB
1192
1193.SH CREATE MODE
1194
1195.HP 12
1196Usage:
9a9dab36 1197.B mdadm --create
cd29a5c8
NB
1198.I device
1199.BI --chunk= X
1200.BI --level= Y
1201.br
b83d95f3 1202.BI --raid-devices= Z
cd29a5c8
NB
1203.I devices
1204
1205.PP
1206This usage will initialise a new md array, associate some devices with
1207it, and activate the array.
1208
a9d69660 1209If the
dd0781e5
NB
1210.B --auto
1211option is given (as described in more detail in the section on
1212Assemble mode), then the md device will be created with a suitable
1213device number if necessary.
1214
cd29a5c8 1215As devices are added, they are checked to see if they contain raid
2d465520 1216superblocks or filesystems. They are also checked to see if the variance in
cd29a5c8
NB
1217device size exceeds 1%.
1218
1219If any discrepancy is found, the array will not automatically be run, though
2ae555c3 1220the presence of a
cd29a5c8
NB
1221.B --run
1222can override this caution.
1223
2d465520 1224To create a "degraded" array in which some devices are missing, simply
d013a55e 1225give the word "\fBmissing\fP"
2d465520
NB
1226in place of a device name. This will cause
1227.B mdadm
1228to leave the corresponding slot in the array empty.
1229For a RAID4 or RAID5 array at most one slot can be
98c6faba 1230"\fBmissing\fP"; for a RAID6 array at most two slots.
2d465520
NB
1231For a RAID1 array, only one real device needs to be given. All of the
1232others can be
d013a55e 1233"\fBmissing\fP".
2d465520 1234
feb716e9
NB
1235When creating a RAID5 array,
1236.B mdadm
1237will automatically create a degraded array with an extra spare drive.
1238This is because building the spare into a degraded array is in general faster than resyncing
1239the parity on a non-degraded, but not clean, array. This feature can
1240be over-ridden with the
b5e64645 1241.I --force
feb716e9
NB
1242option.
1243
41a3b72a
NB
1244When creating an array with version-1 metadata a name for the host is
1245required.
1246If this is not given with the
1247.B --name
1248option,
1249.I mdadm
1250will chose a name based on the last component of the name of the
1251device being created. So if
1252.B /dev/md3
1253is being created, then the name
1254.B 3
1255will be chosen.
1256If
1257.B /dev/md/home
1258is being created, then the name
1259.B home
1260will be used.
1261
3d3dd91e
NB
1262A new array will normally get a randomly assigned 128bit UUID which is
1263very likely to be unique. If you have a specific need, you can choose
1264a UUID for the array by giving the
1265.B --uuid=
1266option. Be warned that creating two arrays with the same UUID is a
1267recipe for disaster. Also, using
1268.B --uuid=
1269when creating a v0.90 array will silently override any
1270.B --homehost=
1271setting.
2ae555c3 1272'''If the
cd29a5c8 1273'''.B --size
e0d19036 1274'''option is given, it is not necessary to list any component-devices in this command.
cd29a5c8 1275'''They can be added later, before a
2ae555c3
NB
1276'''.B --run.
1277'''If no
cd29a5c8
NB
1278'''.B --size
1279'''is given, the apparent size of the smallest drive given is used.
1280
1281The General Management options that are valid with --create are:
1282.TP
1283.B --run
dd0781e5 1284insist on running the array even if some devices look like they might
cd29a5c8
NB
1285be in use.
1286
1287.TP
1288.B --readonly
1289start the array readonly - not supported yet.
52826846 1290
2ae555c3 1291
e0d19036 1292.SH MANAGE MODE
cd29a5c8
NB
1293.HP 12
1294Usage:
e0d19036
NB
1295.B mdadm
1296.I device
1297.I options... devices...
cd29a5c8
NB
1298.PP
1299
e0d19036
NB
1300This usage will allow individual devices in an array to be failed,
1301removed or added. It is possible to perform multiple operations with
1302on command. For example:
1303.br
5787fa49 1304.B " mdadm /dev/md0 -f /dev/hda1 -r /dev/hda1 -a /dev/hda1"
e0d19036
NB
1305.br
1306will firstly mark
1307.B /dev/hda1
1308as faulty in
1309.B /dev/md0
1310and will then remove it from the array and finally add it back
2d465520 1311in as a spare. However only one md array can be affected by a single
2ae555c3 1312command.
e0d19036
NB
1313
1314.SH MISC MODE
1315.HP 12
1316Usage:
9a9dab36 1317.B mdadm
e0d19036
NB
1318.I options ...
1319.I devices ...
1320.PP
cd29a5c8 1321
b5e64645 1322MISC mode includes a number of distinct operations that
e0d19036
NB
1323operate on distinct devices. The operations are:
1324.TP
1325--query
1326The device is examined to see if it is
1327(1) an active md array, or
1328(2) a component of an md array.
1329The information discovered is reported.
1330
1331.TP
1332--detail
2d465520
NB
1333The device should be an active md device.
1334.B mdadm
1335will display a detailed description of the array.
cd29a5c8 1336.B --brief
2d465520
NB
1337or
1338.B --scan
1339will cause the output to be less detailed and the format to be
e0d19036 1340suitable for inclusion in
9a9dab36 1341.BR /etc/mdadm.conf .
feb716e9
NB
1342The exit status of
1343.I mdadm
1344will normally be 0 unless
1345.I mdadm
1346failed to get useful information about the device(s). However if the
1347.B --test
1348option is given, then the exit status will be:
1349.RS
1350.TP
13510
1352The array is functioning normally.
1353.TP
13541
1355The array has at least one failed device.
1356.TP
13572
1358The array has multiple failed devices and hence is unusable (raid4 or
1359raid5).
1360.TP
13614
1362There was an error while trying to get information about the device.
1363.RE
cd29a5c8 1364
e0d19036
NB
1365.TP
1366--examine
2d465520
NB
1367The device should be a component of an md array.
1368.B mdadm
1369will read the md superblock of the device and display the contents.
e0d19036
NB
1370If
1371.B --brief
1372is given, or
1373.B --scan
1374then multiple devices that are components of the one array
1375are grouped together and reported in a single entry suitable
1376for inclusion in
1377.BR /etc/mdadm.conf .
1378
2d465520 1379Having
e0d19036
NB
1380.B --scan
1381without listing any devices will cause all devices listed in the
1382config file to be examined.
1383
1384.TP
1385--stop
98c6faba
NB
1386The devices should be active md arrays which will be deactivated, as
1387long as they are not currently in use.
e0d19036
NB
1388
1389.TP
1390--run
1391This will fully activate a partially assembled md array.
1392
1393.TP
1394--readonly
1395This will mark an active array as read-only, providing that it is
1396not currently being used.
1397
1398.TP
1399--readwrite
1400This will change a
1401.B readonly
1402array back to being read/write.
1403
2d465520
NB
1404.TP
1405--scan
1406For all operations except
1407.BR --examine ,
1408.B --scan
1409will cause the operation to be applied to all arrays listed in
1410.BR /proc/mdstat .
1411For
1412.BR --examine,
1413.B --scan
1414causes all devices listed in the config file to be examined.
1415
1416
e0d19036
NB
1417.SH MONITOR MODE
1418
cd29a5c8
NB
1419.HP 12
1420Usage:
e0d19036
NB
1421.B mdadm --monitor
1422.I options... devices...
1423
cd29a5c8 1424.PP
e0d19036
NB
1425This usage causes
1426.B mdadm
1427to periodically poll a number of md arrays and to report on any events
1428noticed.
1429.B mdadm
1430will never exit once it decides that there are arrays to be checked,
1431so it should normally be run in the background.
1432
2d465520
NB
1433As well as reporting events,
1434.B mdadm
1435may move a spare drive from one array to another if they are in the
1436same
1437.B spare-group
a9d69660 1438and if the destination array has a failed drive but no spares.
2d465520 1439
e0d19036
NB
1440If any devices are listed on the command line,
1441.B mdadm
1442will only monitor those devices. Otherwise all arrays listed in the
1443configuration file will be monitored. Further, if
1444.B --scan
1445is given, then any other md devices that appear in
1446.B /proc/mdstat
1447will also be monitored.
1448
1449The result of monitoring the arrays is the generation of events.
bd526cee 1450These events are passed to a separate program (if specified) and may
2d465520 1451be mailed to a given E-mail address.
e0d19036 1452
bd526cee 1453When passing event to program, the program is run once for each event
2ae555c3 1454and is given 2 or 3 command-line arguments. The first is the
bd526cee
NB
1455name of the event (see below). The second is the name of the
1456md device which is affected, and the third is the name of a related
1457device if relevant, such as a component device that has failed.
cd29a5c8
NB
1458
1459If
1460.B --scan
e0d19036
NB
1461is given, then a program or an E-mail address must be specified on the
1462command line or in the config file. If neither are available, then
1463.B mdadm
1464will not monitor anything.
1465Without
cd29a5c8 1466.B --scan
e0d19036 1467.B mdadm
2d465520 1468will continue monitoring as long as something was found to monitor. If
e0d19036
NB
1469no program or email is given, then each event is reported to
1470.BR stdout .
cd29a5c8 1471
e0d19036
NB
1472The different events are:
1473
1474.RS 4
1475.TP
1476.B DeviceDisappeared
2d465520 1477An md array which previously was configured appears to no longer be
773135f5 1478configured. (syslog priority: Critical)
e0d19036 1479
b8f72a62
NB
1480If
1481.I mdadm
1482was told to monitor an array which is RAID0 or Linear, then it will
1483report
1484.B DeviceDisappeared
1485with the extra information
1486.BR Wrong-Level .
1487This is because RAID0 and Linear do not support the device-failed,
1488hot-spare and resync operations which are monitored.
1489
e0d19036
NB
1490.TP
1491.B RebuildStarted
773135f5 1492An md array started reconstruction. (syslog priority: Warning)
e0d19036
NB
1493
1494.TP
1495.BI Rebuild NN
1496Where
1497.I NN
1498is 20, 40, 60, or 80, this indicates that rebuild has passed that many
773135f5 1499percentage of the total. (syslog priority: Warning)
e0d19036 1500
98c6faba
NB
1501.TP
1502.B RebuildFinished
1503An md array that was rebuilding, isn't any more, either because it
773135f5 1504finished normally or was aborted. (syslog priority: Warning)
98c6faba 1505
e0d19036
NB
1506.TP
1507.B Fail
773135f5
NB
1508An active component device of an array has been marked as
1509faulty. (syslog priority: Critical)
e0d19036
NB
1510
1511.TP
1512.B FailSpare
1513A spare component device which was being rebuilt to replace a faulty
773135f5 1514device has failed. (syslog priority: Critial)
e0d19036
NB
1515
1516.TP
1517.B SpareActive
1518A spare component device which was being rebuilt to replace a faulty
98b24a2a 1519device has been successfully rebuilt and has been made active.
773135f5 1520(syslog priority: Info)
e0d19036
NB
1521
1522.TP
1523.B NewArray
1524A new md array has been detected in the
1525.B /proc/mdstat
773135f5 1526file. (syslog priority: Info)
e0d19036 1527
aa88f531
NB
1528.TP
1529.B DegradedArray
1530A newly noticed array appears to be degraded. This message is not
1531generated when
1532.I mdadm
1533notices a drive failure which causes degradation, but only when
1534.I mdadm
1535notices that an array is degraded when it first sees the array.
773135f5 1536(syslog priority: Critial)
aa88f531 1537
e0d19036
NB
1538.TP
1539.B MoveSpare
1540A spare drive has been moved from one array in a
1541.B spare-group
1542to another to allow a failed drive to be replaced.
773135f5 1543(syslog priority: Info)
e0d19036 1544
b8f72a62
NB
1545.TP
1546.B SparesMissing
1547If
1548.I mdadm
1549has been told, via the config file, that an array should have a certain
1550number of spare devices, and
1551.I mdadm
1552detects that it has fewer that this number when it first sees the
1553array, it will report a
1554.B SparesMissing
1555message.
d1732eeb 1556(syslog priority: Warning)
b8f72a62 1557
98c6faba
NB
1558.TP
1559.B TestMessage
1560An array was found at startup, and the
1561.B --test
1562flag was given.
773135f5 1563(syslog priority: Info)
e0d19036
NB
1564.RE
1565
1566Only
98c6faba
NB
1567.B Fail ,
1568.B FailSpare ,
1569.B DegradedArray ,
d1732eeb 1570.B SparesMissing ,
e0d19036 1571and
98c6faba 1572.B TestMessage
e0d19036
NB
1573cause Email to be sent. All events cause the program to be run.
1574The program is run with two or three arguments, they being the event
1575name, the array device and possibly a second device.
1576
1577Each event has an associated array device (e.g.
1578.BR /dev/md1 )
1579and possibly a second device. For
1580.BR Fail ,
1581.BR FailSpare ,
1582and
1583.B SpareActive
1584the second device is the relevant component device.
1585For
1586.B MoveSpare
1587the second device is the array that the spare was moved from.
1588
1589For
1590.B mdadm
1591to move spares from one array to another, the different arrays need to
1592be labelled with the same
1593.B spare-group
1594in the configuration file. The
1595.B spare-group
1596name can be any string. It is only necessary that different spare
2d465520 1597groups use different names.
e0d19036
NB
1598
1599When
9a9dab36 1600.B mdadm
e0d19036
NB
1601detects that an array which is in a spare group has fewer active
1602devices than necessary for the complete array, and has no spare
1603devices, it will look for another array in the same spare group that
1604has a full complement of working drive and a spare. It will then
1605attempt to remove the spare from the second drive and add it to the
1606first.
1607If the removal succeeds but the adding fails, then it is added back to
1608the original array.
1609
dd0781e5
NB
1610.SH GROW MODE
1611The GROW mode is used for changing the size or shape of an active
1612array.
1613For this to work, the kernel must support the necessary change.
2ae555c3 1614Various types of growth are being added during 2.6 development,
dd0781e5
NB
1615including restructuring a raid5 array to have more active devices.
1616
dfd4d8ee
NB
1617Currently the only support available is to
1618.IP \(bu 4
1619change the "size" attribute
1620for RAID1, RAID5 and RAID6.
1621.IP \(bu 4
2ae555c3 1622increase the "raid-disks" attribute of RAID1 and RAID5.
dfd4d8ee 1623.IP \(bu 4
2ae555c3
NB
1624add a write-intent bitmap to any array which support these bitmaps, or
1625remove a write-intent bitmap from such an array.
dfd4d8ee 1626.PP
dd0781e5 1627
2ae555c3 1628.SS SIZE CHANGES
fe80f49b 1629Normally when an array is built the "size" it taken from the smallest
dd0781e5
NB
1630of the drives. If all the small drives in an arrays are, one at a
1631time, removed and replaced with larger drives, then you could have an
1632array of large drives with only a small amount used. In this
1633situation, changing the "size" with "GROW" mode will allow the extra
1634space to start being used. If the size is increased in this way, a
1635"resync" process will start to make sure the new parts of the array
1636are synchronised.
1637
1638Note that when an array changes size, any filesystem that may be
1639stored in the array will not automatically grow to use the space. The
1640filesystem will need to be explicitly told to use the extra space.
1641
2ae555c3
NB
1642.SS RAID-DEVICES CHANGES
1643
dd0781e5
NB
1644A RAID1 array can work with any number of devices from 1 upwards
1645(though 1 is not very useful). There may be times which you want to
1646increase or decrease the number of active devices. Note that this is
1647different to hot-add or hot-remove which changes the number of
1648inactive devices.
1649
1650When reducing the number of devices in a RAID1 array, the slots which
1651are to be removed from the array must already be vacant. That is, the
1652devices that which were in those slots must be failed and removed.
1653
1654When the number of devices is increased, any hot spares that are
a9d69660 1655present will be activated immediately.
dd0781e5 1656
2ae555c3
NB
1657Increasing the number of active devices in a RAID5 is much more
1658effort. Every block in the array will need to be read and written
1659back to a new location. From 2.6.17, the Linux Kernel is able to do
1660this safely, including restart and interrupted "reshape".
1661
1662When relocating the first few stripes on a raid5, it is not possible
1663to keep the data on disk completely consistent and crash-proof. To
1664provide the required safety, mdadm disables writes to the array while
1665this "critical section" is reshaped, and takes a backup of the data
1666that is in that section. This backup is normally stored in any spare
1667devices that the array has, however it can also be stored in a
1668separate file specified with the
1669.B --backup-file
1670option. If this option is used, and the system does crash during the
1671critical period, the same file must be passed to
1672.B --assemble
1673to restore the backup and reassemble the array.
1674
1675.SS BITMAP CHANGES
1676
1677A write-intent bitmap can be added to, or removed from, an active
1678array. Either internal bitmaps, or bitmaps stored in a separate file
fe80f49b
NB
1679can be added. Note that if you add a bitmap stored in a file which is
1680in a filesystem that is on the raid array being affected, the system
1681will deadlock. The bitmap must be on a separate filesystem.
1682
2d465520
NB
1683.SH EXAMPLES
1684
5787fa49 1685.B " mdadm --query /dev/name-of-device"
2d465520 1686.br
5787fa49
NB
1687This will find out if a given device is a raid array, or is part of
1688one, and will provide brief information about the device.
2d465520 1689
5787fa49 1690.B " mdadm --assemble --scan"
2d465520 1691.br
2ae555c3 1692This will assemble and start all arrays listed in the standard config file
5787fa49 1693file. This command will typically go in a system startup file.
2d465520 1694
2d465520 1695.B " mdadm --stop --scan"
5787fa49
NB
1696.br
1697This will shut down all array that can be shut down (i.e. are not
19f8b8fc 1698currently in use). This will typically go in a system shutdown script.
2d465520 1699
5787fa49 1700.B " mdadm --follow --scan --delay=120"
2d465520 1701.br
5787fa49
NB
1702If (and only if) there is an Email address or program given in the
1703standard config file, then
1704monitor the status of all arrays listed in that file by
1705polling them ever 2 minutes.
2d465520 1706
5787fa49 1707.B " mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[ac]1"
2d465520 1708.br
5787fa49 1709Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
2d465520 1710
2d465520
NB
1711.br
1712.B " echo 'DEVICE /dev/hd*[0-9] /dev/sd*[0-9]' > mdadm.conf"
1713.br
1714.B " mdadm --detail --scan >> mdadm.conf"
1715.br
5787fa49
NB
1716This will create a prototype config file that describes currently
1717active arrays that are known to be made from partitions of IDE or SCSI drives.
2d465520
NB
1718This file should be reviewed before being used as it may
1719contain unwanted detail.
1720
2d465520
NB
1721.B " echo 'DEVICE /dev/hd[a-z] /dev/sd*[a-z]' > mdadm.conf"
1722.br
5787fa49
NB
1723.B " mdadm --examine --scan --config=mdadm.conf >> mdadm.conf"
1724.ber
2ae555c3 1725This will find what arrays could be assembled from existing IDE and
5787fa49
NB
1726SCSI whole drives (not partitions) and store the information is the
1727format of a config file.
2d465520
NB
1728This file is very likely to contain unwanted detail, particularly
1729the
1730.B devices=
5787fa49
NB
1731entries. It should be reviewed and edited before being used as an
1732actual config file.
2d465520 1733
5787fa49 1734.B " mdadm --examine --brief --scan --config=partitions"
2d465520 1735.br
5787fa49
NB
1736.B " mdadm -Ebsc partitions"
1737.br
1738Create a list of devices by reading
1739.BR /proc/partitions ,
1740scan these for RAID superblocks, and printout a brief listing of all
1741that was found.
2d465520 1742
5787fa49 1743.B " mdadm -Ac partitions -m 0 /dev/md0"
2d465520 1744.br
5787fa49
NB
1745Scan all partitions and devices listed in
1746.BR /proc/partitions
1747and assemble
1748.B /dev/md0
1749out of all such devices with a RAID superblock with a minor number of 0.
2d465520 1750
d013a55e
NB
1751.B " mdadm --monitor --scan --daemonise > /var/run/mdadm"
1752.br
1753If config file contains a mail address or alert program, run mdadm in
1754the background in monitor mode monitoring all md devices. Also write
1755pid of mdadm daemon to
1756.BR /var/run/mdadm .
1757
5787fa49 1758.B " mdadm --create --help"
2d465520 1759.br
2ae555c3 1760Provide help about the Create mode.
2d465520 1761
5787fa49
NB
1762.B " mdadm --config --help"
1763.br
1764Provide help about the format of the config file.
2d465520 1765
5787fa49
NB
1766.B " mdadm --help"
1767.br
1768Provide general help.
cd29a5c8 1769
cd29a5c8
NB
1770
1771.SH FILES
1772
1773.SS /proc/mdstat
1774
2ae555c3
NB
1775If you're using the
1776.B /proc
cd29a5c8
NB
1777filesystem,
1778.B /proc/mdstat
2d465520
NB
1779lists all active md devices with information about them.
1780.B mdadm
1781uses this to find arrays when
1782.B --scan
1783is given in Misc mode, and to monitor array reconstruction
1784on Monitor mode.
1785
cd29a5c8 1786
9a9dab36 1787.SS /etc/mdadm.conf
cd29a5c8 1788
11a3e71d
NB
1789The config file lists which devices may be scanned to see if
1790they contain MD super block, and gives identifying information
1791(e.g. UUID) about known MD arrays. See
1792.BR mdadm.conf (5)
1793for more details.
cd29a5c8 1794
48f7b27a
NB
1795.SH DEVICE NAMES
1796
1797While entries in the /dev directory can have any format you like,
1798.I mdadm
1799has an understanding of 'standard' formats which it uses to guide its
1800behaviour when creating device files via the
1801.I --auto
1802option.
1803
1804The standard names for non-partitioned arrays (the only sort of md
1805array available in 2.4 and earlier) either of
1806.IP
1807/dev/mdNN
1808.br
1809/dev/md/NN
1810.PP
1811where NN is a number.
1812The standard names for partitionable arrays (as available from 2.6
1813onwards) is one of
1814.IP
1815/dev/md/dNN
1816.br
1817/dev/md_dNN
1818.PP
1819Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
52826846 1820
2d465520
NB
1821.SH NOTE
1822.B mdadm
1823was previously known as
1824.BR mdctl .
a9d69660
NB
1825.P
1826.B mdadm
1827is completely separate from the
1828.B raidtools
1829package, and does not use the
1830.I /etc/raidtab
1831configuration file at all.
1832
52826846 1833.SH SEE ALSO
cd29a5c8
NB
1834For information on the various levels of
1835RAID, check out:
1836
1837.IP
1838.UR http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1839http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1840.UE
a9d69660
NB
1841'''.PP
1842'''for new releases of the RAID driver check out:
1843'''
1844'''.IP
1845'''.UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1846'''ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1847'''.UE
1848'''.PP
1849'''or
1850'''.IP
1851'''.UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1852'''http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1853'''.UE
cd29a5c8 1854.PP
2ae555c3 1855The latest version of
a9d69660
NB
1856.I mdadm
1857should always be available from
cd29a5c8 1858.IP
a9d69660
NB
1859.UR http://www.kernel.org/pub/linux/utils/raid/mdadm/
1860http://www.kernel.org/pub/linux/utils/raid/mdadm/
cd29a5c8
NB
1861.UE
1862.PP
a9d69660
NB
1863.IR mdadm.conf (5),
1864.IR md (4).
56eb10c0 1865.PP
52826846
NB
1866.IR raidtab (5),
1867.IR raid0run (8),
1868.IR raidstop (8),
a9d69660 1869.IR mkraid (8).