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