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