]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdadm.8
Document --size=max option for --grow
[thirdparty/mdadm.git] / mdadm.8
CommitLineData
52826846 1.\" -*- nroff -*-
e793c2e5 2.TH MDADM 8 "" v2.0-devel-1
52826846 3.SH NAME
9a9dab36 4mdadm \- manage MD devices
cd29a5c8
NB
5.I aka
6Linux Software Raid.
7
52826846
NB
8.SH SYNOPSIS
9
e0d19036 10.BI mdadm " [mode] <raiddevice> [options] <component-devices>"
52826846
NB
11
12.SH DESCRIPTION
13RAID devices are virtual devices created from two or more
cd29a5c8
NB
14real block devices. This allows multiple devices (typically disk
15drives or partitions there-of) to be combined into a single device to
16hold (for example) a single filesystem.
2d465520 17Some RAID levels include redundancy and so can survive some degree of
cd29a5c8
NB
18device failure.
19
2d465520
NB
20Linux Software RAID devices are implemented through the md (Multiple
21Devices) device driver.
cd29a5c8
NB
22
23Currently, Linux supports
24.B LINEAR
25md devices,
26.B RAID0
27(striping),
28.B RAID1
29(mirroring),
d013a55e
NB
30.BR RAID4 ,
31.BR RAID5 ,
98c6faba 32.BR RAID6 ,
b5e64645 33.BR MULTIPATH ,
cd29a5c8 34and
b5e64645 35.BR FAULTY .
d013a55e
NB
36
37.B MULTIPATH is not a Software RAID mechanism, but does involve
38multiple devices. For
39.B MULTIPATH
40each device is a path to one common physical storage device.
41
b5e64645
NB
42.B FAULTY is also no true RAID, and it only involves one device. It
43provides a layer over a true device that can be used to inject faults.
52826846 44
9a9dab36 45.B mdadm
11a3e71d
NB
46is a program that can be used to create, manage, and monitor
47MD devices. As
cd29a5c8
NB
48such it provides a similar set of functionality to the
49.B raidtools
50packages.
51The key differences between
9a9dab36 52.B mdadm
cd29a5c8
NB
53and
54.B raidtools
55are:
56.IP \(bu 4
9a9dab36 57.B mdadm
cd29a5c8
NB
58is a single program and not a collection of programs.
59.IP \(bu 4
9a9dab36 60.B mdadm
cd29a5c8 61can perform (almost) all of its functions without having a
5787fa49 62configuration file and does not use one by default. Also
2d465520
NB
63.B mdadm
64helps with management of the configuration
cd29a5c8
NB
65file.
66.IP \(bu 4
9a9dab36 67.B mdadm
e0d19036 68can provide information about your arrays (through Query, Detail, and Examine)
cd29a5c8
NB
69that
70.B raidtools
71cannot.
5787fa49
NB
72.P
73.I mdadm
74does not use
75.IR /etc/raidtab ,
76the
77.B raidtools
78configuration file, at all. It has a different configuration file
79with a different format and an different purpose.
52826846
NB
80
81.SH MODES
dd0781e5 82mdadm has 7 major modes of operation:
cd29a5c8
NB
83.TP
84.B Assemble
85Assemble the parts of a previously created
52826846
NB
86array into an active array. Components can be explicitly given
87or can be searched for.
9a9dab36 88.B mdadm
cd29a5c8
NB
89checks that the components
90do form a bona fide array, and can, on request, fiddle superblock
91information so as to assemble a faulty array.
92
93.TP
94.B Build
570c0542 95Build an array without per-device superblocks.
cd29a5c8
NB
96
97.TP
98.B Create
99Create a new array with per-device superblocks.
100'''It can progress
101'''in several step create-add-add-run or it can all happen with one command.
102
103.TP
e0d19036
NB
104.B Manage
105This is for doing things to specific components of an array such as
106adding new spares and removing faulty devices.
cd29a5c8
NB
107
108.TP
e0d19036
NB
109.B Misc
110This mode allows operations on independent devices such as examine MD
111superblocks, erasing old superblocks and stopping active arrays.
cd29a5c8
NB
112
113.TP
114.B "Follow or Monitor"
5787fa49 115Monitor one or more md devices and act on any state changes. This is
98c6faba
NB
116only meaningful for raid1, 4, 5, 6 or multipath arrays as
117only these have interesting state. raid0 or linear never have
118missing, spare, or failed drives, so there is nothing to monitor.
5787fa49 119
dd0781e5
NB
120.TP
121.B "Grow"
122Grow (or shrink) an array, or otherwise reshape it in some way.
123Currently supported growth options including changing the active size
124of componenet devices in RAID level 1/4/5/6 and changing the number of
125active devices in RAID1.
cd29a5c8 126
52826846
NB
127.SH OPTIONS
128
129Available options are:
130
cd29a5c8
NB
131.TP
132.BR -A ", " --assemble
2d465520 133Assemble a pre-existing array.
52826846 134
cd29a5c8
NB
135.TP
136.BR -B ", " --build
137Build a legacy array without superblocks.
52826846 138
cd29a5c8
NB
139.TP
140.BR -C ", " --create
141Create a new array.
52826846 142
e0d19036
NB
143.TP
144.BR -Q ", " --query
145Examine a device to see
146(1) if it is an md device and (2) if it is a component of an md
147array.
148Information about what is discovered is presented.
149
cd29a5c8
NB
150.TP
151.BR -D ", " --detail
152Print detail of one or more md devices.
52826846 153
cd29a5c8
NB
154.TP
155.BR -E ", " --examine
156Print content of md superblock on device(s).
52826846 157
cd29a5c8
NB
158.TP
159.BR -F ", " --follow ", " --monitor
160Select
161.B Monitor
162mode.
52826846 163
dd0781e5
NB
164.TP
165.BR -G ", " --grow
166Change the size or shape of an active array.
167
e793c2e5
NB
168.TP
169.BR -X ", " --examine-bitmap
170Report information about a bitmap file.
171
cd29a5c8
NB
172.TP
173.BR -h ", " --help
56eedc1a
NB
174Display help message or, after above option, mode specific help
175message.
176
177.TP
178.B --help-options
179Display more detailed help about command line parsing and some commonly
180used options.
52826846 181
cd29a5c8
NB
182.TP
183.BR -V ", " --version
9a9dab36 184Print version information for mdadm.
52826846 185
cd29a5c8
NB
186.TP
187.BR -v ", " --verbose
188Be more verbose about what is happening.
52826846 189
cd29a5c8
NB
190.TP
191.BR -b ", " --brief
192Be less verbose. This is used with
193.B --detail
194and
195.BR --examine .
52826846 196
e793c2e5
NB
197.TP
198.BR -b ", " --bitmap=
199Give the name of a bitmap file to use with this array. Can be used
200with --create (file should not exist) or --assemble (file should
201exist).
202
203.TP
204.BR --bitmap-chunk=
205Set the Chunksize of the bitmap. Each bit corresponds to that many
206Kilobytes of storage. Default is 4.
207
208
e0d19036
NB
209.TP
210.BR -f ", " --force
211Be more forceful about certain operations. See the various modes of
212the exact meaning of this option in different contexts.
213
214.TP
215.BR -c ", " --config=
216Specify the config file. Default is
217.BR /etc/mdadm.conf .
5787fa49
NB
218If the config file given is
219.B partitions
220then nothing will be read, but
221.I mdadm
222will act as though the config file contained exactly
223.B "DEVICE partitions"
224and will read
225.B /proc/partitions
226to find a list of devices to scan.
d013a55e
NB
227If the word
228.B none
229is given for the config file, then
230.I mdadm
231will act as though the config file were empty.
e0d19036
NB
232
233.TP
234.BR -s ", " --scan
235scan config file or
236.B /proc/mdstat
237for missing information.
238In general, this option gives
239.B mdadm
240permission to get any missing information, like component devices,
241array devices, array identities, and alert destination from the
242configuration file:
243.BR /etc/mdadm.conf .
244One exception is MISC mode when using
245.B --detail
246or
247.B --stop
248in which case
249.B --scan
250says to get a list of array devices from
251.BR /proc/mdstat .
252
570c0542
NB
253.TP
254.B -e ", " --metadata=
255Declare the style of superblock (raid metadata) to be used. The
256default is 0.90 for --create, and to guess for other operations.
257
258Options are:
259.RS
260.IP "0, 0.90, default"
261Use the original 0.90 format superblock. This format limits arrays to
26228 componenet devices and limits component devices of levels 1 and
263greater to 2 terabytes.
264.IP "1, 1.0, 1.1, 1.2"
265Use the new version-1 format superblock. This has few restrictions.
266The different subversion store the superblock at different locations
267on the device, either at the end (for 1.0), at the start (for 1.1) or
2684K from the start (for 1.2).
269.RE
270
cd29a5c8 271.SH For create or build:
52826846 272
cd29a5c8
NB
273.TP
274.BR -c ", " --chunk=
275Specify chunk size of kibibytes. The default is 64.
52826846 276
cd29a5c8
NB
277.TP
278.BR --rounding=
279Specify rounding factor for linear array (==chunk size)
52826846 280
cd29a5c8
NB
281.TP
282.BR -l ", " --level=
aa88f531
NB
283Set raid level. When used with
284.IR --create ,
98c6faba 285options are: linear, raid0, 0, stripe, raid1, 1, mirror, raid4, 4,
b5e64645 286raid5, 5, raid6, 6, multipath, mp, fautly. Obviously some of these are synonymous.
aa88f531
NB
287
288When used with
289.IR --build ,
290only linear, raid0, 0, stripe are valid.
52826846 291
cd29a5c8
NB
292.TP
293.BR -p ", " --parity=
294Set raid5 parity algorithm. Options are:
2d465520
NB
295left-asymmetric,
296left-symmetric,
297right-asymmetric,
298right-symmetric,
299la, ra, ls, rs. The default is left-symmetric.
52826846 300
b5e64645
NB
301This option is also used to set the failure mode for
302.IR faulty .
303The options are:
304write-transient,
305wt,
306read-transient,
307rt,
308write-presistent,
309wp,
310read-persistent,
311rp,
312write-all,
313read-fixable,
314rf,
315clear,
316flush,
317none.
318
319Each mode can be followed by a number which is used as a period
320between fault generation. Without a number, the fault is generated
321once on the first relevant request. With a number, the fault will be
322generated after that many request, and will continue to be generated
323every time the period elapses.
324
325Multiple failure modes can be current simultaneously by using the
326"--grow" option to set subsequent failure modes.
327
328"clear" or "none" will remove any pending or periodic failure modes,
329and "flush" will clear any persistant faults.
330
331To set the parity with "--grow", the level of the array ("faulty")
332must be specified before the fault mode is specified.
333
cd29a5c8
NB
334.TP
335.BR --layout=
336same as --parity
52826846 337
e793c2e5
NB
338.TP
339.BR -b ", " --bitmap=
340Specify a file to store a write-intent bitmap in. The file should not
341exist unless --force is also given. The same file should be provided
342when assembling the array.
343
344.TP
345.BR --bitmap-chunk=
346Specifty the chunksize for the bitmap.
347
cd29a5c8 348.TP
b83d95f3 349.BR -n ", " --raid-devices=
5787fa49
NB
350Specify the number of active devices in the array. This, plus the
351number of spare devices (see below) must equal the number of
352.I component-devices
d013a55e 353(including "\fBmissing\fP" devices)
dd0781e5
NB
354that are listed on the command line for
355.BR --create .
356Setting a value of 1 is probably
aa88f531
NB
357a mistake and so requires that
358.B --force
359be specified first. A value of 1 will then be allowed for linear,
360multipath, raid0 and raid1. It is never allowed for raid4 or raid5.
361.br
dd0781e5
NB
362This number can only be changed using
363.B --grow
364for RAID1 arrays, and only on kernels which provide necessary support.
cd29a5c8
NB
365
366.TP
b83d95f3 367.BR -x ", " --spare-devices=
5787fa49
NB
368Specify the number of spare (eXtra) devices in the initial array.
369Spares can also be added
370and removed later. The number of component devices listed
371on the command line must equal the number of raid devices plus the
372number of spare devices.
373
cd29a5c8
NB
374
375.TP
376.BR -z ", " --size=
98c6faba 377Amount (in Kibibytes) of space to use from each drive in RAID1/4/5/6.
cd29a5c8
NB
378This must be a multiple of the chunk size, and must leave about 128Kb
379of space at the end of the drive for the RAID superblock.
380If this is not specified
381(as it normally is not) the smallest drive (or partition) sets the
382size, though if there is a variance among the drives of greater than 1%, a warning is
383issued.
52826846 384
dd0781e5
NB
385This value can be set with
386.B --grow
387for RAID level 1/4/5/6. If the array was created with a size smaller
388than the currently active drives, the extra space can be accessed
389using
390.BR --grow .
779043ef
NB
391The size can be given as
392.B max
393which means to choose the largest size that fits all on all current drives.
dd0781e5
NB
394
395.TP
396.BR --assume-clean
397Tell
398.I mdadm
399that the array pre-existed and is known to be clean. This is only
400really useful for Building RAID1 array. Only use this if you really
401know what you are doing. This is currently only supported for --build.
402
403.TP
404.BR -R ", " --run
405Insist that
406.I mdadm
407run the array, even if some of the components
408appear to be active in another array or filesystem. Normally
409.I mdadm
410will ask for confirmation before including such components in an
411array. This option causes that question to be suppressed.
412
413.TP
414.BR -f ", " --force
415Insist that
416.I mdadm
417accept the geometry and layout specified without question. Normally
418.I mdadm
419will not allow creation of an array with only one device, and will try
420to create a raid5 array with one missing drive (as this makes the
421initial resync work faster). With
422.BR --force ,
423.I mdadm
424will not try to be so clever.
425
426.TP
427.BR -a ", " "--auto{=no,yes,md,mdp,part,p}{NN}"
48f7b27a
NB
428Instruct mdadm to create the device file if needed, possibly allocating
429an unused minor number. "md" causes a non-partitionable array
dd0781e5 430to be used. "mdp", "part" or "p" causes a partitionable array (2.6 and
48f7b27a
NB
431later) to be used. "yes" requires the named md device to have a
432'standard' format, and the type and minor number will be determined
433from this. See DEVICE NAMES below.
434
435The argumentment can also come immediately after
dd0781e5
NB
436"-a". e.g. "-ap".
437
438For partitionable arrays,
439.I mdadm
440will create the device file for the whole array and for the first 4
441partitions. A different number of partitions can be specified at the
442end of this option (e.g.
443.BR --auto=p7 ).
48f7b27a
NB
444If the device name ends with a digit, the partition names add a'p',
445and a number, e.g. "/dev/home1p3". If there is no
dd0781e5
NB
446trailing digit, then the partition names just have a number added,
447e.g. "/dev/scratch3".
448
48f7b27a
NB
449If the md device name is in a 'standard' format as described in DEVICE
450NAMES, then it will be created, if necessary, with the appropriate
451number based on that name. If the device name is not in one of these
452formats, then a unused minor number will be allocted. The minor
453number will be considered unused if there is no active array for that
454number, and there is no entry in /dev for that number and with a
455non-standard name.
456
52826846
NB
457.SH For assemble:
458
cd29a5c8
NB
459.TP
460.BR -u ", " --uuid=
461uuid of array to assemble. Devices which don't have this uuid are
462excluded
463
464.TP
465.BR -m ", " --super-minor=
466Minor number of device that array was created for. Devices which
467don't have this minor number are excluded. If you create an array as
2d465520 468/dev/md1, then all superblocks will contain the minor number 1, even if
cd29a5c8
NB
469the array is later assembled as /dev/md2.
470
d013a55e
NB
471Giving the literal word "dev" for
472.B --super-minor
473will cause
474.I mdadm
475to use the minor number of the md device that is being assembled.
476e.g. when assembling
477.BR /dev/md0 ,
478.M --super-minor=dev
479will look for super blocks with a minor number of 0.
480
cd29a5c8
NB
481.TP
482.BR -f ", " --force
52826846
NB
483Assemble the array even if some superblocks appear out-of-date
484
cd29a5c8
NB
485.TP
486.BR -R ", " --run
487Attempt to start the array even if fewer drives were given than are
488needed for a full array. Normally if not all drives are found and
489.B --scan
490is not used, then the array will be assembled but not started.
491With
492.B --run
493an attempt will be made to start it anyway.
52826846 494
dd0781e5
NB
495.TP
496.BR -a ", " "--auto{=no,yes,md,mdp,part}"
497See this option under Create and Build options.
498
e793c2e5
NB
499.TP
500.BR -b ", " --bitmap=
501Specify the bitmap file that was given when the array was created.
502
5787fa49
NB
503.TP
504.BR -U ", " --update=
505Update the superblock on each device while assembling the array. The
feb716e9
NB
506argument given to this flag can be one of
507.BR sparc2.2 ,
508.BR summaries ,
e5329c37 509.BR resync ,
5787fa49
NB
510or
511.BR super-minor .
512
513The
514.B sparc2.2
515option will adjust the superblock of an array what was created on a Sparc
516machine running a patched 2.2 Linux kernel. This kernel got the
517alignment of part of the superblock wrong. You can use the
518.B "--examine --sparc2.2"
519option to
520.I mdadm
521to see what effect this would have.
522
523The
524.B super-minor
525option will update the
526.B "prefered minor"
527field on each superblock to match the minor number of the array being
feb716e9 528assembled. This is not needed on 2.6 and later kernels as they make
5787fa49
NB
529this adjustment automatically.
530
e5329c37
NB
531The
532.B resync
533option will cause the array to be marked
534.I dirty
535meaning that any redundancy in the array (e.g. parity for raid5,
536copies for raid1) may be incorrect. This will cause the raid system
537to perform a "resync" pass to make sure that all redundant information
538is correct.
539
feb716e9
NB
540The
541.B summaries
542option will correct the summaries in the superblock. That is the
543counts of total, working, active, failed, and spare devices.
5787fa49 544
e0d19036 545.SH For Manage mode:
52826846 546
cd29a5c8
NB
547.TP
548.BR -a ", " --add
549'''add, or
550hotadd listed devices.
52826846 551
cd29a5c8
NB
552.TP
553.BR -r ", " --remove
2d465520 554remove listed devices. They must not be active. i.e. they should
cd29a5c8 555be failed or spare devices.
52826846 556
cd29a5c8
NB
557.TP
558.BR -f ", " --fail
559mark listed devices as faulty.
52826846 560
cd29a5c8
NB
561.TP
562.BR --set-faulty
563same as --fail.
52826846 564
5787fa49
NB
565.SH For Examine mode:
566
567.TP
568.B --sparc2.2
569In an array was created on a 2.2 Linux kernel patched with RAID
570support, the superblock will have been created incorrectly, or at
571least incompatibly with 2.4 and later kernels. Using the
572.B --sparc2.2
573flag with
574.B --examine
575will fix the superblock before displaying it. If this appears to do
576the right thing, then the array can be successfully assembled using
577.BR "--assemble --update=sparc2.2" .
578
e0d19036
NB
579.SH For Misc mode:
580
cd29a5c8
NB
581.TP
582.BR -R ", " --run
583start a partially built array.
52826846 584
cd29a5c8
NB
585.TP
586.BR -S ", " --stop
587deactivate array, releasing all resources.
52826846 588
cd29a5c8
NB
589.TP
590.BR -o ", " --readonly
591mark array as readonly.
52826846 592
cd29a5c8
NB
593.TP
594.BR -w ", " --readwrite
595mark array as readwrite.
52826846 596
e0d19036
NB
597.TP
598.B --zero-superblock
599If the device contains a valid md superblock, the block is
600over-written with zeros. With
601--force
602the block where the superblock would be is over-written even if it
603doesn't appear to be valid.
52826846 604
feb716e9
NB
605.TP
606.BR -t ", " --test
607When used with
608.BR --detail ,
609the exit status of
610.I mdadm
611is set to reflect the status of the device.
612
e0d19036
NB
613.SH For Monitor mode:
614.TP
615.BR -m ", " --mail
616Give a mail address to send alerts to.
617
618.TP
619.BR -p ", " --program ", " --alert
620Give a program to be run whenever an event is detected.
621
622.TP
623.BR -d ", " --delay
624Give a delay in seconds.
625.B mdadm
626polls the md arrays and then waits this many seconds before polling
627again. The default is 60 seconds.
628
d013a55e
NB
629.TP
630.BR -f ", " --daemonise
631Tell
632.B mdadm
633to run as a background daemon if it decides to monitor anything. This
634causes it to fork and run in the child, and to disconnect form the
635terminal. The process id of the child is written to stdout.
636This is useful with
637.B --scan
638which will only continue monitoring if a mail address or alert program
639is found in the config file.
640
b5e64645
NB
641.TP
642.BR -i ", " --pid-file
643When
644.B mdadm
645is running in daemon mode, write the pid of the daemon process to
646the specified file, instead of printing it on standard output.
647
aa88f531
NB
648.TP
649.BR -1 ", " --oneshot
650Check arrays only once. This will generate
651.B NewArray
652events and more significantly
653.B DegradedArray
654events. Running
655.in +5
656.B " mdadm --monitor --scan -1"
657.in -5
658from a cron script will ensure regular notification of any degraded arrays.
659
98c6faba
NB
660.TP
661.BR -t ", " --test
662Generate a
663.B TestMessage
664alert for every array found at startup. This alert gets mailed and
665passed to the alert program. This can be used for testing that alert
666message to get through successfully.
667
e0d19036 668.SH ASSEMBLE MODE
52826846 669
cd29a5c8
NB
670.HP 12
671Usage:
9a9dab36 672.B mdadm --assemble
5787fa49
NB
673.I md-device options-and-component-devices...
674.HP 12
675Usage:
676.B mdadm --assemble --scan
677.I md-devices-and-options...
cd29a5c8
NB
678.HP 12
679Usage:
9a9dab36 680.B mdadm --assemble --scan
cd29a5c8 681.I options...
52826846 682
cd29a5c8 683.PP
52826846 684This usage assembles one or more raid arrays from pre-existing components.
9a9dab36 685For each array, mdadm needs to know the md device, the identity of the
e0d19036 686array, and a number of component-devices. These can be found in a number of ways.
52826846 687
5787fa49
NB
688In the first usage example (without the
689.BR --scan )
690the first device given is the md device.
691In the second usage example, all devices listed are treated as md
692devices and assembly is attempted.
693In the third (where no devices are listed) all md devices that are
694listed in the configuration file are assembled.
52826846 695
d013a55e
NB
696If precisely one device is listed, but
697.B --scan
dd0781e5 698is not given, then
d013a55e
NB
699.I mdadm
700acts as though
701.B --scan
702was given and identify information is extracted from the configuration file.
703
cd29a5c8 704The identity can be given with the
52826846 705.B --uuid
cd29a5c8
NB
706option, with the
707.B --super-minor
5787fa49 708option, can be found in the config file, or will be taken from the
e0d19036 709super block on the first component-device listed on the command line.
52826846
NB
710
711Devices can be given on the
712.B --assemble
5787fa49
NB
713command line or in the config file. Only devices which have an md
714superblock which contains the right identity will be considered for
715any array.
52826846
NB
716
717The config file is only used if explicitly named with
718.B --config
d013a55e 719or requested with (a possibly implicit)
52826846
NB
720.B --scan.
721In the later case,
9a9dab36 722.B /etc/mdadm.conf
52826846
NB
723is used.
724
725If
726.B --scan
cd29a5c8
NB
727is not given, then the config file will only be used to find the
728identity of md arrays.
52826846 729
2d465520 730Normally the array will be started after it is assembled. However if
cd29a5c8 731.B --scan
2d465520 732is not given and insufficient drives were listed to start a complete
cd29a5c8
NB
733(non-degraded) array, then the array is not started (to guard against
734usage errors). To insist that the array be started in this case (as
98c6faba 735may work for RAID1, 4, 5 or 6), give the
cd29a5c8
NB
736.B --run
737flag.
52826846 738
dd0781e5
NB
739If an
740.B auto
741option is given, either on the command line (--auto) or in the
742configuration file (e.g. auto=part), then
743.I mdadm
744will create the md device if necessary or will re-create it if it
745doesn't look usable as it is.
746
747This can be useful for handling partitioned devices (which don't have
748a stable device number - it can change after a reboot) and when using
749"udev" to manage your
750.B /dev
751tree (udev cannot handle md devices because of the unusual device
752initialisation conventions).
753
754If the option to "auto" is "mdp" or "part" or (on the command line
755only) "p", then mdadm will create a partitionable array, using the
756first free one that is not inuse, and does not already have an entry
757in /dev (apart from numeric /dev/md* entries).
758
759If the option to "auto" is "yes" or "md" or (on the command line)
760nothing, then mdadm will create a traditional, non-partitionable md
761array.
762
763It is expected that the "auto" functionality will be used to create
764device entries with meaningful names such as "/dev/md/home" or
765"/dev/md/root", rather than names based on the numerical array number.
766
767When using this option to create a partitionable array, the device
768files for the first 4 partitions are also created. If a different
769number is required it can be simply appended to the auto option.
770e.g. "auto=part8". Partition names are created by appending a digit
771string to the device name, with an intervening "_p" if the device name
772ends with a digit.
773
774The
775.B --auto
776option is also available in Build and Create modes. As those modes do
777not use a config file, the "auto=" config option does not apply to
778these modes.
52826846 779
cd29a5c8 780.SH BUILD MODE
52826846 781
cd29a5c8
NB
782.HP 12
783Usage:
9a9dab36 784.B mdadm --build
cd29a5c8
NB
785.I device
786.BI --chunk= X
787.BI --level= Y
b83d95f3 788.BI --raid-devices= Z
cd29a5c8
NB
789.I devices
790
791.PP
52826846 792This usage is similar to
cd29a5c8 793.BR --create .
52826846 794The difference is that it creates a legacy array without a superblock. With
cd29a5c8 795these arrays there is no difference between initially creating the array and
52826846
NB
796subsequently assembling the array, except that hopefully there is useful
797data there in the second case.
798
cd29a5c8
NB
799The level may only be 0, raid0, or linear. All devices must be listed
800and the array will be started once complete.
801
802.SH CREATE MODE
803
804.HP 12
805Usage:
9a9dab36 806.B mdadm --create
cd29a5c8
NB
807.I device
808.BI --chunk= X
809.BI --level= Y
810.br
b83d95f3 811.BI --raid-devices= Z
cd29a5c8
NB
812.I devices
813
814.PP
815This usage will initialise a new md array, associate some devices with
816it, and activate the array.
817
dd0781e5
NB
818This the
819.B --auto
820option is given (as described in more detail in the section on
821Assemble mode), then the md device will be created with a suitable
822device number if necessary.
823
cd29a5c8 824As devices are added, they are checked to see if they contain raid
2d465520 825superblocks or filesystems. They are also checked to see if the variance in
cd29a5c8
NB
826device size exceeds 1%.
827
828If any discrepancy is found, the array will not automatically be run, though
829the presence of a
830.B --run
831can override this caution.
832
2d465520 833To create a "degraded" array in which some devices are missing, simply
d013a55e 834give the word "\fBmissing\fP"
2d465520
NB
835in place of a device name. This will cause
836.B mdadm
837to leave the corresponding slot in the array empty.
838For a RAID4 or RAID5 array at most one slot can be
98c6faba 839"\fBmissing\fP"; for a RAID6 array at most two slots.
2d465520
NB
840For a RAID1 array, only one real device needs to be given. All of the
841others can be
d013a55e 842"\fBmissing\fP".
2d465520 843
feb716e9
NB
844When creating a RAID5 array,
845.B mdadm
846will automatically create a degraded array with an extra spare drive.
847This is because building the spare into a degraded array is in general faster than resyncing
848the parity on a non-degraded, but not clean, array. This feature can
849be over-ridden with the
b5e64645 850.I --force
feb716e9
NB
851option.
852
cd29a5c8
NB
853'''If the
854'''.B --size
e0d19036 855'''option is given, it is not necessary to list any component-devices in this command.
cd29a5c8
NB
856'''They can be added later, before a
857'''.B --run.
858'''If no
859'''.B --size
860'''is given, the apparent size of the smallest drive given is used.
861
862The General Management options that are valid with --create are:
863.TP
864.B --run
dd0781e5 865insist on running the array even if some devices look like they might
cd29a5c8
NB
866be in use.
867
868.TP
869.B --readonly
870start the array readonly - not supported yet.
52826846 871
e0d19036 872.SH MANAGE MODE
cd29a5c8
NB
873.HP 12
874Usage:
e0d19036
NB
875.B mdadm
876.I device
877.I options... devices...
cd29a5c8
NB
878.PP
879
e0d19036
NB
880This usage will allow individual devices in an array to be failed,
881removed or added. It is possible to perform multiple operations with
882on command. For example:
883.br
5787fa49 884.B " mdadm /dev/md0 -f /dev/hda1 -r /dev/hda1 -a /dev/hda1"
e0d19036
NB
885.br
886will firstly mark
887.B /dev/hda1
888as faulty in
889.B /dev/md0
890and will then remove it from the array and finally add it back
2d465520 891in as a spare. However only one md array can be affected by a single
e0d19036
NB
892command.
893
894.SH MISC MODE
895.HP 12
896Usage:
9a9dab36 897.B mdadm
e0d19036
NB
898.I options ...
899.I devices ...
900.PP
cd29a5c8 901
b5e64645 902MISC mode includes a number of distinct operations that
e0d19036
NB
903operate on distinct devices. The operations are:
904.TP
905--query
906The device is examined to see if it is
907(1) an active md array, or
908(2) a component of an md array.
909The information discovered is reported.
910
911.TP
912--detail
2d465520
NB
913The device should be an active md device.
914.B mdadm
915will display a detailed description of the array.
cd29a5c8 916.B --brief
2d465520
NB
917or
918.B --scan
919will cause the output to be less detailed and the format to be
e0d19036 920suitable for inclusion in
9a9dab36 921.BR /etc/mdadm.conf .
feb716e9
NB
922The exit status of
923.I mdadm
924will normally be 0 unless
925.I mdadm
926failed to get useful information about the device(s). However if the
927.B --test
928option is given, then the exit status will be:
929.RS
930.TP
9310
932The array is functioning normally.
933.TP
9341
935The array has at least one failed device.
936.TP
9372
938The array has multiple failed devices and hence is unusable (raid4 or
939raid5).
940.TP
9414
942There was an error while trying to get information about the device.
943.RE
cd29a5c8 944
e0d19036
NB
945.TP
946--examine
2d465520
NB
947The device should be a component of an md array.
948.B mdadm
949will read the md superblock of the device and display the contents.
e0d19036
NB
950If
951.B --brief
952is given, or
953.B --scan
954then multiple devices that are components of the one array
955are grouped together and reported in a single entry suitable
956for inclusion in
957.BR /etc/mdadm.conf .
958
2d465520 959Having
e0d19036
NB
960.B --scan
961without listing any devices will cause all devices listed in the
962config file to be examined.
963
964.TP
965--stop
98c6faba
NB
966The devices should be active md arrays which will be deactivated, as
967long as they are not currently in use.
e0d19036
NB
968
969.TP
970--run
971This will fully activate a partially assembled md array.
972
973.TP
974--readonly
975This will mark an active array as read-only, providing that it is
976not currently being used.
977
978.TP
979--readwrite
980This will change a
981.B readonly
982array back to being read/write.
983
2d465520
NB
984.TP
985--scan
986For all operations except
987.BR --examine ,
988.B --scan
989will cause the operation to be applied to all arrays listed in
990.BR /proc/mdstat .
991For
992.BR --examine,
993.B --scan
994causes all devices listed in the config file to be examined.
995
996
e0d19036
NB
997.SH MONITOR MODE
998
cd29a5c8
NB
999.HP 12
1000Usage:
e0d19036
NB
1001.B mdadm --monitor
1002.I options... devices...
1003
cd29a5c8 1004.PP
e0d19036
NB
1005This usage causes
1006.B mdadm
1007to periodically poll a number of md arrays and to report on any events
1008noticed.
1009.B mdadm
1010will never exit once it decides that there are arrays to be checked,
1011so it should normally be run in the background.
1012
2d465520
NB
1013As well as reporting events,
1014.B mdadm
1015may move a spare drive from one array to another if they are in the
1016same
1017.B spare-group
1018and if the destination array has a failed drive but not spares.
1019
e0d19036
NB
1020If any devices are listed on the command line,
1021.B mdadm
1022will only monitor those devices. Otherwise all arrays listed in the
1023configuration file will be monitored. Further, if
1024.B --scan
1025is given, then any other md devices that appear in
1026.B /proc/mdstat
1027will also be monitored.
1028
1029The result of monitoring the arrays is the generation of events.
bd526cee 1030These events are passed to a separate program (if specified) and may
2d465520 1031be mailed to a given E-mail address.
e0d19036 1032
bd526cee
NB
1033When passing event to program, the program is run once for each event
1034and is given 2 or 3 command-line arguements. The first is the
1035name of the event (see below). The second is the name of the
1036md device which is affected, and the third is the name of a related
1037device if relevant, such as a component device that has failed.
cd29a5c8
NB
1038
1039If
1040.B --scan
e0d19036
NB
1041is given, then a program or an E-mail address must be specified on the
1042command line or in the config file. If neither are available, then
1043.B mdadm
1044will not monitor anything.
1045Without
cd29a5c8 1046.B --scan
e0d19036 1047.B mdadm
2d465520 1048will continue monitoring as long as something was found to monitor. If
e0d19036
NB
1049no program or email is given, then each event is reported to
1050.BR stdout .
cd29a5c8 1051
e0d19036
NB
1052The different events are:
1053
1054.RS 4
1055.TP
1056.B DeviceDisappeared
2d465520 1057An md array which previously was configured appears to no longer be
e0d19036
NB
1058configured.
1059
1060.TP
1061.B RebuildStarted
1062An md array started reconstruction.
1063
1064.TP
1065.BI Rebuild NN
1066Where
1067.I NN
1068is 20, 40, 60, or 80, this indicates that rebuild has passed that many
1069percentage of the total.
1070
98c6faba
NB
1071.TP
1072.B RebuildFinished
1073An md array that was rebuilding, isn't any more, either because it
1074finished normally or was aborted.
1075
e0d19036
NB
1076.TP
1077.B Fail
1078An active component device of an array has been marked as faulty.
1079
1080.TP
1081.B FailSpare
1082A spare component device which was being rebuilt to replace a faulty
1083device has failed.
1084
1085.TP
1086.B SpareActive
1087A spare component device which was being rebuilt to replace a faulty
1088device as been successfully rebuild and has been made active.
1089
1090.TP
1091.B NewArray
1092A new md array has been detected in the
1093.B /proc/mdstat
1094file.
1095
aa88f531
NB
1096.TP
1097.B DegradedArray
1098A newly noticed array appears to be degraded. This message is not
1099generated when
1100.I mdadm
1101notices a drive failure which causes degradation, but only when
1102.I mdadm
1103notices that an array is degraded when it first sees the array.
1104
e0d19036
NB
1105.TP
1106.B MoveSpare
1107A spare drive has been moved from one array in a
1108.B spare-group
1109to another to allow a failed drive to be replaced.
1110
98c6faba
NB
1111.TP
1112.B TestMessage
1113An array was found at startup, and the
1114.B --test
1115flag was given.
e0d19036
NB
1116.RE
1117
1118Only
98c6faba
NB
1119.B Fail ,
1120.B FailSpare ,
1121.B DegradedArray ,
e0d19036 1122and
98c6faba 1123.B TestMessage
e0d19036
NB
1124cause Email to be sent. All events cause the program to be run.
1125The program is run with two or three arguments, they being the event
1126name, the array device and possibly a second device.
1127
1128Each event has an associated array device (e.g.
1129.BR /dev/md1 )
1130and possibly a second device. For
1131.BR Fail ,
1132.BR FailSpare ,
1133and
1134.B SpareActive
1135the second device is the relevant component device.
1136For
1137.B MoveSpare
1138the second device is the array that the spare was moved from.
1139
1140For
1141.B mdadm
1142to move spares from one array to another, the different arrays need to
1143be labelled with the same
1144.B spare-group
1145in the configuration file. The
1146.B spare-group
1147name can be any string. It is only necessary that different spare
2d465520 1148groups use different names.
e0d19036
NB
1149
1150When
9a9dab36 1151.B mdadm
e0d19036
NB
1152detects that an array which is in a spare group has fewer active
1153devices than necessary for the complete array, and has no spare
1154devices, it will look for another array in the same spare group that
1155has a full complement of working drive and a spare. It will then
1156attempt to remove the spare from the second drive and add it to the
1157first.
1158If the removal succeeds but the adding fails, then it is added back to
1159the original array.
1160
dd0781e5
NB
1161.SH GROW MODE
1162The GROW mode is used for changing the size or shape of an active
1163array.
1164For this to work, the kernel must support the necessary change.
1165Various types of growth may be added during 2.6 development, possibly
1166including restructuring a raid5 array to have more active devices.
1167
1168Currently the only support available is to change the "size" attribute
1169for arrays with redundancy, and the raid-disks attribute of RAID1
1170arrays.
1171
1172Normally when an array is build the "size" it taken from the smallest
1173of the drives. If all the small drives in an arrays are, one at a
1174time, removed and replaced with larger drives, then you could have an
1175array of large drives with only a small amount used. In this
1176situation, changing the "size" with "GROW" mode will allow the extra
1177space to start being used. If the size is increased in this way, a
1178"resync" process will start to make sure the new parts of the array
1179are synchronised.
1180
1181Note that when an array changes size, any filesystem that may be
1182stored in the array will not automatically grow to use the space. The
1183filesystem will need to be explicitly told to use the extra space.
1184
1185A RAID1 array can work with any number of devices from 1 upwards
1186(though 1 is not very useful). There may be times which you want to
1187increase or decrease the number of active devices. Note that this is
1188different to hot-add or hot-remove which changes the number of
1189inactive devices.
1190
1191When reducing the number of devices in a RAID1 array, the slots which
1192are to be removed from the array must already be vacant. That is, the
1193devices that which were in those slots must be failed and removed.
1194
1195When the number of devices is increased, any hot spares that are
1196present may be activated immediately.
1197
2d465520
NB
1198.SH EXAMPLES
1199
5787fa49 1200.B " mdadm --query /dev/name-of-device"
2d465520 1201.br
5787fa49
NB
1202This will find out if a given device is a raid array, or is part of
1203one, and will provide brief information about the device.
2d465520 1204
5787fa49 1205.B " mdadm --assemble --scan"
2d465520 1206.br
5787fa49
NB
1207This will assemble and start all arrays listed in the standard confile
1208file. This command will typically go in a system startup file.
2d465520 1209
2d465520 1210.B " mdadm --stop --scan"
5787fa49
NB
1211.br
1212This will shut down all array that can be shut down (i.e. are not
19f8b8fc 1213currently in use). This will typically go in a system shutdown script.
2d465520 1214
5787fa49 1215.B " mdadm --follow --scan --delay=120"
2d465520 1216.br
5787fa49
NB
1217If (and only if) there is an Email address or program given in the
1218standard config file, then
1219monitor the status of all arrays listed in that file by
1220polling them ever 2 minutes.
2d465520 1221
5787fa49 1222.B " mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[ac]1"
2d465520 1223.br
5787fa49 1224Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
2d465520 1225
2d465520
NB
1226.br
1227.B " echo 'DEVICE /dev/hd*[0-9] /dev/sd*[0-9]' > mdadm.conf"
1228.br
1229.B " mdadm --detail --scan >> mdadm.conf"
1230.br
5787fa49
NB
1231This will create a prototype config file that describes currently
1232active arrays that are known to be made from partitions of IDE or SCSI drives.
2d465520
NB
1233This file should be reviewed before being used as it may
1234contain unwanted detail.
1235
2d465520
NB
1236.B " echo 'DEVICE /dev/hd[a-z] /dev/sd*[a-z]' > mdadm.conf"
1237.br
5787fa49
NB
1238.B " mdadm --examine --scan --config=mdadm.conf >> mdadm.conf"
1239.ber
1240This will find what arrays could be assembled from existign IDE and
1241SCSI whole drives (not partitions) and store the information is the
1242format of a config file.
2d465520
NB
1243This file is very likely to contain unwanted detail, particularly
1244the
1245.B devices=
5787fa49
NB
1246entries. It should be reviewed and edited before being used as an
1247actual config file.
2d465520 1248
5787fa49 1249.B " mdadm --examine --brief --scan --config=partitions"
2d465520 1250.br
5787fa49
NB
1251.B " mdadm -Ebsc partitions"
1252.br
1253Create a list of devices by reading
1254.BR /proc/partitions ,
1255scan these for RAID superblocks, and printout a brief listing of all
1256that was found.
2d465520 1257
5787fa49 1258.B " mdadm -Ac partitions -m 0 /dev/md0"
2d465520 1259.br
5787fa49
NB
1260Scan all partitions and devices listed in
1261.BR /proc/partitions
1262and assemble
1263.B /dev/md0
1264out of all such devices with a RAID superblock with a minor number of 0.
2d465520 1265
d013a55e
NB
1266.B " mdadm --monitor --scan --daemonise > /var/run/mdadm"
1267.br
1268If config file contains a mail address or alert program, run mdadm in
1269the background in monitor mode monitoring all md devices. Also write
1270pid of mdadm daemon to
1271.BR /var/run/mdadm .
1272
5787fa49 1273.B " mdadm --create --help"
2d465520 1274.br
5787fa49 1275Providew help about the Create mode.
2d465520 1276
5787fa49
NB
1277.B " mdadm --config --help"
1278.br
1279Provide help about the format of the config file.
2d465520 1280
5787fa49
NB
1281.B " mdadm --help"
1282.br
1283Provide general help.
cd29a5c8 1284
cd29a5c8
NB
1285
1286.SH FILES
1287
1288.SS /proc/mdstat
1289
1290If you're using the
1291.B /proc
1292filesystem,
1293.B /proc/mdstat
2d465520
NB
1294lists all active md devices with information about them.
1295.B mdadm
1296uses this to find arrays when
1297.B --scan
1298is given in Misc mode, and to monitor array reconstruction
1299on Monitor mode.
1300
cd29a5c8 1301
9a9dab36 1302.SS /etc/mdadm.conf
cd29a5c8 1303
11a3e71d
NB
1304The config file lists which devices may be scanned to see if
1305they contain MD super block, and gives identifying information
1306(e.g. UUID) about known MD arrays. See
1307.BR mdadm.conf (5)
1308for more details.
cd29a5c8 1309
48f7b27a
NB
1310.SH DEVICE NAMES
1311
1312While entries in the /dev directory can have any format you like,
1313.I mdadm
1314has an understanding of 'standard' formats which it uses to guide its
1315behaviour when creating device files via the
1316.I --auto
1317option.
1318
1319The standard names for non-partitioned arrays (the only sort of md
1320array available in 2.4 and earlier) either of
1321.IP
1322/dev/mdNN
1323.br
1324/dev/md/NN
1325.PP
1326where NN is a number.
1327The standard names for partitionable arrays (as available from 2.6
1328onwards) is one of
1329.IP
1330/dev/md/dNN
1331.br
1332/dev/md_dNN
1333.PP
1334Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
52826846 1335
2d465520
NB
1336.SH NOTE
1337.B mdadm
1338was previously known as
1339.BR mdctl .
1340
52826846 1341.SH SEE ALSO
cd29a5c8
NB
1342For information on the various levels of
1343RAID, check out:
1344
1345.IP
1346.UR http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1347http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1348.UE
1349.PP
1350for new releases of the RAID driver check out:
1351
1352.IP
1353.UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1354ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1355.UE
1356.PP
1357or
1358.IP
1359.UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1360http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1361.URk
1362.PP
56eb10c0
NB
1363.BR mdadm.conf (5),
1364.BR md (4).
1365.PP
52826846
NB
1366.IR raidtab (5),
1367.IR raid0run (8),
1368.IR raidstop (8),
1369.IR mkraid (8)