]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdadm.8
Avoid using lstat, it isn't right.
[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 .
391
392.TP
393.BR --assume-clean
394Tell
395.I mdadm
396that the array pre-existed and is known to be clean. This is only
397really useful for Building RAID1 array. Only use this if you really
398know what you are doing. This is currently only supported for --build.
399
400.TP
401.BR -R ", " --run
402Insist that
403.I mdadm
404run the array, even if some of the components
405appear to be active in another array or filesystem. Normally
406.I mdadm
407will ask for confirmation before including such components in an
408array. This option causes that question to be suppressed.
409
410.TP
411.BR -f ", " --force
412Insist that
413.I mdadm
414accept the geometry and layout specified without question. Normally
415.I mdadm
416will not allow creation of an array with only one device, and will try
417to create a raid5 array with one missing drive (as this makes the
418initial resync work faster). With
419.BR --force ,
420.I mdadm
421will not try to be so clever.
422
423.TP
424.BR -a ", " "--auto{=no,yes,md,mdp,part,p}{NN}"
48f7b27a
NB
425Instruct mdadm to create the device file if needed, possibly allocating
426an unused minor number. "md" causes a non-partitionable array
dd0781e5 427to be used. "mdp", "part" or "p" causes a partitionable array (2.6 and
48f7b27a
NB
428later) to be used. "yes" requires the named md device to have a
429'standard' format, and the type and minor number will be determined
430from this. See DEVICE NAMES below.
431
432The argumentment can also come immediately after
dd0781e5
NB
433"-a". e.g. "-ap".
434
435For partitionable arrays,
436.I mdadm
437will create the device file for the whole array and for the first 4
438partitions. A different number of partitions can be specified at the
439end of this option (e.g.
440.BR --auto=p7 ).
48f7b27a
NB
441If the device name ends with a digit, the partition names add a'p',
442and a number, e.g. "/dev/home1p3". If there is no
dd0781e5
NB
443trailing digit, then the partition names just have a number added,
444e.g. "/dev/scratch3".
445
48f7b27a
NB
446If the md device name is in a 'standard' format as described in DEVICE
447NAMES, then it will be created, if necessary, with the appropriate
448number based on that name. If the device name is not in one of these
449formats, then a unused minor number will be allocted. The minor
450number will be considered unused if there is no active array for that
451number, and there is no entry in /dev for that number and with a
452non-standard name.
453
52826846
NB
454.SH For assemble:
455
cd29a5c8
NB
456.TP
457.BR -u ", " --uuid=
458uuid of array to assemble. Devices which don't have this uuid are
459excluded
460
461.TP
462.BR -m ", " --super-minor=
463Minor number of device that array was created for. Devices which
464don't have this minor number are excluded. If you create an array as
2d465520 465/dev/md1, then all superblocks will contain the minor number 1, even if
cd29a5c8
NB
466the array is later assembled as /dev/md2.
467
d013a55e
NB
468Giving the literal word "dev" for
469.B --super-minor
470will cause
471.I mdadm
472to use the minor number of the md device that is being assembled.
473e.g. when assembling
474.BR /dev/md0 ,
475.M --super-minor=dev
476will look for super blocks with a minor number of 0.
477
cd29a5c8
NB
478.TP
479.BR -f ", " --force
52826846
NB
480Assemble the array even if some superblocks appear out-of-date
481
cd29a5c8
NB
482.TP
483.BR -R ", " --run
484Attempt to start the array even if fewer drives were given than are
485needed for a full array. Normally if not all drives are found and
486.B --scan
487is not used, then the array will be assembled but not started.
488With
489.B --run
490an attempt will be made to start it anyway.
52826846 491
dd0781e5
NB
492.TP
493.BR -a ", " "--auto{=no,yes,md,mdp,part}"
494See this option under Create and Build options.
495
e793c2e5
NB
496.TP
497.BR -b ", " --bitmap=
498Specify the bitmap file that was given when the array was created.
499
5787fa49
NB
500.TP
501.BR -U ", " --update=
502Update the superblock on each device while assembling the array. The
feb716e9
NB
503argument given to this flag can be one of
504.BR sparc2.2 ,
505.BR summaries ,
e5329c37 506.BR resync ,
5787fa49
NB
507or
508.BR super-minor .
509
510The
511.B sparc2.2
512option will adjust the superblock of an array what was created on a Sparc
513machine running a patched 2.2 Linux kernel. This kernel got the
514alignment of part of the superblock wrong. You can use the
515.B "--examine --sparc2.2"
516option to
517.I mdadm
518to see what effect this would have.
519
520The
521.B super-minor
522option will update the
523.B "prefered minor"
524field on each superblock to match the minor number of the array being
feb716e9 525assembled. This is not needed on 2.6 and later kernels as they make
5787fa49
NB
526this adjustment automatically.
527
e5329c37
NB
528The
529.B resync
530option will cause the array to be marked
531.I dirty
532meaning that any redundancy in the array (e.g. parity for raid5,
533copies for raid1) may be incorrect. This will cause the raid system
534to perform a "resync" pass to make sure that all redundant information
535is correct.
536
feb716e9
NB
537The
538.B summaries
539option will correct the summaries in the superblock. That is the
540counts of total, working, active, failed, and spare devices.
5787fa49 541
e0d19036 542.SH For Manage mode:
52826846 543
cd29a5c8
NB
544.TP
545.BR -a ", " --add
546'''add, or
547hotadd listed devices.
52826846 548
cd29a5c8
NB
549.TP
550.BR -r ", " --remove
2d465520 551remove listed devices. They must not be active. i.e. they should
cd29a5c8 552be failed or spare devices.
52826846 553
cd29a5c8
NB
554.TP
555.BR -f ", " --fail
556mark listed devices as faulty.
52826846 557
cd29a5c8
NB
558.TP
559.BR --set-faulty
560same as --fail.
52826846 561
5787fa49
NB
562.SH For Examine mode:
563
564.TP
565.B --sparc2.2
566In an array was created on a 2.2 Linux kernel patched with RAID
567support, the superblock will have been created incorrectly, or at
568least incompatibly with 2.4 and later kernels. Using the
569.B --sparc2.2
570flag with
571.B --examine
572will fix the superblock before displaying it. If this appears to do
573the right thing, then the array can be successfully assembled using
574.BR "--assemble --update=sparc2.2" .
575
e0d19036
NB
576.SH For Misc mode:
577
cd29a5c8
NB
578.TP
579.BR -R ", " --run
580start a partially built array.
52826846 581
cd29a5c8
NB
582.TP
583.BR -S ", " --stop
584deactivate array, releasing all resources.
52826846 585
cd29a5c8
NB
586.TP
587.BR -o ", " --readonly
588mark array as readonly.
52826846 589
cd29a5c8
NB
590.TP
591.BR -w ", " --readwrite
592mark array as readwrite.
52826846 593
e0d19036
NB
594.TP
595.B --zero-superblock
596If the device contains a valid md superblock, the block is
597over-written with zeros. With
598--force
599the block where the superblock would be is over-written even if it
600doesn't appear to be valid.
52826846 601
feb716e9
NB
602.TP
603.BR -t ", " --test
604When used with
605.BR --detail ,
606the exit status of
607.I mdadm
608is set to reflect the status of the device.
609
e0d19036
NB
610.SH For Monitor mode:
611.TP
612.BR -m ", " --mail
613Give a mail address to send alerts to.
614
615.TP
616.BR -p ", " --program ", " --alert
617Give a program to be run whenever an event is detected.
618
619.TP
620.BR -d ", " --delay
621Give a delay in seconds.
622.B mdadm
623polls the md arrays and then waits this many seconds before polling
624again. The default is 60 seconds.
625
d013a55e
NB
626.TP
627.BR -f ", " --daemonise
628Tell
629.B mdadm
630to run as a background daemon if it decides to monitor anything. This
631causes it to fork and run in the child, and to disconnect form the
632terminal. The process id of the child is written to stdout.
633This is useful with
634.B --scan
635which will only continue monitoring if a mail address or alert program
636is found in the config file.
637
b5e64645
NB
638.TP
639.BR -i ", " --pid-file
640When
641.B mdadm
642is running in daemon mode, write the pid of the daemon process to
643the specified file, instead of printing it on standard output.
644
aa88f531
NB
645.TP
646.BR -1 ", " --oneshot
647Check arrays only once. This will generate
648.B NewArray
649events and more significantly
650.B DegradedArray
651events. Running
652.in +5
653.B " mdadm --monitor --scan -1"
654.in -5
655from a cron script will ensure regular notification of any degraded arrays.
656
98c6faba
NB
657.TP
658.BR -t ", " --test
659Generate a
660.B TestMessage
661alert for every array found at startup. This alert gets mailed and
662passed to the alert program. This can be used for testing that alert
663message to get through successfully.
664
e0d19036 665.SH ASSEMBLE MODE
52826846 666
cd29a5c8
NB
667.HP 12
668Usage:
9a9dab36 669.B mdadm --assemble
5787fa49
NB
670.I md-device options-and-component-devices...
671.HP 12
672Usage:
673.B mdadm --assemble --scan
674.I md-devices-and-options...
cd29a5c8
NB
675.HP 12
676Usage:
9a9dab36 677.B mdadm --assemble --scan
cd29a5c8 678.I options...
52826846 679
cd29a5c8 680.PP
52826846 681This usage assembles one or more raid arrays from pre-existing components.
9a9dab36 682For each array, mdadm needs to know the md device, the identity of the
e0d19036 683array, and a number of component-devices. These can be found in a number of ways.
52826846 684
5787fa49
NB
685In the first usage example (without the
686.BR --scan )
687the first device given is the md device.
688In the second usage example, all devices listed are treated as md
689devices and assembly is attempted.
690In the third (where no devices are listed) all md devices that are
691listed in the configuration file are assembled.
52826846 692
d013a55e
NB
693If precisely one device is listed, but
694.B --scan
dd0781e5 695is not given, then
d013a55e
NB
696.I mdadm
697acts as though
698.B --scan
699was given and identify information is extracted from the configuration file.
700
cd29a5c8 701The identity can be given with the
52826846 702.B --uuid
cd29a5c8
NB
703option, with the
704.B --super-minor
5787fa49 705option, can be found in the config file, or will be taken from the
e0d19036 706super block on the first component-device listed on the command line.
52826846
NB
707
708Devices can be given on the
709.B --assemble
5787fa49
NB
710command line or in the config file. Only devices which have an md
711superblock which contains the right identity will be considered for
712any array.
52826846
NB
713
714The config file is only used if explicitly named with
715.B --config
d013a55e 716or requested with (a possibly implicit)
52826846
NB
717.B --scan.
718In the later case,
9a9dab36 719.B /etc/mdadm.conf
52826846
NB
720is used.
721
722If
723.B --scan
cd29a5c8
NB
724is not given, then the config file will only be used to find the
725identity of md arrays.
52826846 726
2d465520 727Normally the array will be started after it is assembled. However if
cd29a5c8 728.B --scan
2d465520 729is not given and insufficient drives were listed to start a complete
cd29a5c8
NB
730(non-degraded) array, then the array is not started (to guard against
731usage errors). To insist that the array be started in this case (as
98c6faba 732may work for RAID1, 4, 5 or 6), give the
cd29a5c8
NB
733.B --run
734flag.
52826846 735
dd0781e5
NB
736If an
737.B auto
738option is given, either on the command line (--auto) or in the
739configuration file (e.g. auto=part), then
740.I mdadm
741will create the md device if necessary or will re-create it if it
742doesn't look usable as it is.
743
744This can be useful for handling partitioned devices (which don't have
745a stable device number - it can change after a reboot) and when using
746"udev" to manage your
747.B /dev
748tree (udev cannot handle md devices because of the unusual device
749initialisation conventions).
750
751If the option to "auto" is "mdp" or "part" or (on the command line
752only) "p", then mdadm will create a partitionable array, using the
753first free one that is not inuse, and does not already have an entry
754in /dev (apart from numeric /dev/md* entries).
755
756If the option to "auto" is "yes" or "md" or (on the command line)
757nothing, then mdadm will create a traditional, non-partitionable md
758array.
759
760It is expected that the "auto" functionality will be used to create
761device entries with meaningful names such as "/dev/md/home" or
762"/dev/md/root", rather than names based on the numerical array number.
763
764When using this option to create a partitionable array, the device
765files for the first 4 partitions are also created. If a different
766number is required it can be simply appended to the auto option.
767e.g. "auto=part8". Partition names are created by appending a digit
768string to the device name, with an intervening "_p" if the device name
769ends with a digit.
770
771The
772.B --auto
773option is also available in Build and Create modes. As those modes do
774not use a config file, the "auto=" config option does not apply to
775these modes.
52826846 776
cd29a5c8 777.SH BUILD MODE
52826846 778
cd29a5c8
NB
779.HP 12
780Usage:
9a9dab36 781.B mdadm --build
cd29a5c8
NB
782.I device
783.BI --chunk= X
784.BI --level= Y
b83d95f3 785.BI --raid-devices= Z
cd29a5c8
NB
786.I devices
787
788.PP
52826846 789This usage is similar to
cd29a5c8 790.BR --create .
52826846 791The difference is that it creates a legacy array without a superblock. With
cd29a5c8 792these arrays there is no difference between initially creating the array and
52826846
NB
793subsequently assembling the array, except that hopefully there is useful
794data there in the second case.
795
cd29a5c8
NB
796The level may only be 0, raid0, or linear. All devices must be listed
797and the array will be started once complete.
798
799.SH CREATE MODE
800
801.HP 12
802Usage:
9a9dab36 803.B mdadm --create
cd29a5c8
NB
804.I device
805.BI --chunk= X
806.BI --level= Y
807.br
b83d95f3 808.BI --raid-devices= Z
cd29a5c8
NB
809.I devices
810
811.PP
812This usage will initialise a new md array, associate some devices with
813it, and activate the array.
814
dd0781e5
NB
815This the
816.B --auto
817option is given (as described in more detail in the section on
818Assemble mode), then the md device will be created with a suitable
819device number if necessary.
820
cd29a5c8 821As devices are added, they are checked to see if they contain raid
2d465520 822superblocks or filesystems. They are also checked to see if the variance in
cd29a5c8
NB
823device size exceeds 1%.
824
825If any discrepancy is found, the array will not automatically be run, though
826the presence of a
827.B --run
828can override this caution.
829
2d465520 830To create a "degraded" array in which some devices are missing, simply
d013a55e 831give the word "\fBmissing\fP"
2d465520
NB
832in place of a device name. This will cause
833.B mdadm
834to leave the corresponding slot in the array empty.
835For a RAID4 or RAID5 array at most one slot can be
98c6faba 836"\fBmissing\fP"; for a RAID6 array at most two slots.
2d465520
NB
837For a RAID1 array, only one real device needs to be given. All of the
838others can be
d013a55e 839"\fBmissing\fP".
2d465520 840
feb716e9
NB
841When creating a RAID5 array,
842.B mdadm
843will automatically create a degraded array with an extra spare drive.
844This is because building the spare into a degraded array is in general faster than resyncing
845the parity on a non-degraded, but not clean, array. This feature can
846be over-ridden with the
b5e64645 847.I --force
feb716e9
NB
848option.
849
cd29a5c8
NB
850'''If the
851'''.B --size
e0d19036 852'''option is given, it is not necessary to list any component-devices in this command.
cd29a5c8
NB
853'''They can be added later, before a
854'''.B --run.
855'''If no
856'''.B --size
857'''is given, the apparent size of the smallest drive given is used.
858
859The General Management options that are valid with --create are:
860.TP
861.B --run
dd0781e5 862insist on running the array even if some devices look like they might
cd29a5c8
NB
863be in use.
864
865.TP
866.B --readonly
867start the array readonly - not supported yet.
52826846 868
e0d19036 869.SH MANAGE MODE
cd29a5c8
NB
870.HP 12
871Usage:
e0d19036
NB
872.B mdadm
873.I device
874.I options... devices...
cd29a5c8
NB
875.PP
876
e0d19036
NB
877This usage will allow individual devices in an array to be failed,
878removed or added. It is possible to perform multiple operations with
879on command. For example:
880.br
5787fa49 881.B " mdadm /dev/md0 -f /dev/hda1 -r /dev/hda1 -a /dev/hda1"
e0d19036
NB
882.br
883will firstly mark
884.B /dev/hda1
885as faulty in
886.B /dev/md0
887and will then remove it from the array and finally add it back
2d465520 888in as a spare. However only one md array can be affected by a single
e0d19036
NB
889command.
890
891.SH MISC MODE
892.HP 12
893Usage:
9a9dab36 894.B mdadm
e0d19036
NB
895.I options ...
896.I devices ...
897.PP
cd29a5c8 898
b5e64645 899MISC mode includes a number of distinct operations that
e0d19036
NB
900operate on distinct devices. The operations are:
901.TP
902--query
903The device is examined to see if it is
904(1) an active md array, or
905(2) a component of an md array.
906The information discovered is reported.
907
908.TP
909--detail
2d465520
NB
910The device should be an active md device.
911.B mdadm
912will display a detailed description of the array.
cd29a5c8 913.B --brief
2d465520
NB
914or
915.B --scan
916will cause the output to be less detailed and the format to be
e0d19036 917suitable for inclusion in
9a9dab36 918.BR /etc/mdadm.conf .
feb716e9
NB
919The exit status of
920.I mdadm
921will normally be 0 unless
922.I mdadm
923failed to get useful information about the device(s). However if the
924.B --test
925option is given, then the exit status will be:
926.RS
927.TP
9280
929The array is functioning normally.
930.TP
9311
932The array has at least one failed device.
933.TP
9342
935The array has multiple failed devices and hence is unusable (raid4 or
936raid5).
937.TP
9384
939There was an error while trying to get information about the device.
940.RE
cd29a5c8 941
e0d19036
NB
942.TP
943--examine
2d465520
NB
944The device should be a component of an md array.
945.B mdadm
946will read the md superblock of the device and display the contents.
e0d19036
NB
947If
948.B --brief
949is given, or
950.B --scan
951then multiple devices that are components of the one array
952are grouped together and reported in a single entry suitable
953for inclusion in
954.BR /etc/mdadm.conf .
955
2d465520 956Having
e0d19036
NB
957.B --scan
958without listing any devices will cause all devices listed in the
959config file to be examined.
960
961.TP
962--stop
98c6faba
NB
963The devices should be active md arrays which will be deactivated, as
964long as they are not currently in use.
e0d19036
NB
965
966.TP
967--run
968This will fully activate a partially assembled md array.
969
970.TP
971--readonly
972This will mark an active array as read-only, providing that it is
973not currently being used.
974
975.TP
976--readwrite
977This will change a
978.B readonly
979array back to being read/write.
980
2d465520
NB
981.TP
982--scan
983For all operations except
984.BR --examine ,
985.B --scan
986will cause the operation to be applied to all arrays listed in
987.BR /proc/mdstat .
988For
989.BR --examine,
990.B --scan
991causes all devices listed in the config file to be examined.
992
993
e0d19036
NB
994.SH MONITOR MODE
995
cd29a5c8
NB
996.HP 12
997Usage:
e0d19036
NB
998.B mdadm --monitor
999.I options... devices...
1000
cd29a5c8 1001.PP
e0d19036
NB
1002This usage causes
1003.B mdadm
1004to periodically poll a number of md arrays and to report on any events
1005noticed.
1006.B mdadm
1007will never exit once it decides that there are arrays to be checked,
1008so it should normally be run in the background.
1009
2d465520
NB
1010As well as reporting events,
1011.B mdadm
1012may move a spare drive from one array to another if they are in the
1013same
1014.B spare-group
1015and if the destination array has a failed drive but not spares.
1016
e0d19036
NB
1017If any devices are listed on the command line,
1018.B mdadm
1019will only monitor those devices. Otherwise all arrays listed in the
1020configuration file will be monitored. Further, if
1021.B --scan
1022is given, then any other md devices that appear in
1023.B /proc/mdstat
1024will also be monitored.
1025
1026The result of monitoring the arrays is the generation of events.
bd526cee 1027These events are passed to a separate program (if specified) and may
2d465520 1028be mailed to a given E-mail address.
e0d19036 1029
bd526cee
NB
1030When passing event to program, the program is run once for each event
1031and is given 2 or 3 command-line arguements. The first is the
1032name of the event (see below). The second is the name of the
1033md device which is affected, and the third is the name of a related
1034device if relevant, such as a component device that has failed.
cd29a5c8
NB
1035
1036If
1037.B --scan
e0d19036
NB
1038is given, then a program or an E-mail address must be specified on the
1039command line or in the config file. If neither are available, then
1040.B mdadm
1041will not monitor anything.
1042Without
cd29a5c8 1043.B --scan
e0d19036 1044.B mdadm
2d465520 1045will continue monitoring as long as something was found to monitor. If
e0d19036
NB
1046no program or email is given, then each event is reported to
1047.BR stdout .
cd29a5c8 1048
e0d19036
NB
1049The different events are:
1050
1051.RS 4
1052.TP
1053.B DeviceDisappeared
2d465520 1054An md array which previously was configured appears to no longer be
e0d19036
NB
1055configured.
1056
1057.TP
1058.B RebuildStarted
1059An md array started reconstruction.
1060
1061.TP
1062.BI Rebuild NN
1063Where
1064.I NN
1065is 20, 40, 60, or 80, this indicates that rebuild has passed that many
1066percentage of the total.
1067
98c6faba
NB
1068.TP
1069.B RebuildFinished
1070An md array that was rebuilding, isn't any more, either because it
1071finished normally or was aborted.
1072
e0d19036
NB
1073.TP
1074.B Fail
1075An active component device of an array has been marked as faulty.
1076
1077.TP
1078.B FailSpare
1079A spare component device which was being rebuilt to replace a faulty
1080device has failed.
1081
1082.TP
1083.B SpareActive
1084A spare component device which was being rebuilt to replace a faulty
1085device as been successfully rebuild and has been made active.
1086
1087.TP
1088.B NewArray
1089A new md array has been detected in the
1090.B /proc/mdstat
1091file.
1092
aa88f531
NB
1093.TP
1094.B DegradedArray
1095A newly noticed array appears to be degraded. This message is not
1096generated when
1097.I mdadm
1098notices a drive failure which causes degradation, but only when
1099.I mdadm
1100notices that an array is degraded when it first sees the array.
1101
e0d19036
NB
1102.TP
1103.B MoveSpare
1104A spare drive has been moved from one array in a
1105.B spare-group
1106to another to allow a failed drive to be replaced.
1107
98c6faba
NB
1108.TP
1109.B TestMessage
1110An array was found at startup, and the
1111.B --test
1112flag was given.
e0d19036
NB
1113.RE
1114
1115Only
98c6faba
NB
1116.B Fail ,
1117.B FailSpare ,
1118.B DegradedArray ,
e0d19036 1119and
98c6faba 1120.B TestMessage
e0d19036
NB
1121cause Email to be sent. All events cause the program to be run.
1122The program is run with two or three arguments, they being the event
1123name, the array device and possibly a second device.
1124
1125Each event has an associated array device (e.g.
1126.BR /dev/md1 )
1127and possibly a second device. For
1128.BR Fail ,
1129.BR FailSpare ,
1130and
1131.B SpareActive
1132the second device is the relevant component device.
1133For
1134.B MoveSpare
1135the second device is the array that the spare was moved from.
1136
1137For
1138.B mdadm
1139to move spares from one array to another, the different arrays need to
1140be labelled with the same
1141.B spare-group
1142in the configuration file. The
1143.B spare-group
1144name can be any string. It is only necessary that different spare
2d465520 1145groups use different names.
e0d19036
NB
1146
1147When
9a9dab36 1148.B mdadm
e0d19036
NB
1149detects that an array which is in a spare group has fewer active
1150devices than necessary for the complete array, and has no spare
1151devices, it will look for another array in the same spare group that
1152has a full complement of working drive and a spare. It will then
1153attempt to remove the spare from the second drive and add it to the
1154first.
1155If the removal succeeds but the adding fails, then it is added back to
1156the original array.
1157
dd0781e5
NB
1158.SH GROW MODE
1159The GROW mode is used for changing the size or shape of an active
1160array.
1161For this to work, the kernel must support the necessary change.
1162Various types of growth may be added during 2.6 development, possibly
1163including restructuring a raid5 array to have more active devices.
1164
1165Currently the only support available is to change the "size" attribute
1166for arrays with redundancy, and the raid-disks attribute of RAID1
1167arrays.
1168
1169Normally when an array is build the "size" it taken from the smallest
1170of the drives. If all the small drives in an arrays are, one at a
1171time, removed and replaced with larger drives, then you could have an
1172array of large drives with only a small amount used. In this
1173situation, changing the "size" with "GROW" mode will allow the extra
1174space to start being used. If the size is increased in this way, a
1175"resync" process will start to make sure the new parts of the array
1176are synchronised.
1177
1178Note that when an array changes size, any filesystem that may be
1179stored in the array will not automatically grow to use the space. The
1180filesystem will need to be explicitly told to use the extra space.
1181
1182A RAID1 array can work with any number of devices from 1 upwards
1183(though 1 is not very useful). There may be times which you want to
1184increase or decrease the number of active devices. Note that this is
1185different to hot-add or hot-remove which changes the number of
1186inactive devices.
1187
1188When reducing the number of devices in a RAID1 array, the slots which
1189are to be removed from the array must already be vacant. That is, the
1190devices that which were in those slots must be failed and removed.
1191
1192When the number of devices is increased, any hot spares that are
1193present may be activated immediately.
1194
2d465520
NB
1195.SH EXAMPLES
1196
5787fa49 1197.B " mdadm --query /dev/name-of-device"
2d465520 1198.br
5787fa49
NB
1199This will find out if a given device is a raid array, or is part of
1200one, and will provide brief information about the device.
2d465520 1201
5787fa49 1202.B " mdadm --assemble --scan"
2d465520 1203.br
5787fa49
NB
1204This will assemble and start all arrays listed in the standard confile
1205file. This command will typically go in a system startup file.
2d465520 1206
2d465520 1207.B " mdadm --stop --scan"
5787fa49
NB
1208.br
1209This will shut down all array that can be shut down (i.e. are not
19f8b8fc 1210currently in use). This will typically go in a system shutdown script.
2d465520 1211
5787fa49 1212.B " mdadm --follow --scan --delay=120"
2d465520 1213.br
5787fa49
NB
1214If (and only if) there is an Email address or program given in the
1215standard config file, then
1216monitor the status of all arrays listed in that file by
1217polling them ever 2 minutes.
2d465520 1218
5787fa49 1219.B " mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[ac]1"
2d465520 1220.br
5787fa49 1221Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
2d465520 1222
2d465520
NB
1223.br
1224.B " echo 'DEVICE /dev/hd*[0-9] /dev/sd*[0-9]' > mdadm.conf"
1225.br
1226.B " mdadm --detail --scan >> mdadm.conf"
1227.br
5787fa49
NB
1228This will create a prototype config file that describes currently
1229active arrays that are known to be made from partitions of IDE or SCSI drives.
2d465520
NB
1230This file should be reviewed before being used as it may
1231contain unwanted detail.
1232
2d465520
NB
1233.B " echo 'DEVICE /dev/hd[a-z] /dev/sd*[a-z]' > mdadm.conf"
1234.br
5787fa49
NB
1235.B " mdadm --examine --scan --config=mdadm.conf >> mdadm.conf"
1236.ber
1237This will find what arrays could be assembled from existign IDE and
1238SCSI whole drives (not partitions) and store the information is the
1239format of a config file.
2d465520
NB
1240This file is very likely to contain unwanted detail, particularly
1241the
1242.B devices=
5787fa49
NB
1243entries. It should be reviewed and edited before being used as an
1244actual config file.
2d465520 1245
5787fa49 1246.B " mdadm --examine --brief --scan --config=partitions"
2d465520 1247.br
5787fa49
NB
1248.B " mdadm -Ebsc partitions"
1249.br
1250Create a list of devices by reading
1251.BR /proc/partitions ,
1252scan these for RAID superblocks, and printout a brief listing of all
1253that was found.
2d465520 1254
5787fa49 1255.B " mdadm -Ac partitions -m 0 /dev/md0"
2d465520 1256.br
5787fa49
NB
1257Scan all partitions and devices listed in
1258.BR /proc/partitions
1259and assemble
1260.B /dev/md0
1261out of all such devices with a RAID superblock with a minor number of 0.
2d465520 1262
d013a55e
NB
1263.B " mdadm --monitor --scan --daemonise > /var/run/mdadm"
1264.br
1265If config file contains a mail address or alert program, run mdadm in
1266the background in monitor mode monitoring all md devices. Also write
1267pid of mdadm daemon to
1268.BR /var/run/mdadm .
1269
5787fa49 1270.B " mdadm --create --help"
2d465520 1271.br
5787fa49 1272Providew help about the Create mode.
2d465520 1273
5787fa49
NB
1274.B " mdadm --config --help"
1275.br
1276Provide help about the format of the config file.
2d465520 1277
5787fa49
NB
1278.B " mdadm --help"
1279.br
1280Provide general help.
cd29a5c8 1281
cd29a5c8
NB
1282
1283.SH FILES
1284
1285.SS /proc/mdstat
1286
1287If you're using the
1288.B /proc
1289filesystem,
1290.B /proc/mdstat
2d465520
NB
1291lists all active md devices with information about them.
1292.B mdadm
1293uses this to find arrays when
1294.B --scan
1295is given in Misc mode, and to monitor array reconstruction
1296on Monitor mode.
1297
cd29a5c8 1298
9a9dab36 1299.SS /etc/mdadm.conf
cd29a5c8 1300
11a3e71d
NB
1301The config file lists which devices may be scanned to see if
1302they contain MD super block, and gives identifying information
1303(e.g. UUID) about known MD arrays. See
1304.BR mdadm.conf (5)
1305for more details.
cd29a5c8 1306
48f7b27a
NB
1307.SH DEVICE NAMES
1308
1309While entries in the /dev directory can have any format you like,
1310.I mdadm
1311has an understanding of 'standard' formats which it uses to guide its
1312behaviour when creating device files via the
1313.I --auto
1314option.
1315
1316The standard names for non-partitioned arrays (the only sort of md
1317array available in 2.4 and earlier) either of
1318.IP
1319/dev/mdNN
1320.br
1321/dev/md/NN
1322.PP
1323where NN is a number.
1324The standard names for partitionable arrays (as available from 2.6
1325onwards) is one of
1326.IP
1327/dev/md/dNN
1328.br
1329/dev/md_dNN
1330.PP
1331Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
52826846 1332
2d465520
NB
1333.SH NOTE
1334.B mdadm
1335was previously known as
1336.BR mdctl .
1337
52826846 1338.SH SEE ALSO
cd29a5c8
NB
1339For information on the various levels of
1340RAID, check out:
1341
1342.IP
1343.UR http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1344http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1345.UE
1346.PP
1347for new releases of the RAID driver check out:
1348
1349.IP
1350.UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1351ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1352.UE
1353.PP
1354or
1355.IP
1356.UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1357http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1358.URk
1359.PP
56eb10c0
NB
1360.BR mdadm.conf (5),
1361.BR md (4).
1362.PP
52826846
NB
1363.IR raidtab (5),
1364.IR raid0run (8),
1365.IR raidstop (8),
1366.IR mkraid (8)