]> git.ipfire.org Git - thirdparty/mdadm.git/blame - mdadm.8
Fix problem with sector/KB size confuision for bitmap sizing.
[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
82'''with a different format and an 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
NB
450
451.TP
2ae555c3
NB
452.BR --bitmap-chunk=
453Set the chunksize of the bitmap. Each bit corresponds to that many
454Kilobytes of storage. Default is 4 when using a file based bitmap.
455When using an
456.B internal
457bitmap, the chunksize is automatically determined to make best use of
458available space.
5787fa49 459
cd29a5c8
NB
460
461.TP
2ae555c3
NB
462.BR -W ", " --write-mostly
463subsequent devices lists in a
464.BR --build ,
465.BR --create ,
466or
467.B --add
468command will be flagged as 'write-mostly'. This is valid for RAID1
469only and means that the 'md' driver will avoid reading from these
470devices if at all possible. This can be useful if mirroring over a
471slow link.
52826846 472
2ae555c3
NB
473.TP
474.BR --write-behind=
475Specify that write-behind mode should be enabled (valid for RAID1
476only). If an argument is specified, it will set the maximum number
477of outstanding writes allowed. The default value is 256.
478A write-intent bitmap is required in order to use write-behind
479mode, and write-behind is only attempted on drives marked as
480.IR write-mostly .
dd0781e5
NB
481
482.TP
483.BR --assume-clean
484Tell
485.I mdadm
47d79ef8
NB
486that the array pre-existed and is known to be clean. It can be useful
487when trying to recover from a major failure as you can be sure that no
488data will be affected unless you actually write to the array. It can
489also be used when creating a RAID1 or RAID10 if you want to avoid the
490initial resync, however this practice - while normally safe - is not
491recommended. Use this ony if you really know what you are doing.
dd0781e5 492
2ae555c3
NB
493.TP
494.BR --backup-file=
495This is needed when --grow is used to increase the number of
496raid-devices in a RAID5 if there are no spare devices available.
497See the section below on RAID_DEVICE CHANGES. The file should be
498stored on a separate device, not on the raid array being reshaped.
499
947fd4dd
NB
500.TP
501.BR -N ", " --name=
502Set a
503.B name
504for the array. This is currently only effective when creating an
505array with a version-1 superblock. The name is a simple textual
506string that can be used to identify array components when assembling.
507
dd0781e5
NB
508.TP
509.BR -R ", " --run
510Insist that
511.I mdadm
512run the array, even if some of the components
513appear to be active in another array or filesystem. Normally
514.I mdadm
515will ask for confirmation before including such components in an
516array. This option causes that question to be suppressed.
517
518.TP
519.BR -f ", " --force
520Insist that
521.I mdadm
522accept the geometry and layout specified without question. Normally
523.I mdadm
524will not allow creation of an array with only one device, and will try
525to create a raid5 array with one missing drive (as this makes the
526initial resync work faster). With
527.BR --force ,
528.I mdadm
529will not try to be so clever.
530
531.TP
532.BR -a ", " "--auto{=no,yes,md,mdp,part,p}{NN}"
48f7b27a
NB
533Instruct mdadm to create the device file if needed, possibly allocating
534an unused minor number. "md" causes a non-partitionable array
dd0781e5 535to be used. "mdp", "part" or "p" causes a partitionable array (2.6 and
2ae555c3 536later) to be used. "yes" requires the named md device to have
f9c25f1d 537a 'standard' format, and the type and minor number will be determined
48f7b27a
NB
538from this. See DEVICE NAMES below.
539
a9d69660 540The argument can also come immediately after
dd0781e5
NB
541"-a". e.g. "-ap".
542
1337546d
NB
543If
544.I --scan
545is also given, then any
546.I auto=
547entries in the config file will over-ride the
548.I --auto
549instruction given on the command line.
550
dd0781e5
NB
551For partitionable arrays,
552.I mdadm
553will create the device file for the whole array and for the first 4
554partitions. A different number of partitions can be specified at the
555end of this option (e.g.
556.BR --auto=p7 ).
2ae555c3 557If the device name ends with a digit, the partition names add a 'p',
48f7b27a 558and a number, e.g. "/dev/home1p3". If there is no
dd0781e5
NB
559trailing digit, then the partition names just have a number added,
560e.g. "/dev/scratch3".
561
48f7b27a
NB
562If the md device name is in a 'standard' format as described in DEVICE
563NAMES, then it will be created, if necessary, with the appropriate
564number based on that name. If the device name is not in one of these
a9d69660 565formats, then a unused minor number will be allocated. The minor
48f7b27a
NB
566number will be considered unused if there is no active array for that
567number, and there is no entry in /dev for that number and with a
568non-standard name.
569
52826846
NB
570.SH For assemble:
571
cd29a5c8
NB
572.TP
573.BR -u ", " --uuid=
574uuid of array to assemble. Devices which don't have this uuid are
575excluded
576
577.TP
578.BR -m ", " --super-minor=
579Minor number of device that array was created for. Devices which
580don't have this minor number are excluded. If you create an array as
2d465520 581/dev/md1, then all superblocks will contain the minor number 1, even if
cd29a5c8
NB
582the array is later assembled as /dev/md2.
583
d013a55e
NB
584Giving the literal word "dev" for
585.B --super-minor
586will cause
587.I mdadm
588to use the minor number of the md device that is being assembled.
589e.g. when assembling
590.BR /dev/md0 ,
591.M --super-minor=dev
592will look for super blocks with a minor number of 0.
593
947fd4dd
NB
594.TP
595.BR -N ", " --name=
596Specify the name of the array to assemble. This must be the name
597that was specified when creating the array.
598
cd29a5c8
NB
599.TP
600.BR -f ", " --force
52826846
NB
601Assemble the array even if some superblocks appear out-of-date
602
cd29a5c8
NB
603.TP
604.BR -R ", " --run
605Attempt to start the array even if fewer drives were given than are
606needed for a full array. Normally if not all drives are found and
607.B --scan
608is not used, then the array will be assembled but not started.
609With
610.B --run
611an attempt will be made to start it anyway.
52826846 612
dd0781e5
NB
613.TP
614.BR -a ", " "--auto{=no,yes,md,mdp,part}"
615See this option under Create and Build options.
616
e793c2e5
NB
617.TP
618.BR -b ", " --bitmap=
2ae555c3
NB
619Specify the bitmap file that was given when the array was created. If
620an array has an
621.B internal
622bitmap, there is no need to specify this when assembling the array.
623
624.TP
625.BR --backup-file=
626If
627.B --backup-file
628was used to grow the number of raid-devices in a RAID5, and the system
629crashed during the critical section, then the same
630.B --backup-file
631must be presented to --assemble to allow possibly corrupted data to be
632restored.
e793c2e5 633
5787fa49
NB
634.TP
635.BR -U ", " --update=
636Update the superblock on each device while assembling the array. The
feb716e9
NB
637argument given to this flag can be one of
638.BR sparc2.2 ,
639.BR summaries ,
7d99579f 640.BR uuid ,
e5329c37 641.BR resync ,
586ed405 642.BR byteorder ,
5787fa49
NB
643or
644.BR super-minor .
645
646The
647.B sparc2.2
7d99579f 648option will adjust the superblock of an array what was created on a Sparc
5787fa49
NB
649machine running a patched 2.2 Linux kernel. This kernel got the
650alignment of part of the superblock wrong. You can use the
651.B "--examine --sparc2.2"
652option to
653.I mdadm
654to see what effect this would have.
655
656The
657.B super-minor
658option will update the
2ae555c3 659.B "preferred minor"
5787fa49 660field on each superblock to match the minor number of the array being
feb716e9 661assembled. This is not needed on 2.6 and later kernels as they make
5787fa49
NB
662this adjustment automatically.
663
7d99579f
NB
664The
665.B uuid
666option will change the uuid of the array. If a UUID is given with the
667"--uuid" option that UUID will be used as a new UUID and with
668.B NOT
669be used to help identify the devices in the array.
670If no "--uuid" is given, a random uuid is chosen.
671
e5329c37
NB
672The
673.B resync
674option will cause the array to be marked
675.I dirty
676meaning that any redundancy in the array (e.g. parity for raid5,
677copies for raid1) may be incorrect. This will cause the raid system
678to perform a "resync" pass to make sure that all redundant information
679is correct.
680
586ed405
NB
681The
682.B byteorder
683option allows arrays to be moved between machines with different
684byte-order.
2ae555c3 685When assembling such an array for the first time after a move, giving
586ed405
NB
686.B "--update=byteorder"
687will cause
688.I mdadm
689to expect superblocks to have their byteorder reversed, and will
690correct that order before assembling the array. This is only valid
2ae555c3 691with original (Version 0.90) superblocks.
586ed405 692
feb716e9
NB
693The
694.B summaries
695option will correct the summaries in the superblock. That is the
696counts of total, working, active, failed, and spare devices.
5787fa49 697
e0d19036 698.SH For Manage mode:
52826846 699
cd29a5c8
NB
700.TP
701.BR -a ", " --add
2ae555c3 702hot-add listed devices.
52826846 703
fe80f49b
NB
704.TP
705.BR --re-add
2ae555c3 706re-add a device that was recently removed from an array.
fe80f49b 707
cd29a5c8
NB
708.TP
709.BR -r ", " --remove
2d465520 710remove listed devices. They must not be active. i.e. they should
cd29a5c8 711be failed or spare devices.
52826846 712
cd29a5c8
NB
713.TP
714.BR -f ", " --fail
715mark listed devices as faulty.
52826846 716
cd29a5c8
NB
717.TP
718.BR --set-faulty
719same as --fail.
52826846 720
2ae555c3
NB
721.P
722Each of these options require that the first device list is the array
723to be acted upon and the remainder are component devices to be added,
724removed, or marked as fault. Several different operations can be
725specified for different devices, e.g.
726.in +5
727mdadm /dev/md0 --add /dev/sda1 --fail /dev/sdb1 --remove /dev/sdb1
728.in -5
729Each operation applies to all devices listed until the next
730operations.
731
732If an array is using a write-intent bitmap, then devices which have
733been removed can be re-added in a way that avoids a full
734reconstruction but instead just updated the blocks that have changed
735since the device was removed. For arrays with persistent metadata
736(superblocks) this is done automatically. For arrays created with
737.B --build
738mdadm needs to be told that this device we removed recently with
739.B --re-add.
740
741Devices can only be removed from an array if they are not in active
742use. i.e. that must be spares or failed devices. To remove an active
743device, it must be marked as
744.B faulty
745first.
746
747.SH For Misc mode:
748
749.TP
750.BR -Q ", " --query
751Examine a device to see
752(1) if it is an md device and (2) if it is a component of an md
753array.
754Information about what is discovered is presented.
755
756.TP
757.BR -D ", " --detail
758Print detail of one or more md devices.
5787fa49 759
2ae555c3
NB
760.TP
761.BR -E ", " --examine
762Print content of md superblock on device(s).
5787fa49
NB
763.TP
764.B --sparc2.2
a9d69660 765If an array was created on a 2.2 Linux kernel patched with RAID
5787fa49
NB
766support, the superblock will have been created incorrectly, or at
767least incompatibly with 2.4 and later kernels. Using the
768.B --sparc2.2
769flag with
770.B --examine
771will fix the superblock before displaying it. If this appears to do
772the right thing, then the array can be successfully assembled using
773.BR "--assemble --update=sparc2.2" .
774
2ae555c3
NB
775.TP
776.BR -X ", " --examine-bitmap
777Report information about a bitmap file.
e0d19036 778
cd29a5c8
NB
779.TP
780.BR -R ", " --run
781start a partially built array.
52826846 782
cd29a5c8
NB
783.TP
784.BR -S ", " --stop
785deactivate array, releasing all resources.
52826846 786
cd29a5c8
NB
787.TP
788.BR -o ", " --readonly
789mark array as readonly.
52826846 790
cd29a5c8
NB
791.TP
792.BR -w ", " --readwrite
793mark array as readwrite.
52826846 794
e0d19036
NB
795.TP
796.B --zero-superblock
797If the device contains a valid md superblock, the block is
798over-written with zeros. With
799--force
800the block where the superblock would be is over-written even if it
801doesn't appear to be valid.
52826846 802
feb716e9
NB
803.TP
804.BR -t ", " --test
805When used with
806.BR --detail ,
807the exit status of
808.I mdadm
809is set to reflect the status of the device.
810
e0d19036
NB
811.SH For Monitor mode:
812.TP
813.BR -m ", " --mail
814Give a mail address to send alerts to.
815
816.TP
817.BR -p ", " --program ", " --alert
818Give a program to be run whenever an event is detected.
819
773135f5
NB
820.TP
821.BR -y ", " --syslog
822Cause all events to be reported through 'syslog'. The messages have
823facility of 'daemon' and varying priorities.
824
e0d19036
NB
825.TP
826.BR -d ", " --delay
827Give a delay in seconds.
828.B mdadm
829polls the md arrays and then waits this many seconds before polling
830again. The default is 60 seconds.
831
d013a55e
NB
832.TP
833.BR -f ", " --daemonise
834Tell
835.B mdadm
836to run as a background daemon if it decides to monitor anything. This
837causes it to fork and run in the child, and to disconnect form the
838terminal. The process id of the child is written to stdout.
839This is useful with
840.B --scan
841which will only continue monitoring if a mail address or alert program
842is found in the config file.
843
b5e64645
NB
844.TP
845.BR -i ", " --pid-file
846When
847.B mdadm
848is running in daemon mode, write the pid of the daemon process to
849the specified file, instead of printing it on standard output.
850
aa88f531
NB
851.TP
852.BR -1 ", " --oneshot
853Check arrays only once. This will generate
854.B NewArray
855events and more significantly
856.B DegradedArray
a9d69660
NB
857and
858.B SparesMissing
aa88f531
NB
859events. Running
860.in +5
861.B " mdadm --monitor --scan -1"
862.in -5
863from a cron script will ensure regular notification of any degraded arrays.
864
98c6faba
NB
865.TP
866.BR -t ", " --test
867Generate a
868.B TestMessage
869alert for every array found at startup. This alert gets mailed and
870passed to the alert program. This can be used for testing that alert
a9d69660 871message do get through successfully.
98c6faba 872
e0d19036 873.SH ASSEMBLE MODE
52826846 874
cd29a5c8
NB
875.HP 12
876Usage:
9a9dab36 877.B mdadm --assemble
5787fa49
NB
878.I md-device options-and-component-devices...
879.HP 12
880Usage:
881.B mdadm --assemble --scan
882.I md-devices-and-options...
cd29a5c8
NB
883.HP 12
884Usage:
9a9dab36 885.B mdadm --assemble --scan
cd29a5c8 886.I options...
52826846 887
cd29a5c8 888.PP
52826846 889This usage assembles one or more raid arrays from pre-existing components.
9a9dab36 890For each array, mdadm needs to know the md device, the identity of the
e0d19036 891array, and a number of component-devices. These can be found in a number of ways.
52826846 892
5787fa49
NB
893In the first usage example (without the
894.BR --scan )
895the first device given is the md device.
896In the second usage example, all devices listed are treated as md
897devices and assembly is attempted.
898In the third (where no devices are listed) all md devices that are
899listed in the configuration file are assembled.
52826846 900
d013a55e
NB
901If precisely one device is listed, but
902.B --scan
dd0781e5 903is not given, then
d013a55e
NB
904.I mdadm
905acts as though
906.B --scan
907was given and identify information is extracted from the configuration file.
908
2ae555c3 909The identity can be given with the
52826846 910.B --uuid
cd29a5c8
NB
911option, with the
912.B --super-minor
5787fa49 913option, can be found in the config file, or will be taken from the
e0d19036 914super block on the first component-device listed on the command line.
52826846 915
2ae555c3 916Devices can be given on the
52826846 917.B --assemble
5787fa49
NB
918command line or in the config file. Only devices which have an md
919superblock which contains the right identity will be considered for
920any array.
52826846 921
2ae555c3 922The config file is only used if explicitly named with
52826846 923.B --config
d013a55e 924or requested with (a possibly implicit)
2ae555c3 925.B --scan.
52826846 926In the later case,
9a9dab36 927.B /etc/mdadm.conf
52826846
NB
928is used.
929
2ae555c3 930If
52826846 931.B --scan
cd29a5c8
NB
932is not given, then the config file will only be used to find the
933identity of md arrays.
52826846 934
2d465520 935Normally the array will be started after it is assembled. However if
cd29a5c8 936.B --scan
2d465520 937is not given and insufficient drives were listed to start a complete
cd29a5c8
NB
938(non-degraded) array, then the array is not started (to guard against
939usage errors). To insist that the array be started in this case (as
1a7dfc35 940may work for RAID1, 4, 5, 6, or 10), give the
cd29a5c8
NB
941.B --run
942flag.
52826846 943
dd0781e5
NB
944If an
945.B auto
946option is given, either on the command line (--auto) or in the
947configuration file (e.g. auto=part), then
948.I mdadm
949will create the md device if necessary or will re-create it if it
950doesn't look usable as it is.
951
952This can be useful for handling partitioned devices (which don't have
953a stable device number - it can change after a reboot) and when using
954"udev" to manage your
955.B /dev
956tree (udev cannot handle md devices because of the unusual device
957initialisation conventions).
958
959If the option to "auto" is "mdp" or "part" or (on the command line
960only) "p", then mdadm will create a partitionable array, using the
2ae555c3 961first free one that is not in use, and does not already have an entry
dd0781e5
NB
962in /dev (apart from numeric /dev/md* entries).
963
964If the option to "auto" is "yes" or "md" or (on the command line)
965nothing, then mdadm will create a traditional, non-partitionable md
966array.
967
968It is expected that the "auto" functionality will be used to create
969device entries with meaningful names such as "/dev/md/home" or
970"/dev/md/root", rather than names based on the numerical array number.
971
972When using this option to create a partitionable array, the device
973files for the first 4 partitions are also created. If a different
974number is required it can be simply appended to the auto option.
975e.g. "auto=part8". Partition names are created by appending a digit
a9d69660 976string to the device name, with an intervening "p" if the device name
dd0781e5
NB
977ends with a digit.
978
979The
980.B --auto
981option is also available in Build and Create modes. As those modes do
982not use a config file, the "auto=" config option does not apply to
983these modes.
52826846 984
cd29a5c8 985.SH BUILD MODE
52826846 986
cd29a5c8
NB
987.HP 12
988Usage:
9a9dab36 989.B mdadm --build
cd29a5c8
NB
990.I device
991.BI --chunk= X
992.BI --level= Y
b83d95f3 993.BI --raid-devices= Z
cd29a5c8
NB
994.I devices
995
996.PP
2ae555c3 997This usage is similar to
cd29a5c8 998.BR --create .
a9d69660 999The difference is that it creates an array without a superblock. With
cd29a5c8 1000these arrays there is no difference between initially creating the array and
52826846
NB
1001subsequently assembling the array, except that hopefully there is useful
1002data there in the second case.
1003
a9d69660
NB
1004The level may raid0, linear, multipath, or faulty, or one of their
1005synonyms. All devices must be listed and the array will be started
1006once complete.
cd29a5c8
NB
1007
1008.SH CREATE MODE
1009
1010.HP 12
1011Usage:
9a9dab36 1012.B mdadm --create
cd29a5c8
NB
1013.I device
1014.BI --chunk= X
1015.BI --level= Y
1016.br
b83d95f3 1017.BI --raid-devices= Z
cd29a5c8
NB
1018.I devices
1019
1020.PP
1021This usage will initialise a new md array, associate some devices with
1022it, and activate the array.
1023
a9d69660 1024If the
dd0781e5
NB
1025.B --auto
1026option is given (as described in more detail in the section on
1027Assemble mode), then the md device will be created with a suitable
1028device number if necessary.
1029
cd29a5c8 1030As devices are added, they are checked to see if they contain raid
2d465520 1031superblocks or filesystems. They are also checked to see if the variance in
cd29a5c8
NB
1032device size exceeds 1%.
1033
1034If any discrepancy is found, the array will not automatically be run, though
2ae555c3 1035the presence of a
cd29a5c8
NB
1036.B --run
1037can override this caution.
1038
2d465520 1039To create a "degraded" array in which some devices are missing, simply
d013a55e 1040give the word "\fBmissing\fP"
2d465520
NB
1041in place of a device name. This will cause
1042.B mdadm
1043to leave the corresponding slot in the array empty.
1044For a RAID4 or RAID5 array at most one slot can be
98c6faba 1045"\fBmissing\fP"; for a RAID6 array at most two slots.
2d465520
NB
1046For a RAID1 array, only one real device needs to be given. All of the
1047others can be
d013a55e 1048"\fBmissing\fP".
2d465520 1049
feb716e9
NB
1050When creating a RAID5 array,
1051.B mdadm
1052will automatically create a degraded array with an extra spare drive.
1053This is because building the spare into a degraded array is in general faster than resyncing
1054the parity on a non-degraded, but not clean, array. This feature can
1055be over-ridden with the
b5e64645 1056.I --force
feb716e9
NB
1057option.
1058
2ae555c3 1059'''If the
cd29a5c8 1060'''.B --size
e0d19036 1061'''option is given, it is not necessary to list any component-devices in this command.
cd29a5c8 1062'''They can be added later, before a
2ae555c3
NB
1063'''.B --run.
1064'''If no
cd29a5c8
NB
1065'''.B --size
1066'''is given, the apparent size of the smallest drive given is used.
1067
1068The General Management options that are valid with --create are:
1069.TP
1070.B --run
dd0781e5 1071insist on running the array even if some devices look like they might
cd29a5c8
NB
1072be in use.
1073
1074.TP
1075.B --readonly
1076start the array readonly - not supported yet.
52826846 1077
2ae555c3 1078
e0d19036 1079.SH MANAGE MODE
cd29a5c8
NB
1080.HP 12
1081Usage:
e0d19036
NB
1082.B mdadm
1083.I device
1084.I options... devices...
cd29a5c8
NB
1085.PP
1086
e0d19036
NB
1087This usage will allow individual devices in an array to be failed,
1088removed or added. It is possible to perform multiple operations with
1089on command. For example:
1090.br
5787fa49 1091.B " mdadm /dev/md0 -f /dev/hda1 -r /dev/hda1 -a /dev/hda1"
e0d19036
NB
1092.br
1093will firstly mark
1094.B /dev/hda1
1095as faulty in
1096.B /dev/md0
1097and will then remove it from the array and finally add it back
2d465520 1098in as a spare. However only one md array can be affected by a single
2ae555c3 1099command.
e0d19036
NB
1100
1101.SH MISC MODE
1102.HP 12
1103Usage:
9a9dab36 1104.B mdadm
e0d19036
NB
1105.I options ...
1106.I devices ...
1107.PP
cd29a5c8 1108
b5e64645 1109MISC mode includes a number of distinct operations that
e0d19036
NB
1110operate on distinct devices. The operations are:
1111.TP
1112--query
1113The device is examined to see if it is
1114(1) an active md array, or
1115(2) a component of an md array.
1116The information discovered is reported.
1117
1118.TP
1119--detail
2d465520
NB
1120The device should be an active md device.
1121.B mdadm
1122will display a detailed description of the array.
cd29a5c8 1123.B --brief
2d465520
NB
1124or
1125.B --scan
1126will cause the output to be less detailed and the format to be
e0d19036 1127suitable for inclusion in
9a9dab36 1128.BR /etc/mdadm.conf .
feb716e9
NB
1129The exit status of
1130.I mdadm
1131will normally be 0 unless
1132.I mdadm
1133failed to get useful information about the device(s). However if the
1134.B --test
1135option is given, then the exit status will be:
1136.RS
1137.TP
11380
1139The array is functioning normally.
1140.TP
11411
1142The array has at least one failed device.
1143.TP
11442
1145The array has multiple failed devices and hence is unusable (raid4 or
1146raid5).
1147.TP
11484
1149There was an error while trying to get information about the device.
1150.RE
cd29a5c8 1151
e0d19036
NB
1152.TP
1153--examine
2d465520
NB
1154The device should be a component of an md array.
1155.B mdadm
1156will read the md superblock of the device and display the contents.
e0d19036
NB
1157If
1158.B --brief
1159is given, or
1160.B --scan
1161then multiple devices that are components of the one array
1162are grouped together and reported in a single entry suitable
1163for inclusion in
1164.BR /etc/mdadm.conf .
1165
2d465520 1166Having
e0d19036
NB
1167.B --scan
1168without listing any devices will cause all devices listed in the
1169config file to be examined.
1170
1171.TP
1172--stop
98c6faba
NB
1173The devices should be active md arrays which will be deactivated, as
1174long as they are not currently in use.
e0d19036
NB
1175
1176.TP
1177--run
1178This will fully activate a partially assembled md array.
1179
1180.TP
1181--readonly
1182This will mark an active array as read-only, providing that it is
1183not currently being used.
1184
1185.TP
1186--readwrite
1187This will change a
1188.B readonly
1189array back to being read/write.
1190
2d465520
NB
1191.TP
1192--scan
1193For all operations except
1194.BR --examine ,
1195.B --scan
1196will cause the operation to be applied to all arrays listed in
1197.BR /proc/mdstat .
1198For
1199.BR --examine,
1200.B --scan
1201causes all devices listed in the config file to be examined.
1202
1203
e0d19036
NB
1204.SH MONITOR MODE
1205
cd29a5c8
NB
1206.HP 12
1207Usage:
e0d19036
NB
1208.B mdadm --monitor
1209.I options... devices...
1210
cd29a5c8 1211.PP
e0d19036
NB
1212This usage causes
1213.B mdadm
1214to periodically poll a number of md arrays and to report on any events
1215noticed.
1216.B mdadm
1217will never exit once it decides that there are arrays to be checked,
1218so it should normally be run in the background.
1219
2d465520
NB
1220As well as reporting events,
1221.B mdadm
1222may move a spare drive from one array to another if they are in the
1223same
1224.B spare-group
a9d69660 1225and if the destination array has a failed drive but no spares.
2d465520 1226
e0d19036
NB
1227If any devices are listed on the command line,
1228.B mdadm
1229will only monitor those devices. Otherwise all arrays listed in the
1230configuration file will be monitored. Further, if
1231.B --scan
1232is given, then any other md devices that appear in
1233.B /proc/mdstat
1234will also be monitored.
1235
1236The result of monitoring the arrays is the generation of events.
bd526cee 1237These events are passed to a separate program (if specified) and may
2d465520 1238be mailed to a given E-mail address.
e0d19036 1239
bd526cee 1240When passing event to program, the program is run once for each event
2ae555c3 1241and is given 2 or 3 command-line arguments. The first is the
bd526cee
NB
1242name of the event (see below). The second is the name of the
1243md device which is affected, and the third is the name of a related
1244device if relevant, such as a component device that has failed.
cd29a5c8
NB
1245
1246If
1247.B --scan
e0d19036
NB
1248is given, then a program or an E-mail address must be specified on the
1249command line or in the config file. If neither are available, then
1250.B mdadm
1251will not monitor anything.
1252Without
cd29a5c8 1253.B --scan
e0d19036 1254.B mdadm
2d465520 1255will continue monitoring as long as something was found to monitor. If
e0d19036
NB
1256no program or email is given, then each event is reported to
1257.BR stdout .
cd29a5c8 1258
e0d19036
NB
1259The different events are:
1260
1261.RS 4
1262.TP
1263.B DeviceDisappeared
2d465520 1264An md array which previously was configured appears to no longer be
773135f5 1265configured. (syslog priority: Critical)
e0d19036 1266
b8f72a62
NB
1267If
1268.I mdadm
1269was told to monitor an array which is RAID0 or Linear, then it will
1270report
1271.B DeviceDisappeared
1272with the extra information
1273.BR Wrong-Level .
1274This is because RAID0 and Linear do not support the device-failed,
1275hot-spare and resync operations which are monitored.
1276
e0d19036
NB
1277.TP
1278.B RebuildStarted
773135f5 1279An md array started reconstruction. (syslog priority: Warning)
e0d19036
NB
1280
1281.TP
1282.BI Rebuild NN
1283Where
1284.I NN
1285is 20, 40, 60, or 80, this indicates that rebuild has passed that many
773135f5 1286percentage of the total. (syslog priority: Warning)
e0d19036 1287
98c6faba
NB
1288.TP
1289.B RebuildFinished
1290An md array that was rebuilding, isn't any more, either because it
773135f5 1291finished normally or was aborted. (syslog priority: Warning)
98c6faba 1292
e0d19036
NB
1293.TP
1294.B Fail
773135f5
NB
1295An active component device of an array has been marked as
1296faulty. (syslog priority: Critical)
e0d19036
NB
1297
1298.TP
1299.B FailSpare
1300A spare component device which was being rebuilt to replace a faulty
773135f5 1301device has failed. (syslog priority: Critial)
e0d19036
NB
1302
1303.TP
1304.B SpareActive
1305A spare component device which was being rebuilt to replace a faulty
1306device as been successfully rebuild and has been made active.
773135f5 1307(syslog priority: Info)
e0d19036
NB
1308
1309.TP
1310.B NewArray
1311A new md array has been detected in the
1312.B /proc/mdstat
773135f5 1313file. (syslog priority: Info)
e0d19036 1314
aa88f531
NB
1315.TP
1316.B DegradedArray
1317A newly noticed array appears to be degraded. This message is not
1318generated when
1319.I mdadm
1320notices a drive failure which causes degradation, but only when
1321.I mdadm
1322notices that an array is degraded when it first sees the array.
773135f5 1323(syslog priority: Critial)
aa88f531 1324
e0d19036
NB
1325.TP
1326.B MoveSpare
1327A spare drive has been moved from one array in a
1328.B spare-group
1329to another to allow a failed drive to be replaced.
773135f5 1330(syslog priority: Info)
e0d19036 1331
b8f72a62
NB
1332.TP
1333.B SparesMissing
1334If
1335.I mdadm
1336has been told, via the config file, that an array should have a certain
1337number of spare devices, and
1338.I mdadm
1339detects that it has fewer that this number when it first sees the
1340array, it will report a
1341.B SparesMissing
1342message.
d1732eeb 1343(syslog priority: Warning)
b8f72a62 1344
98c6faba
NB
1345.TP
1346.B TestMessage
1347An array was found at startup, and the
1348.B --test
1349flag was given.
773135f5 1350(syslog priority: Info)
e0d19036
NB
1351.RE
1352
1353Only
98c6faba
NB
1354.B Fail ,
1355.B FailSpare ,
1356.B DegradedArray ,
d1732eeb 1357.B SparesMissing ,
e0d19036 1358and
98c6faba 1359.B TestMessage
e0d19036
NB
1360cause Email to be sent. All events cause the program to be run.
1361The program is run with two or three arguments, they being the event
1362name, the array device and possibly a second device.
1363
1364Each event has an associated array device (e.g.
1365.BR /dev/md1 )
1366and possibly a second device. For
1367.BR Fail ,
1368.BR FailSpare ,
1369and
1370.B SpareActive
1371the second device is the relevant component device.
1372For
1373.B MoveSpare
1374the second device is the array that the spare was moved from.
1375
1376For
1377.B mdadm
1378to move spares from one array to another, the different arrays need to
1379be labelled with the same
1380.B spare-group
1381in the configuration file. The
1382.B spare-group
1383name can be any string. It is only necessary that different spare
2d465520 1384groups use different names.
e0d19036
NB
1385
1386When
9a9dab36 1387.B mdadm
e0d19036
NB
1388detects that an array which is in a spare group has fewer active
1389devices than necessary for the complete array, and has no spare
1390devices, it will look for another array in the same spare group that
1391has a full complement of working drive and a spare. It will then
1392attempt to remove the spare from the second drive and add it to the
1393first.
1394If the removal succeeds but the adding fails, then it is added back to
1395the original array.
1396
dd0781e5
NB
1397.SH GROW MODE
1398The GROW mode is used for changing the size or shape of an active
1399array.
1400For this to work, the kernel must support the necessary change.
2ae555c3 1401Various types of growth are being added during 2.6 development,
dd0781e5
NB
1402including restructuring a raid5 array to have more active devices.
1403
dfd4d8ee
NB
1404Currently the only support available is to
1405.IP \(bu 4
1406change the "size" attribute
1407for RAID1, RAID5 and RAID6.
1408.IP \(bu 4
2ae555c3 1409increase the "raid-disks" attribute of RAID1 and RAID5.
dfd4d8ee 1410.IP \(bu 4
2ae555c3
NB
1411add a write-intent bitmap to any array which support these bitmaps, or
1412remove a write-intent bitmap from such an array.
dfd4d8ee 1413.PP
dd0781e5 1414
2ae555c3 1415.SS SIZE CHANGES
fe80f49b 1416Normally when an array is built the "size" it taken from the smallest
dd0781e5
NB
1417of the drives. If all the small drives in an arrays are, one at a
1418time, removed and replaced with larger drives, then you could have an
1419array of large drives with only a small amount used. In this
1420situation, changing the "size" with "GROW" mode will allow the extra
1421space to start being used. If the size is increased in this way, a
1422"resync" process will start to make sure the new parts of the array
1423are synchronised.
1424
1425Note that when an array changes size, any filesystem that may be
1426stored in the array will not automatically grow to use the space. The
1427filesystem will need to be explicitly told to use the extra space.
1428
2ae555c3
NB
1429.SS RAID-DEVICES CHANGES
1430
dd0781e5
NB
1431A RAID1 array can work with any number of devices from 1 upwards
1432(though 1 is not very useful). There may be times which you want to
1433increase or decrease the number of active devices. Note that this is
1434different to hot-add or hot-remove which changes the number of
1435inactive devices.
1436
1437When reducing the number of devices in a RAID1 array, the slots which
1438are to be removed from the array must already be vacant. That is, the
1439devices that which were in those slots must be failed and removed.
1440
1441When the number of devices is increased, any hot spares that are
a9d69660 1442present will be activated immediately.
dd0781e5 1443
2ae555c3
NB
1444Increasing the number of active devices in a RAID5 is much more
1445effort. Every block in the array will need to be read and written
1446back to a new location. From 2.6.17, the Linux Kernel is able to do
1447this safely, including restart and interrupted "reshape".
1448
1449When relocating the first few stripes on a raid5, it is not possible
1450to keep the data on disk completely consistent and crash-proof. To
1451provide the required safety, mdadm disables writes to the array while
1452this "critical section" is reshaped, and takes a backup of the data
1453that is in that section. This backup is normally stored in any spare
1454devices that the array has, however it can also be stored in a
1455separate file specified with the
1456.B --backup-file
1457option. If this option is used, and the system does crash during the
1458critical period, the same file must be passed to
1459.B --assemble
1460to restore the backup and reassemble the array.
1461
1462.SS BITMAP CHANGES
1463
1464A write-intent bitmap can be added to, or removed from, an active
1465array. Either internal bitmaps, or bitmaps stored in a separate file
fe80f49b
NB
1466can be added. Note that if you add a bitmap stored in a file which is
1467in a filesystem that is on the raid array being affected, the system
1468will deadlock. The bitmap must be on a separate filesystem.
1469
2d465520
NB
1470.SH EXAMPLES
1471
5787fa49 1472.B " mdadm --query /dev/name-of-device"
2d465520 1473.br
5787fa49
NB
1474This will find out if a given device is a raid array, or is part of
1475one, and will provide brief information about the device.
2d465520 1476
5787fa49 1477.B " mdadm --assemble --scan"
2d465520 1478.br
2ae555c3 1479This will assemble and start all arrays listed in the standard config file
5787fa49 1480file. This command will typically go in a system startup file.
2d465520 1481
2d465520 1482.B " mdadm --stop --scan"
5787fa49
NB
1483.br
1484This will shut down all array that can be shut down (i.e. are not
19f8b8fc 1485currently in use). This will typically go in a system shutdown script.
2d465520 1486
5787fa49 1487.B " mdadm --follow --scan --delay=120"
2d465520 1488.br
5787fa49
NB
1489If (and only if) there is an Email address or program given in the
1490standard config file, then
1491monitor the status of all arrays listed in that file by
1492polling them ever 2 minutes.
2d465520 1493
5787fa49 1494.B " mdadm --create /dev/md0 --level=1 --raid-devices=2 /dev/hd[ac]1"
2d465520 1495.br
5787fa49 1496Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
2d465520 1497
2d465520
NB
1498.br
1499.B " echo 'DEVICE /dev/hd*[0-9] /dev/sd*[0-9]' > mdadm.conf"
1500.br
1501.B " mdadm --detail --scan >> mdadm.conf"
1502.br
5787fa49
NB
1503This will create a prototype config file that describes currently
1504active arrays that are known to be made from partitions of IDE or SCSI drives.
2d465520
NB
1505This file should be reviewed before being used as it may
1506contain unwanted detail.
1507
2d465520
NB
1508.B " echo 'DEVICE /dev/hd[a-z] /dev/sd*[a-z]' > mdadm.conf"
1509.br
5787fa49
NB
1510.B " mdadm --examine --scan --config=mdadm.conf >> mdadm.conf"
1511.ber
2ae555c3 1512This will find what arrays could be assembled from existing IDE and
5787fa49
NB
1513SCSI whole drives (not partitions) and store the information is the
1514format of a config file.
2d465520
NB
1515This file is very likely to contain unwanted detail, particularly
1516the
1517.B devices=
5787fa49
NB
1518entries. It should be reviewed and edited before being used as an
1519actual config file.
2d465520 1520
5787fa49 1521.B " mdadm --examine --brief --scan --config=partitions"
2d465520 1522.br
5787fa49
NB
1523.B " mdadm -Ebsc partitions"
1524.br
1525Create a list of devices by reading
1526.BR /proc/partitions ,
1527scan these for RAID superblocks, and printout a brief listing of all
1528that was found.
2d465520 1529
5787fa49 1530.B " mdadm -Ac partitions -m 0 /dev/md0"
2d465520 1531.br
5787fa49
NB
1532Scan all partitions and devices listed in
1533.BR /proc/partitions
1534and assemble
1535.B /dev/md0
1536out of all such devices with a RAID superblock with a minor number of 0.
2d465520 1537
d013a55e
NB
1538.B " mdadm --monitor --scan --daemonise > /var/run/mdadm"
1539.br
1540If config file contains a mail address or alert program, run mdadm in
1541the background in monitor mode monitoring all md devices. Also write
1542pid of mdadm daemon to
1543.BR /var/run/mdadm .
1544
5787fa49 1545.B " mdadm --create --help"
2d465520 1546.br
2ae555c3 1547Provide help about the Create mode.
2d465520 1548
5787fa49
NB
1549.B " mdadm --config --help"
1550.br
1551Provide help about the format of the config file.
2d465520 1552
5787fa49
NB
1553.B " mdadm --help"
1554.br
1555Provide general help.
cd29a5c8 1556
cd29a5c8
NB
1557
1558.SH FILES
1559
1560.SS /proc/mdstat
1561
2ae555c3
NB
1562If you're using the
1563.B /proc
cd29a5c8
NB
1564filesystem,
1565.B /proc/mdstat
2d465520
NB
1566lists all active md devices with information about them.
1567.B mdadm
1568uses this to find arrays when
1569.B --scan
1570is given in Misc mode, and to monitor array reconstruction
1571on Monitor mode.
1572
cd29a5c8 1573
9a9dab36 1574.SS /etc/mdadm.conf
cd29a5c8 1575
11a3e71d
NB
1576The config file lists which devices may be scanned to see if
1577they contain MD super block, and gives identifying information
1578(e.g. UUID) about known MD arrays. See
1579.BR mdadm.conf (5)
1580for more details.
cd29a5c8 1581
48f7b27a
NB
1582.SH DEVICE NAMES
1583
1584While entries in the /dev directory can have any format you like,
1585.I mdadm
1586has an understanding of 'standard' formats which it uses to guide its
1587behaviour when creating device files via the
1588.I --auto
1589option.
1590
1591The standard names for non-partitioned arrays (the only sort of md
1592array available in 2.4 and earlier) either of
1593.IP
1594/dev/mdNN
1595.br
1596/dev/md/NN
1597.PP
1598where NN is a number.
1599The standard names for partitionable arrays (as available from 2.6
1600onwards) is one of
1601.IP
1602/dev/md/dNN
1603.br
1604/dev/md_dNN
1605.PP
1606Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
52826846 1607
2d465520
NB
1608.SH NOTE
1609.B mdadm
1610was previously known as
1611.BR mdctl .
a9d69660
NB
1612.P
1613.B mdadm
1614is completely separate from the
1615.B raidtools
1616package, and does not use the
1617.I /etc/raidtab
1618configuration file at all.
1619
52826846 1620.SH SEE ALSO
cd29a5c8
NB
1621For information on the various levels of
1622RAID, check out:
1623
1624.IP
1625.UR http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1626http://ostenfeld.dk/~jakob/Software-RAID.HOWTO/
1627.UE
a9d69660
NB
1628'''.PP
1629'''for new releases of the RAID driver check out:
1630'''
1631'''.IP
1632'''.UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1633'''ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
1634'''.UE
1635'''.PP
1636'''or
1637'''.IP
1638'''.UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1639'''http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
1640'''.UE
cd29a5c8 1641.PP
2ae555c3 1642The latest version of
a9d69660
NB
1643.I mdadm
1644should always be available from
cd29a5c8 1645.IP
a9d69660
NB
1646.UR http://www.kernel.org/pub/linux/utils/raid/mdadm/
1647http://www.kernel.org/pub/linux/utils/raid/mdadm/
cd29a5c8
NB
1648.UE
1649.PP
a9d69660
NB
1650.IR mdadm.conf (5),
1651.IR md (4).
56eb10c0 1652.PP
52826846
NB
1653.IR raidtab (5),
1654.IR raid0run (8),
1655.IR raidstop (8),
a9d69660 1656.IR mkraid (8).