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