]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdadm.8.in
Add mbr pseudo metadata handler.
[thirdparty/mdadm.git] / mdadm.8.in
1 .\" -*- nroff -*-
2 .\" Copyright Neil Brown and others.
3 .\" This program is free software; you can redistribute it and/or modify
4 .\" it under the terms of the GNU General Public License as published by
5 .\" the Free Software Foundation; either version 2 of the License, or
6 .\" (at your option) any later version.
7 .\" See file COPYING in distribution for details.
8 .TH MDADM 8 "" v3.1.4
9 .SH NAME
10 mdadm \- manage MD devices
11 .I aka
12 Linux Software RAID
13
14 .SH SYNOPSIS
15
16 .BI mdadm " [mode] <raiddevice> [options] <component-devices>"
17
18 .SH DESCRIPTION
19 RAID devices are virtual devices created from two or more
20 real block devices. This allows multiple devices (typically disk
21 drives or partitions thereof) to be combined into a single device to
22 hold (for example) a single filesystem.
23 Some RAID levels include redundancy and so can survive some degree of
24 device failure.
25
26 Linux Software RAID devices are implemented through the md (Multiple
27 Devices) device driver.
28
29 Currently, Linux supports
30 .B LINEAR
31 md devices,
32 .B RAID0
33 (striping),
34 .B RAID1
35 (mirroring),
36 .BR RAID4 ,
37 .BR RAID5 ,
38 .BR RAID6 ,
39 .BR RAID10 ,
40 .BR MULTIPATH ,
41 .BR FAULTY ,
42 and
43 .BR CONTAINER .
44
45 .B MULTIPATH
46 is not a Software RAID mechanism, but does involve
47 multiple devices:
48 each device is a path to one common physical storage device.
49 New installations should not use md/multipath as it is not well
50 supported and has no ongoing development. Use the Device Mapper based
51 multipath-tools instead.
52
53 .B FAULTY
54 is also not true RAID, and it only involves one device. It
55 provides a layer over a true device that can be used to inject faults.
56
57 .B CONTAINER
58 is different again. A
59 .B CONTAINER
60 is a collection of devices that are
61 managed as a set. This is similar to the set of devices connected to
62 a hardware RAID controller. The set of devices may contain a number
63 of different RAID arrays each utilising some (or all) of the blocks from a
64 number of the devices in the set. For example, two devices in a 5-device set
65 might form a RAID1 using the whole devices. The remaining three might
66 have a RAID5 over the first half of each device, and a RAID0 over the
67 second half.
68
69 With a
70 .BR CONTAINER ,
71 there is one set of metadata that describes all of
72 the arrays in the container. So when
73 .I mdadm
74 creates a
75 .B CONTAINER
76 device, the device just represents the metadata. Other normal arrays (RAID1
77 etc) can be created inside the container.
78
79 .SH MODES
80 mdadm has several major modes of operation:
81 .TP
82 .B Assemble
83 Assemble the components of a previously created
84 array into an active array. Components can be explicitly given
85 or can be searched for.
86 .I mdadm
87 checks that the components
88 do form a bona fide array, and can, on request, fiddle superblock
89 information so as to assemble a faulty array.
90
91 .TP
92 .B Build
93 Build an array that doesn't have per-device metadata (superblocks). For these
94 sorts of arrays,
95 .I mdadm
96 cannot differentiate between initial creation and subsequent assembly
97 of an array. It also cannot perform any checks that appropriate
98 components have been requested. Because of this, the
99 .B Build
100 mode should only be used together with a complete understanding of
101 what you are doing.
102
103 .TP
104 .B Create
105 Create a new array with per-device metadata (superblocks).
106 Appropriate metadata is written to each device, and then the array
107 comprising those devices is activated. A 'resync' process is started
108 to make sure that the array is consistent (e.g. both sides of a mirror
109 contain the same data) but the content of the device is left otherwise
110 untouched.
111 The array can be used as soon as it has been created. There is no
112 need to wait for the initial resync to finish.
113
114 .TP
115 .B "Follow or Monitor"
116 Monitor one or more md devices and act on any state changes. This is
117 only meaningful for RAID1, 4, 5, 6, 10 or multipath arrays, as
118 only these have interesting state. RAID0 or Linear never have
119 missing, spare, or failed drives, so there is nothing to monitor.
120
121 .TP
122 .B "Grow"
123 Grow (or shrink) an array, or otherwise reshape it in some way.
124 Currently supported growth options including changing the active size
125 of component devices and changing the number of active devices in RAID
126 levels 1/4/5/6, changing the RAID level between 1, 5, and 6, changing
127 the chunk size and layout for RAID5 and RAID5, as well as adding or
128 removing a write-intent bitmap.
129
130 .TP
131 .B "Incremental Assembly"
132 Add a single device to an appropriate array. If the addition of the
133 device makes the array runnable, the array will be started.
134 This provides a convenient interface to a
135 .I hot-plug
136 system. As each device is detected,
137 .I mdadm
138 has a chance to include it in some array as appropriate.
139 Optionally, when the
140 .I \-\-fail
141 flag is passed in we will remove the device from any active array
142 instead of adding it.
143
144 If a
145 .B CONTAINER
146 is passed to
147 .I mdadm
148 in this mode, then any arrays within that container will be assembled
149 and started.
150
151 .TP
152 .B Manage
153 This is for doing things to specific components of an array such as
154 adding new spares and removing faulty devices.
155
156 .TP
157 .B Misc
158 This is an 'everything else' mode that supports operations on active
159 arrays, operations on component devices such as erasing old superblocks, and
160 information gathering operations.
161 .\"This mode allows operations on independent devices such as examine MD
162 .\"superblocks, erasing old superblocks and stopping active arrays.
163
164 .TP
165 .B Auto-detect
166 This mode does not act on a specific device or array, but rather it
167 requests the Linux Kernel to activate any auto-detected arrays.
168 .SH OPTIONS
169
170 .SH Options for selecting a mode are:
171
172 .TP
173 .BR \-A ", " \-\-assemble
174 Assemble a pre-existing array.
175
176 .TP
177 .BR \-B ", " \-\-build
178 Build a legacy array without superblocks.
179
180 .TP
181 .BR \-C ", " \-\-create
182 Create a new array.
183
184 .TP
185 .BR \-F ", " \-\-follow ", " \-\-monitor
186 Select
187 .B Monitor
188 mode.
189
190 .TP
191 .BR \-G ", " \-\-grow
192 Change the size or shape of an active array.
193
194 .TP
195 .BR \-I ", " \-\-incremental
196 Add/remove a single device to/from an appropriate array, and possibly start the array.
197
198 .TP
199 .B \-\-auto-detect
200 Request that the kernel starts any auto-detected arrays. This can only
201 work if
202 .I md
203 is compiled into the kernel \(em not if it is a module.
204 Arrays can be auto-detected by the kernel if all the components are in
205 primary MS-DOS partitions with partition type
206 .BR FD ,
207 and all use v0.90 metadata.
208 In-kernel autodetect is not recommended for new installations. Using
209 .I mdadm
210 to detect and assemble arrays \(em possibly in an
211 .I initrd
212 \(em is substantially more flexible and should be preferred.
213
214 .P
215 If a device is given before any options, or if the first option is
216 .BR \-\-add ,
217 .BR \-\-fail ,
218 or
219 .BR \-\-remove ,
220 then the MANAGE mode is assumed.
221 Anything other than these will cause the
222 .B Misc
223 mode to be assumed.
224
225 .SH Options that are not mode-specific are:
226
227 .TP
228 .BR \-h ", " \-\-help
229 Display general help message or, after one of the above options, a
230 mode-specific help message.
231
232 .TP
233 .B \-\-help\-options
234 Display more detailed help about command line parsing and some commonly
235 used options.
236
237 .TP
238 .BR \-V ", " \-\-version
239 Print version information for mdadm.
240
241 .TP
242 .BR \-v ", " \-\-verbose
243 Be more verbose about what is happening. This can be used twice to be
244 extra-verbose.
245 The extra verbosity currently only affects
246 .B \-\-detail \-\-scan
247 and
248 .BR "\-\-examine \-\-scan" .
249
250 .TP
251 .BR \-q ", " \-\-quiet
252 Avoid printing purely informative messages. With this,
253 .I mdadm
254 will be silent unless there is something really important to report.
255
256 .TP
257 .BR \-f ", " \-\-force
258 Be more forceful about certain operations. See the various modes for
259 the exact meaning of this option in different contexts.
260
261 .TP
262 .BR \-c ", " \-\-config=
263 Specify the config file. Default is to use
264 .BR /etc/mdadm.conf ,
265 or if that is missing then
266 .BR /etc/mdadm/mdadm.conf .
267 If the config file given is
268 .B "partitions"
269 then nothing will be read, but
270 .I mdadm
271 will act as though the config file contained exactly
272 .B "DEVICE partitions containers"
273 and will read
274 .B /proc/partitions
275 to find a list of devices to scan, and
276 .B /proc/mdstat
277 to find a list of containers to examine.
278 If the word
279 .B "none"
280 is given for the config file, then
281 .I mdadm
282 will act as though the config file were empty.
283
284 .TP
285 .BR \-s ", " \-\-scan
286 Scan config file or
287 .B /proc/mdstat
288 for missing information.
289 In general, this option gives
290 .I mdadm
291 permission to get any missing information (like component devices,
292 array devices, array identities, and alert destination) from the
293 configuration file (see previous option);
294 one exception is MISC mode when using
295 .B \-\-detail
296 or
297 .B \-\-stop,
298 in which case
299 .B \-\-scan
300 says to get a list of array devices from
301 .BR /proc/mdstat .
302
303 .TP
304 .BR \-e ", " \-\-metadata=
305 Declare the style of RAID metadata (superblock) to be used. The
306 default is {DEFAULT_METADATA} for
307 .BR \-\-create ,
308 and to guess for other operations.
309 The default can be overridden by setting the
310 .B metadata
311 value for the
312 .B CREATE
313 keyword in
314 .BR mdadm.conf .
315
316 Options are:
317 .RS
318 .ie '{DEFAULT_METADATA}'0.90'
319 .IP "0, 0.90, default"
320 .el
321 .IP "0, 0.90"
322 ..
323 Use the original 0.90 format superblock. This format limits arrays to
324 28 component devices and limits component devices of levels 1 and
325 greater to 2 terabytes.
326 .ie '{DEFAULT_METADATA}'0.90'
327 .IP "1, 1.0, 1.1, 1.2"
328 .el
329 .IP "1, 1.0, 1.1, 1.2 default"
330 ..
331 Use the new version-1 format superblock. This has few restrictions.
332 The different sub-versions store the superblock at different locations
333 on the device, either at the end (for 1.0), at the start (for 1.1) or
334 4K from the start (for 1.2). "1" is equivalent to "1.0".
335 'if '{DEFAULT_METADATA}'1.2' "default" is equivalent to "1.2".
336 .IP ddf
337 Use the "Industry Standard" DDF (Disk Data Format) format defined by
338 SNIA.
339 When creating a DDF array a
340 .B CONTAINER
341 will be created, and normal arrays can be created in that container.
342 .IP imsm
343 Use the Intel(R) Matrix Storage Manager metadata format. This creates a
344 .B CONTAINER
345 which is managed in a similar manner to DDF, and is supported by an
346 option-rom on some platforms:
347 .IP
348 .B http://www.intel.com/design/chipsets/matrixstorage_sb.htm
349 .PP
350 .RE
351
352 .TP
353 .B \-\-homehost=
354 This will override any
355 .B HOMEHOST
356 setting in the config file and provides the identity of the host which
357 should be considered the home for any arrays.
358
359 When creating an array, the
360 .B homehost
361 will be recorded in the metadata. For version-1 superblocks, it will
362 be prefixed to the array name. For version-0.90 superblocks, part of
363 the SHA1 hash of the hostname will be stored in the later half of the
364 UUID.
365
366 When reporting information about an array, any array which is tagged
367 for the given homehost will be reported as such.
368
369 When using Auto-Assemble, only arrays tagged for the given homehost
370 will be allowed to use 'local' names (i.e. not ending in '_' followed
371 by a digit string). See below under
372 .BR "Auto Assembly" .
373
374 .SH For create, build, or grow:
375
376 .TP
377 .BR \-n ", " \-\-raid\-devices=
378 Specify the number of active devices in the array. This, plus the
379 number of spare devices (see below) must equal the number of
380 .I component-devices
381 (including "\fBmissing\fP" devices)
382 that are listed on the command line for
383 .BR \-\-create .
384 Setting a value of 1 is probably
385 a mistake and so requires that
386 .B \-\-force
387 be specified first. A value of 1 will then be allowed for linear,
388 multipath, RAID0 and RAID1. It is never allowed for RAID4, RAID5 or RAID6.
389 .br
390 This number can only be changed using
391 .B \-\-grow
392 for RAID1, RAID4, RAID5 and RAID6 arrays, and only on kernels which provide
393 the necessary support.
394
395 .TP
396 .BR \-x ", " \-\-spare\-devices=
397 Specify the number of spare (eXtra) devices in the initial array.
398 Spares can also be added
399 and removed later. The number of component devices listed
400 on the command line must equal the number of RAID devices plus the
401 number of spare devices.
402
403 .TP
404 .BR \-z ", " \-\-size=
405 Amount (in Kibibytes) of space to use from each drive in RAID levels 1/4/5/6.
406 This must be a multiple of the chunk size, and must leave about 128Kb
407 of space at the end of the drive for the RAID superblock.
408 If this is not specified
409 (as it normally is not) the smallest drive (or partition) sets the
410 size, though if there is a variance among the drives of greater than 1%, a warning is
411 issued.
412
413 This value can be set with
414 .B \-\-grow
415 for RAID level 1/4/5/6. If the array was created with a size smaller
416 than the currently active drives, the extra space can be accessed
417 using
418 .BR \-\-grow .
419 The size can be given as
420 .B max
421 which means to choose the largest size that fits on all current drives.
422
423 This value can not be used with
424 .B CONTAINER
425 metadata such as DDF and IMSM.
426
427 .TP
428 .BR \-Z ", " \-\-array-size=
429 This is only meaningful with
430 .B \-\-grow
431 and its effect is not persistent: when the array is stopped an
432 restarted the default array size will be restored.
433
434 Setting the array-size causes the array to appear smaller to programs
435 that access the data. This is particularly needed before reshaping an
436 array so that it will be smaller. As the reshape is not reversible,
437 but setting the size with
438 .B \-\-array-size
439 is, it is required that the array size is reduced as appropriate
440 before the number of devices in the array is reduced.
441
442 .TP
443 .BR \-c ", " \-\-chunk=
444 Specify chunk size of kibibytes. The default when creating an
445 array is 512KB. To ensure compatibility with earlier versions, the
446 default when Building and array with no persistent metadata is 64KB.
447 This is only meaningful for RAID0, RAID4, RAID5, RAID6, and RAID10.
448
449 .TP
450 .BR \-\-rounding=
451 Specify rounding factor for a Linear array. The size of each
452 component will be rounded down to a multiple of this size.
453 This is a synonym for
454 .B \-\-chunk
455 but highlights the different meaning for Linear as compared to other
456 RAID levels. The default is 64K if a kernel earlier than 2.6.16 is in
457 use, and is 0K (i.e. no rounding) in later kernels.
458
459 .TP
460 .BR \-l ", " \-\-level=
461 Set RAID level. When used with
462 .BR \-\-create ,
463 options are: linear, raid0, 0, stripe, raid1, 1, mirror, raid4, 4,
464 raid5, 5, raid6, 6, raid10, 10, multipath, mp, faulty, container.
465 Obviously some of these are synonymous.
466
467 When a
468 .B CONTAINER
469 metadata type is requested, only the
470 .B container
471 level is permitted, and it does not need to be explicitly given.
472
473 When used with
474 .BR \-\-build ,
475 only linear, stripe, raid0, 0, raid1, multipath, mp, and faulty are valid.
476
477 Can be used with
478 .B \-\-grow
479 to change the RAID level in some cases. See LEVEL CHANGES below.
480
481 .TP
482 .BR \-p ", " \-\-layout=
483 This option configures the fine details of data layout for RAID5, RAID6,
484 and RAID10 arrays, and controls the failure modes for
485 .IR faulty .
486
487 The layout of the RAID5 parity block can be one of
488 .BR left\-asymmetric ,
489 .BR left\-symmetric ,
490 .BR right\-asymmetric ,
491 .BR right\-symmetric ,
492 .BR la ", " ra ", " ls ", " rs .
493 The default is
494 .BR left\-symmetric .
495
496 It is also possibly to cause RAID5 to use a RAID4-like layout by
497 choosing
498 .BR parity\-first ,
499 or
500 .BR parity\-last .
501
502 Finally for RAID5 there are DDF\-compatible layouts,
503 .BR ddf\-zero\-restart ,
504 .BR ddf\-N\-restart ,
505 and
506 .BR ddf\-N\-continue .
507
508 These same layouts are available for RAID6. There are also 4 layouts
509 that will provide an intermediate stage for converting between RAID5
510 and RAID6. These provide a layout which is identical to the
511 corresponding RAID5 layout on the first N\-1 devices, and has the 'Q'
512 syndrome (the second 'parity' block used by RAID6) on the last device.
513 These layouts are:
514 .BR left\-symmetric\-6 ,
515 .BR right\-symmetric\-6 ,
516 .BR left\-asymmetric\-6 ,
517 .BR right\-asymmetric\-6 ,
518 and
519 .BR parity\-first\-6 .
520
521 When setting the failure mode for level
522 .I faulty,
523 the options are:
524 .BR write\-transient ", " wt ,
525 .BR read\-transient ", " rt ,
526 .BR write\-persistent ", " wp ,
527 .BR read\-persistent ", " rp ,
528 .BR write\-all ,
529 .BR read\-fixable ", " rf ,
530 .BR clear ", " flush ", " none .
531
532 Each failure mode can be followed by a number, which is used as a period
533 between fault generation. Without a number, the fault is generated
534 once on the first relevant request. With a number, the fault will be
535 generated after that many requests, and will continue to be generated
536 every time the period elapses.
537
538 Multiple failure modes can be current simultaneously by using the
539 .B \-\-grow
540 option to set subsequent failure modes.
541
542 "clear" or "none" will remove any pending or periodic failure modes,
543 and "flush" will clear any persistent faults.
544
545 Finally, the layout options for RAID10 are one of 'n', 'o' or 'f' followed
546 by a small number. The default is 'n2'. The supported options are:
547
548 .I 'n'
549 signals 'near' copies. Multiple copies of one data block are at
550 similar offsets in different devices.
551
552 .I 'o'
553 signals 'offset' copies. Rather than the chunks being duplicated
554 within a stripe, whole stripes are duplicated but are rotated by one
555 device so duplicate blocks are on different devices. Thus subsequent
556 copies of a block are in the next drive, and are one chunk further
557 down.
558
559 .I 'f'
560 signals 'far' copies
561 (multiple copies have very different offsets).
562 See md(4) for more detail about 'near', 'offset', and 'far'.
563
564 The number is the number of copies of each datablock. 2 is normal, 3
565 can be useful. This number can be at most equal to the number of
566 devices in the array. It does not need to divide evenly into that
567 number (e.g. it is perfectly legal to have an 'n2' layout for an array
568 with an odd number of devices).
569
570 When an array is converted between RAID5 and RAID6 an intermediate
571 RAID6 layout is used in which the second parity block (Q) is always on
572 the last device. To convert a RAID5 to RAID6 and leave it in this new
573 layout (which does not require re-striping) use
574 .BR \-\-layout=preserve .
575 This will try to avoid any restriping.
576
577 The converse of this is
578 .B \-\-layout=normalise
579 which will change a non-standard RAID6 layout into a more standard
580 arrangement.
581
582 .TP
583 .BR \-\-parity=
584 same as
585 .B \-\-layout
586 (thus explaining the p of
587 .BR \-p ).
588
589 .TP
590 .BR \-b ", " \-\-bitmap=
591 Specify a file to store a write-intent bitmap in. The file should not
592 exist unless
593 .B \-\-force
594 is also given. The same file should be provided
595 when assembling the array. If the word
596 .B "internal"
597 is given, then the bitmap is stored with the metadata on the array,
598 and so is replicated on all devices. If the word
599 .B "none"
600 is given with
601 .B \-\-grow
602 mode, then any bitmap that is present is removed.
603
604 To help catch typing errors, the filename must contain at least one
605 slash ('/') if it is a real file (not 'internal' or 'none').
606
607 Note: external bitmaps are only known to work on ext2 and ext3.
608 Storing bitmap files on other filesystems may result in serious problems.
609
610 .TP
611 .BR \-\-bitmap\-chunk=
612 Set the chunksize of the bitmap. Each bit corresponds to that many
613 Kilobytes of storage.
614 When using a file based bitmap, the default is to use the smallest
615 size that is at-least 4 and requires no more than 2^21 chunks.
616 When using an
617 .B internal
618 bitmap, the chunksize defaults to 64Meg, or larger if necessary to
619 fit the bitmap into the available space.
620
621 .TP
622 .BR \-W ", " \-\-write\-mostly
623 subsequent devices listed in a
624 .BR \-\-build ,
625 .BR \-\-create ,
626 or
627 .B \-\-add
628 command will be flagged as 'write-mostly'. This is valid for RAID1
629 only and means that the 'md' driver will avoid reading from these
630 devices if at all possible. This can be useful if mirroring over a
631 slow link.
632
633 .TP
634 .BR \-\-write\-behind=
635 Specify that write-behind mode should be enabled (valid for RAID1
636 only). If an argument is specified, it will set the maximum number
637 of outstanding writes allowed. The default value is 256.
638 A write-intent bitmap is required in order to use write-behind
639 mode, and write-behind is only attempted on drives marked as
640 .IR write-mostly .
641
642 .TP
643 .BR \-\-assume\-clean
644 Tell
645 .I mdadm
646 that the array pre-existed and is known to be clean. It can be useful
647 when trying to recover from a major failure as you can be sure that no
648 data will be affected unless you actually write to the array. It can
649 also be used when creating a RAID1 or RAID10 if you want to avoid the
650 initial resync, however this practice \(em while normally safe \(em is not
651 recommended. Use this only if you really know what you are doing.
652 .IP
653 When the devices that will be part of a new array were filled
654 with zeros before creation the operator knows the array is
655 actually clean. If that is the case, such as after running
656 badblocks, this argument can be used to tell mdadm the
657 facts the operator knows.
658
659 .TP
660 .BR \-\-backup\-file=
661 This is needed when
662 .B \-\-grow
663 is used to increase the number of
664 raid-devices in a RAID5 if there are no spare devices available.
665 See the GROW MODE section below on RAID\-DEVICES CHANGES. The file
666 should be stored on a separate device, not on the RAID array being
667 reshaped.
668
669 .TP
670 .BR \-\-array-size= ", " \-Z
671 Set the size of the array which is seen by users of the device such as
672 filesystems. This can be less that the real size, but never greater.
673 The size set this way does not persist across restarts of the array.
674
675 This is most useful when reducing the number of devices in a RAID5 or
676 RAID6. Such arrays require the array-size to be reduced before a
677 reshape can be performed that reduces the real size.
678
679 A value of
680 .B max
681 restores the apparent size of the array to be whatever the real
682 amount of available space is.
683
684 .TP
685 .BR \-N ", " \-\-name=
686 Set a
687 .B name
688 for the array. This is currently only effective when creating an
689 array with a version-1 superblock, or an array in a DDF container.
690 The name is a simple textual string that can be used to identify array
691 components when assembling. If name is needed but not specified, it
692 is taken from the basename of the device that is being created.
693 e.g. when creating
694 .I /dev/md/home
695 the
696 .B name
697 will default to
698 .IR home .
699
700 .TP
701 .BR \-R ", " \-\-run
702 Insist that
703 .I mdadm
704 run the array, even if some of the components
705 appear to be active in another array or filesystem. Normally
706 .I mdadm
707 will ask for confirmation before including such components in an
708 array. This option causes that question to be suppressed.
709
710 .TP
711 .BR \-f ", " \-\-force
712 Insist that
713 .I mdadm
714 accept the geometry and layout specified without question. Normally
715 .I mdadm
716 will not allow creation of an array with only one device, and will try
717 to create a RAID5 array with one missing drive (as this makes the
718 initial resync work faster). With
719 .BR \-\-force ,
720 .I mdadm
721 will not try to be so clever.
722
723 .TP
724 .BR \-a ", " "\-\-auto{=yes,md,mdp,part,p}{NN}"
725 Instruct mdadm how to create the device file if needed, possibly allocating
726 an unused minor number. "md" causes a non-partitionable array
727 to be used (though since Linux 2.6.28, these array devices are in fact
728 partitionable). "mdp", "part" or "p" causes a partitionable array (2.6 and
729 later) to be used. "yes" requires the named md device to have
730 a 'standard' format, and the type and minor number will be determined
731 from this. With mdadm 3.0, device creation is normally left up to
732 .I udev
733 so this option is unlikely to be needed.
734 See DEVICE NAMES below.
735
736 The argument can also come immediately after
737 "\-a". e.g. "\-ap".
738
739 If
740 .B \-\-auto
741 is not given on the command line or in the config file, then
742 the default will be
743 .BR \-\-auto=yes .
744
745 If
746 .B \-\-scan
747 is also given, then any
748 .I auto=
749 entries in the config file will override the
750 .B \-\-auto
751 instruction given on the command line.
752
753 For partitionable arrays,
754 .I mdadm
755 will create the device file for the whole array and for the first 4
756 partitions. A different number of partitions can be specified at the
757 end of this option (e.g.
758 .BR \-\-auto=p7 ).
759 If the device name ends with a digit, the partition names add a 'p',
760 and a number, e.g.
761 .IR /dev/md/home1p3 .
762 If there is no trailing digit, then the partition names just have a
763 number added, e.g.
764 .IR /dev/md/scratch3 .
765
766 If the md device name is in a 'standard' format as described in DEVICE
767 NAMES, then it will be created, if necessary, with the appropriate
768 device number based on that name. If the device name is not in one of these
769 formats, then a unused device number will be allocated. The device
770 number will be considered unused if there is no active array for that
771 number, and there is no entry in /dev for that number and with a
772 non-standard name. Names that are not in 'standard' format are only
773 allowed in "/dev/md/".
774
775 .ig XX
776 .\".TP
777 .\".BR \-\-symlink = no
778 .\"Normally when
779 .\".B \-\-auto
780 .\"causes
781 .\".I mdadm
782 .\"to create devices in
783 .\".B /dev/md/
784 .\"it will also create symlinks from
785 .\".B /dev/
786 .\"with names starting with
787 .\".B md
788 .\"or
789 .\".BR md_ .
790 .\"Use
791 .\".B \-\-symlink=no
792 .\"to suppress this, or
793 .\".B \-\-symlink=yes
794 .\"to enforce this even if it is suppressing
795 .\".IR mdadm.conf .
796 .\"
797 .XX
798
799 .SH For assemble:
800
801 .TP
802 .BR \-u ", " \-\-uuid=
803 uuid of array to assemble. Devices which don't have this uuid are
804 excluded
805
806 .TP
807 .BR \-m ", " \-\-super\-minor=
808 Minor number of device that array was created for. Devices which
809 don't have this minor number are excluded. If you create an array as
810 /dev/md1, then all superblocks will contain the minor number 1, even if
811 the array is later assembled as /dev/md2.
812
813 Giving the literal word "dev" for
814 .B \-\-super\-minor
815 will cause
816 .I mdadm
817 to use the minor number of the md device that is being assembled.
818 e.g. when assembling
819 .BR /dev/md0 ,
820 .B \-\-super\-minor=dev
821 will look for super blocks with a minor number of 0.
822
823 .B \-\-super\-minor
824 is only relevant for v0.90 metadata, and should not normally be used.
825 Using
826 .B \-\-uuid
827 is much safer.
828
829 .TP
830 .BR \-N ", " \-\-name=
831 Specify the name of the array to assemble. This must be the name
832 that was specified when creating the array. It must either match
833 the name stored in the superblock exactly, or it must match
834 with the current
835 .I homehost
836 prefixed to the start of the given name.
837
838 .TP
839 .BR \-f ", " \-\-force
840 Assemble the array even if the metadata on some devices appears to be
841 out-of-date. If
842 .I mdadm
843 cannot find enough working devices to start the array, but can find
844 some devices that are recorded as having failed, then it will mark
845 those devices as working so that the array can be started.
846 An array which requires
847 .B \-\-force
848 to be started may contain data corruption. Use it carefully.
849
850 .TP
851 .BR \-R ", " \-\-run
852 Attempt to start the array even if fewer drives were given than were
853 present last time the array was active. Normally if not all the
854 expected drives are found and
855 .B \-\-scan
856 is not used, then the array will be assembled but not started.
857 With
858 .B \-\-run
859 an attempt will be made to start it anyway.
860
861 .TP
862 .B \-\-no\-degraded
863 This is the reverse of
864 .B \-\-run
865 in that it inhibits the startup of array unless all expected drives
866 are present. This is only needed with
867 .B \-\-scan,
868 and can be used if the physical connections to devices are
869 not as reliable as you would like.
870
871 .TP
872 .BR \-a ", " "\-\-auto{=no,yes,md,mdp,part}"
873 See this option under Create and Build options.
874
875 .TP
876 .BR \-b ", " \-\-bitmap=
877 Specify the bitmap file that was given when the array was created. If
878 an array has an
879 .B internal
880 bitmap, there is no need to specify this when assembling the array.
881
882 .TP
883 .BR \-\-backup\-file=
884 If
885 .B \-\-backup\-file
886 was used to grow the number of raid-devices in a RAID5, and the system
887 crashed during the critical section, then the same
888 .B \-\-backup\-file
889 must be presented to
890 .B \-\-assemble
891 to allow possibly corrupted data to be restored.
892
893 .TP
894 .BR \-U ", " \-\-update=
895 Update the superblock on each device while assembling the array. The
896 argument given to this flag can be one of
897 .BR sparc2.2 ,
898 .BR summaries ,
899 .BR uuid ,
900 .BR name ,
901 .BR homehost ,
902 .BR resync ,
903 .BR byteorder ,
904 .BR devicesize ,
905 or
906 .BR super\-minor .
907
908 The
909 .B sparc2.2
910 option will adjust the superblock of an array what was created on a Sparc
911 machine running a patched 2.2 Linux kernel. This kernel got the
912 alignment of part of the superblock wrong. You can use the
913 .B "\-\-examine \-\-sparc2.2"
914 option to
915 .I mdadm
916 to see what effect this would have.
917
918 The
919 .B super\-minor
920 option will update the
921 .B "preferred minor"
922 field on each superblock to match the minor number of the array being
923 assembled.
924 This can be useful if
925 .B \-\-examine
926 reports a different "Preferred Minor" to
927 .BR \-\-detail .
928 In some cases this update will be performed automatically
929 by the kernel driver. In particular the update happens automatically
930 at the first write to an array with redundancy (RAID level 1 or
931 greater) on a 2.6 (or later) kernel.
932
933 The
934 .B uuid
935 option will change the uuid of the array. If a UUID is given with the
936 .B \-\-uuid
937 option that UUID will be used as a new UUID and will
938 .B NOT
939 be used to help identify the devices in the array.
940 If no
941 .B \-\-uuid
942 is given, a random UUID is chosen.
943
944 The
945 .B name
946 option will change the
947 .I name
948 of the array as stored in the superblock. This is only supported for
949 version-1 superblocks.
950
951 The
952 .B homehost
953 option will change the
954 .I homehost
955 as recorded in the superblock. For version-0 superblocks, this is the
956 same as updating the UUID.
957 For version-1 superblocks, this involves updating the name.
958
959 The
960 .B resync
961 option will cause the array to be marked
962 .I dirty
963 meaning that any redundancy in the array (e.g. parity for RAID5,
964 copies for RAID1) may be incorrect. This will cause the RAID system
965 to perform a "resync" pass to make sure that all redundant information
966 is correct.
967
968 The
969 .B byteorder
970 option allows arrays to be moved between machines with different
971 byte-order.
972 When assembling such an array for the first time after a move, giving
973 .B "\-\-update=byteorder"
974 will cause
975 .I mdadm
976 to expect superblocks to have their byteorder reversed, and will
977 correct that order before assembling the array. This is only valid
978 with original (Version 0.90) superblocks.
979
980 The
981 .B summaries
982 option will correct the summaries in the superblock. That is the
983 counts of total, working, active, failed, and spare devices.
984
985 The
986 .B devicesize
987 will rarely be of use. It applies to version 1.1 and 1.2 metadata
988 only (where the metadata is at the start of the device) and is only
989 useful when the component device has changed size (typically become
990 larger). The version 1 metadata records the amount of the device that
991 can be used to store data, so if a device in a version 1.1 or 1.2
992 array becomes larger, the metadata will still be visible, but the
993 extra space will not. In this case it might be useful to assemble the
994 array with
995 .BR \-\-update=devicesize .
996 This will cause
997 .I mdadm
998 to determine the maximum usable amount of space on each device and
999 update the relevant field in the metadata.
1000
1001 .ig
1002 .TP
1003 .B \-\-auto\-update\-homehost
1004 This flag is only meaningful with auto-assembly (see discussion below).
1005 In that situation, if no suitable arrays are found for this homehost,
1006 .I mdadm
1007 will rescan for any arrays at all and will assemble them and update the
1008 homehost to match the current host.
1009 ..
1010
1011 .SH For Manage mode:
1012
1013 .TP
1014 .BR \-t ", " \-\-test
1015 Unless a more serious error occurred,
1016 .I mdadm
1017 will exit with a status of 2 if no changes were made to the array and
1018 0 if at least one change was made.
1019 This can be useful when an indirect specifier such as
1020 .BR missing ,
1021 .B detached
1022 or
1023 .B faulty
1024 is used in requesting an operation on the array.
1025 .B \-\-test
1026 will report failure if these specifiers didn't find any match.
1027
1028 .TP
1029 .BR \-a ", " \-\-add
1030 hot-add listed devices.
1031 If a device appears to have recently been part of the array
1032 (possibly it failed or was removed) the device is re-added as describe
1033 in the next point.
1034 If that fails or the device was never part of the array, the device is
1035 added as a hot-spare.
1036 If the array is degraded, it will immediately start to rebuild data
1037 onto that spare.
1038
1039 Note that this and the following options are only meaningful on array
1040 with redundancy. They don't apply to RAID0 or Linear.
1041
1042 .TP
1043 .BR \-\-re\-add
1044 re\-add a device that was previous removed from an array.
1045 If the metadata on the device reports that it is a member of the
1046 array, and the slot that it used is still vacant, then the device will
1047 be added back to the array in the same position. This will normally
1048 cause the data for that device to be recovered. However based on the
1049 event count on the device, the recovery may only require sections that
1050 are flagged a write-intent bitmap to be recovered or may not require
1051 any recovery at all.
1052
1053 When used on an array that has no metadata (i.e. it was built with
1054 .BR \-\-build)
1055 it will be assumed that bitmap-based recovery is enough to make the
1056 device fully consistent with the array.
1057
1058 If the device name given is
1059 .B missing
1060 then mdadm will try to find any device that looks like it should be
1061 part of the array but isn't and will try to re\-add all such devices.
1062
1063 .TP
1064 .BR \-r ", " \-\-remove
1065 remove listed devices. They must not be active. i.e. they should
1066 be failed or spare devices. As well as the name of a device file
1067 (e.g.
1068 .BR /dev/sda1 )
1069 the words
1070 .B failed
1071 and
1072 .B detached
1073 can be given to
1074 .BR \-\-remove .
1075 The first causes all failed device to be removed. The second causes
1076 any device which is no longer connected to the system (i.e an 'open'
1077 returns
1078 .BR ENXIO )
1079 to be removed. This will only succeed for devices that are spares or
1080 have already been marked as failed.
1081
1082 .TP
1083 .BR \-f ", " \-\-fail
1084 mark listed devices as faulty.
1085 As well as the name of a device file, the word
1086 .B detached
1087 can be given. This will cause any device that has been detached from
1088 the system to be marked as failed. It can then be removed.
1089
1090 .TP
1091 .BR \-\-set\-faulty
1092 same as
1093 .BR \-\-fail .
1094
1095 .TP
1096 .BR \-\-write\-mostly
1097 Subsequent devices that are added or re\-added will have the 'write-mostly'
1098 flag set. This is only valid for RAID1 and means that the 'md' driver
1099 will avoid reading from these devices if possible.
1100 .TP
1101 .BR \-\-readwrite
1102 Subsequent devices that are added or re\-added will have the 'write-mostly'
1103 flag cleared.
1104
1105 .P
1106 Each of these options requires that the first device listed is the array
1107 to be acted upon, and the remainder are component devices to be added,
1108 removed, marked as faulty, etc. Several different operations can be
1109 specified for different devices, e.g.
1110 .in +5
1111 mdadm /dev/md0 \-\-add /dev/sda1 \-\-fail /dev/sdb1 \-\-remove /dev/sdb1
1112 .in -5
1113 Each operation applies to all devices listed until the next
1114 operation.
1115
1116 If an array is using a write-intent bitmap, then devices which have
1117 been removed can be re\-added in a way that avoids a full
1118 reconstruction but instead just updates the blocks that have changed
1119 since the device was removed. For arrays with persistent metadata
1120 (superblocks) this is done automatically. For arrays created with
1121 .B \-\-build
1122 mdadm needs to be told that this device we removed recently with
1123 .BR \-\-re\-add .
1124
1125 Devices can only be removed from an array if they are not in active
1126 use, i.e. that must be spares or failed devices. To remove an active
1127 device, it must first be marked as
1128 .B faulty.
1129
1130 .SH For Misc mode:
1131
1132 .TP
1133 .BR \-Q ", " \-\-query
1134 Examine a device to see
1135 (1) if it is an md device and (2) if it is a component of an md
1136 array.
1137 Information about what is discovered is presented.
1138
1139 .TP
1140 .BR \-D ", " \-\-detail
1141 Print details of one or more md devices.
1142
1143 .TP
1144 .BR \-\-detail\-platform
1145 Print details of the platform's RAID capabilities (firmware / hardware
1146 topology) for a given metadata format.
1147
1148 .TP
1149 .BR \-Y ", " \-\-export
1150 When used with
1151 .B \-\-detail
1152 or
1153 .BR \-\-examine ,
1154 output will be formatted as
1155 .B key=value
1156 pairs for easy import into the environment.
1157
1158 .TP
1159 .BR \-E ", " \-\-examine
1160 Print contents of the metadata stored on the named device(s).
1161 Note the contrast between
1162 .B \-\-examine
1163 and
1164 .BR \-\-detail .
1165 .B \-\-examine
1166 applies to devices which are components of an array, while
1167 .B \-\-detail
1168 applies to a whole array which is currently active.
1169 .TP
1170 .B \-\-sparc2.2
1171 If an array was created on a SPARC machine with a 2.2 Linux kernel
1172 patched with RAID support, the superblock will have been created
1173 incorrectly, or at least incompatibly with 2.4 and later kernels.
1174 Using the
1175 .B \-\-sparc2.2
1176 flag with
1177 .B \-\-examine
1178 will fix the superblock before displaying it. If this appears to do
1179 the right thing, then the array can be successfully assembled using
1180 .BR "\-\-assemble \-\-update=sparc2.2" .
1181
1182 .TP
1183 .BR \-X ", " \-\-examine\-bitmap
1184 Report information about a bitmap file.
1185 The argument is either an external bitmap file or an array component
1186 in case of an internal bitmap. Note that running this on an array
1187 device (e.g.
1188 .BR /dev/md0 )
1189 does not report the bitmap for that array.
1190
1191 .TP
1192 .BR \-R ", " \-\-run
1193 start a partially assembled array. If
1194 .B \-\-assemble
1195 did not find enough devices to fully start the array, it might leaving
1196 it partially assembled. If you wish, you can then use
1197 .B \-\-run
1198 to start the array in degraded mode.
1199
1200 .TP
1201 .BR \-S ", " \-\-stop
1202 deactivate array, releasing all resources.
1203
1204 .TP
1205 .BR \-o ", " \-\-readonly
1206 mark array as readonly.
1207
1208 .TP
1209 .BR \-w ", " \-\-readwrite
1210 mark array as readwrite.
1211
1212 .TP
1213 .B \-\-zero\-superblock
1214 If the device contains a valid md superblock, the block is
1215 overwritten with zeros. With
1216 .B \-\-force
1217 the block where the superblock would be is overwritten even if it
1218 doesn't appear to be valid.
1219
1220 .TP
1221 .B \-\-kill\-subarray=
1222 If the device is a container and the argument to \-\-kill\-subarray
1223 specifies an inactive subarray in the container, then the subarray is
1224 deleted. Deleting all subarrays will leave an 'empty-container' or
1225 spare superblock on the drives. See \-\-zero\-superblock for completely
1226 removing a superblock. Note that some formats depend on the subarray
1227 index for generating a UUID, this command will fail if it would change
1228 the UUID of an active subarray.
1229
1230 .TP
1231 .B \-\-update\-subarray=
1232 If the device is a container and the argument to \-\-update\-subarray
1233 specifies a subarray in the container, then attempt to update the given
1234 superblock field in the subarray. See below in
1235 .B MISC MODE
1236 for details.
1237
1238 .TP
1239 .BR \-t ", " \-\-test
1240 When used with
1241 .BR \-\-detail ,
1242 the exit status of
1243 .I mdadm
1244 is set to reflect the status of the device. See below in
1245 .B MISC MODE
1246 for details.
1247
1248 .TP
1249 .BR \-W ", " \-\-wait
1250 For each md device given, wait for any resync, recovery, or reshape
1251 activity to finish before returning.
1252 .I mdadm
1253 will return with success if it actually waited for every device
1254 listed, otherwise it will return failure.
1255
1256 .TP
1257 .BR \-\-wait\-clean
1258 For each md device given, or each device in /proc/mdstat if
1259 .B \-\-scan
1260 is given, arrange for the array to be marked clean as soon as possible.
1261 .I mdadm
1262 will return with success if the array uses external metadata and we
1263 successfully waited. For native arrays this returns immediately as the
1264 kernel handles dirty-clean transitions at shutdown. No action is taken
1265 if safe-mode handling is disabled.
1266
1267 .SH For Incremental Assembly mode:
1268 .TP
1269 .BR \-\-rebuild\-map ", " \-r
1270 Rebuild the map file
1271 .RB ( /var/run/mdadm/map )
1272 that
1273 .I mdadm
1274 uses to help track which arrays are currently being assembled.
1275
1276 .TP
1277 .BR \-\-run ", " \-R
1278 Run any array assembled as soon as a minimal number of devices are
1279 available, rather than waiting until all expected devices are present.
1280
1281 .TP
1282 .BR \-\-scan ", " \-s
1283 Only meaningful with
1284 .B \-R
1285 this will scan the
1286 .B map
1287 file for arrays that are being incrementally assembled and will try to
1288 start any that are not already started. If any such array is listed
1289 in
1290 .B mdadm.conf
1291 as requiring an external bitmap, that bitmap will be attached first.
1292
1293 .TP
1294 .BR \-\-fail ", " \-f
1295 This allows the hot-plug system to remove devices that have fully disappeared
1296 from the kernel. It will first fail and then remove the device from any
1297 array it belongs to.
1298 The device name given should be a kernel device name such as "sda",
1299 not a name in
1300 .IR /dev .
1301
1302 .SH For Monitor mode:
1303 .TP
1304 .BR \-m ", " \-\-mail
1305 Give a mail address to send alerts to.
1306
1307 .TP
1308 .BR \-p ", " \-\-program ", " \-\-alert
1309 Give a program to be run whenever an event is detected.
1310
1311 .TP
1312 .BR \-y ", " \-\-syslog
1313 Cause all events to be reported through 'syslog'. The messages have
1314 facility of 'daemon' and varying priorities.
1315
1316 .TP
1317 .BR \-d ", " \-\-delay
1318 Give a delay in seconds.
1319 .I mdadm
1320 polls the md arrays and then waits this many seconds before polling
1321 again. The default is 60 seconds. Since 2.6.16, there is no need to
1322 reduce this as the kernel alerts
1323 .I mdadm
1324 immediately when there is any change.
1325
1326 .TP
1327 .BR \-r ", " \-\-increment
1328 Give a percentage increment.
1329 .I mdadm
1330 will generate RebuildNN events with the given percentage increment.
1331
1332 .TP
1333 .BR \-f ", " \-\-daemonise
1334 Tell
1335 .I mdadm
1336 to run as a background daemon if it decides to monitor anything. This
1337 causes it to fork and run in the child, and to disconnect from the
1338 terminal. The process id of the child is written to stdout.
1339 This is useful with
1340 .B \-\-scan
1341 which will only continue monitoring if a mail address or alert program
1342 is found in the config file.
1343
1344 .TP
1345 .BR \-i ", " \-\-pid\-file
1346 When
1347 .I mdadm
1348 is running in daemon mode, write the pid of the daemon process to
1349 the specified file, instead of printing it on standard output.
1350
1351 .TP
1352 .BR \-1 ", " \-\-oneshot
1353 Check arrays only once. This will generate
1354 .B NewArray
1355 events and more significantly
1356 .B DegradedArray
1357 and
1358 .B SparesMissing
1359 events. Running
1360 .in +5
1361 .B " mdadm \-\-monitor \-\-scan \-1"
1362 .in -5
1363 from a cron script will ensure regular notification of any degraded arrays.
1364
1365 .TP
1366 .BR \-t ", " \-\-test
1367 Generate a
1368 .B TestMessage
1369 alert for every array found at startup. This alert gets mailed and
1370 passed to the alert program. This can be used for testing that alert
1371 message do get through successfully.
1372
1373 .SH ASSEMBLE MODE
1374
1375 .HP 12
1376 Usage:
1377 .B mdadm \-\-assemble
1378 .I md-device options-and-component-devices...
1379 .HP 12
1380 Usage:
1381 .B mdadm \-\-assemble \-\-scan
1382 .I md-devices-and-options...
1383 .HP 12
1384 Usage:
1385 .B mdadm \-\-assemble \-\-scan
1386 .I options...
1387
1388 .PP
1389 This usage assembles one or more RAID arrays from pre-existing components.
1390 For each array, mdadm needs to know the md device, the identity of the
1391 array, and a number of component-devices. These can be found in a number of ways.
1392
1393 In the first usage example (without the
1394 .BR \-\-scan )
1395 the first device given is the md device.
1396 In the second usage example, all devices listed are treated as md
1397 devices and assembly is attempted.
1398 In the third (where no devices are listed) all md devices that are
1399 listed in the configuration file are assembled. If not arrays are
1400 described by the configuration file, then any arrays that
1401 can be found on unused devices will be assembled.
1402
1403 If precisely one device is listed, but
1404 .B \-\-scan
1405 is not given, then
1406 .I mdadm
1407 acts as though
1408 .B \-\-scan
1409 was given and identity information is extracted from the configuration file.
1410
1411 The identity can be given with the
1412 .B \-\-uuid
1413 option, the
1414 .B \-\-name
1415 option, or the
1416 .B \-\-super\-minor
1417 option, will be taken from the md-device record in the config file, or
1418 will be taken from the super block of the first component-device
1419 listed on the command line.
1420
1421 Devices can be given on the
1422 .B \-\-assemble
1423 command line or in the config file. Only devices which have an md
1424 superblock which contains the right identity will be considered for
1425 any array.
1426
1427 The config file is only used if explicitly named with
1428 .B \-\-config
1429 or requested with (a possibly implicit)
1430 .BR \-\-scan .
1431 In the later case,
1432 .B /etc/mdadm.conf
1433 or
1434 .B /etc/mdadm/mdadm.conf
1435 is used.
1436
1437 If
1438 .B \-\-scan
1439 is not given, then the config file will only be used to find the
1440 identity of md arrays.
1441
1442 Normally the array will be started after it is assembled. However if
1443 .B \-\-scan
1444 is not given and not all expected drives were listed, then the array
1445 is not started (to guard against usage errors). To insist that the
1446 array be started in this case (as may work for RAID1, 4, 5, 6, or 10),
1447 give the
1448 .B \-\-run
1449 flag.
1450
1451 If
1452 .I udev
1453 is active,
1454 .I mdadm
1455 does not create any entries in
1456 .B /dev
1457 but leaves that to
1458 .IR udev .
1459 It does record information in
1460 .B /var/run/mdadm/map
1461 which will allow
1462 .I udev
1463 to choose the correct name.
1464
1465 If
1466 .I mdadm
1467 detects that udev is not configured, it will create the devices in
1468 .B /dev
1469 itself.
1470
1471 In Linux kernels prior to version 2.6.28 there were two distinctly
1472 different types of md devices that could be created: one that could be
1473 partitioned using standard partitioning tools and one that could not.
1474 Since 2.6.28 that distinction is no longer relevant as both type of
1475 devices can be partitioned.
1476 .I mdadm
1477 will normally create the type that originally could not be partitioned
1478 as it has a well defined major number (9).
1479
1480 Prior to 2.6.28, it is important that mdadm chooses the correct type
1481 of array device to use. This can be controlled with the
1482 .B \-\-auto
1483 option. In particular, a value of "mdp" or "part" or "p" tells mdadm
1484 to use a partitionable device rather than the default.
1485
1486 In the no-udev case, the value given to
1487 .B \-\-auto
1488 can be suffixed by a number. This tells
1489 .I mdadm
1490 to create that number of partition devices rather than the default of 4.
1491
1492 The value given to
1493 .B \-\-auto
1494 can also be given in the configuration file as a word starting
1495 .B auto=
1496 on the ARRAY line for the relevant array.
1497
1498 .SS Auto Assembly
1499 When
1500 .B \-\-assemble
1501 is used with
1502 .B \-\-scan
1503 and no devices are listed,
1504 .I mdadm
1505 will first attempt to assemble all the arrays listed in the config
1506 file.
1507
1508 In no array at listed in the config (other than those marked
1509 .BR <ignore> )
1510 it will look through the available devices for possible arrays and
1511 will try to assemble anything that it finds. Arrays which are tagged
1512 as belonging to the given homehost will be assembled and started
1513 normally. Arrays which do not obviously belong to this host are given
1514 names that are expected not to conflict with anything local, and are
1515 started "read-auto" so that nothing is written to any device until the
1516 array is written to. i.e. automatic resync etc is delayed.
1517
1518 If
1519 .I mdadm
1520 finds a consistent set of devices that look like they should comprise
1521 an array, and if the superblock is tagged as belonging to the given
1522 home host, it will automatically choose a device name and try to
1523 assemble the array. If the array uses version-0.90 metadata, then the
1524 .B minor
1525 number as recorded in the superblock is used to create a name in
1526 .B /dev/md/
1527 so for example
1528 .BR /dev/md/3 .
1529 If the array uses version-1 metadata, then the
1530 .B name
1531 from the superblock is used to similarly create a name in
1532 .B /dev/md/
1533 (the name will have any 'host' prefix stripped first).
1534
1535 This behaviour can be modified by the
1536 .I AUTO
1537 line in the
1538 .I mdadm.conf
1539 configuration file. This line can indicate that specific metadata
1540 type should, or should not, be automatically assembled. If an array
1541 is found which is not listed in
1542 .I mdadm.conf
1543 and has a metadata format that is denied by the
1544 .I AUTO
1545 line, then it will not be assembled.
1546 The
1547 .I AUTO
1548 line can also request that all arrays identified as being for this
1549 homehost should be assembled regardless of their metadata type.
1550 See
1551 .IR mdadm.conf (5)
1552 for further details.
1553
1554 .ig
1555 If
1556 .I mdadm
1557 cannot find any array for the given host at all, and if
1558 .B \-\-auto\-update\-homehost
1559 is given, then
1560 .I mdadm
1561 will search again for any array (not just an array created for this
1562 host) and will assemble each assuming
1563 .BR \-\-update=homehost .
1564 This will change the host tag in the superblock so that on the next run,
1565 these arrays will be found without the second pass. The intention of
1566 this feature is to support transitioning a set of md arrays to using
1567 homehost tagging.
1568
1569 The reason for requiring arrays to be tagged with the homehost for
1570 auto assembly is to guard against problems that can arise when moving
1571 devices from one host to another.
1572 ..
1573
1574 .SH BUILD MODE
1575
1576 .HP 12
1577 Usage:
1578 .B mdadm \-\-build
1579 .I md-device
1580 .BI \-\-chunk= X
1581 .BI \-\-level= Y
1582 .BI \-\-raid\-devices= Z
1583 .I devices
1584
1585 .PP
1586 This usage is similar to
1587 .BR \-\-create .
1588 The difference is that it creates an array without a superblock. With
1589 these arrays there is no difference between initially creating the array and
1590 subsequently assembling the array, except that hopefully there is useful
1591 data there in the second case.
1592
1593 The level may raid0, linear, raid1, raid10, multipath, or faulty, or
1594 one of their synonyms. All devices must be listed and the array will
1595 be started once complete. It will often be appropriate to use
1596 .B \-\-assume\-clean
1597 with levels raid1 or raid10.
1598
1599 .SH CREATE MODE
1600
1601 .HP 12
1602 Usage:
1603 .B mdadm \-\-create
1604 .I md-device
1605 .BI \-\-chunk= X
1606 .BI \-\-level= Y
1607 .br
1608 .BI \-\-raid\-devices= Z
1609 .I devices
1610
1611 .PP
1612 This usage will initialise a new md array, associate some devices with
1613 it, and activate the array.
1614
1615 The named device will normally not exist when
1616 .I "mdadm \-\-create"
1617 is run, but will be created by
1618 .I udev
1619 once the array becomes active.
1620
1621 As devices are added, they are checked to see if they contain RAID
1622 superblocks or filesystems. They are also checked to see if the variance in
1623 device size exceeds 1%.
1624
1625 If any discrepancy is found, the array will not automatically be run, though
1626 the presence of a
1627 .B \-\-run
1628 can override this caution.
1629
1630 To create a "degraded" array in which some devices are missing, simply
1631 give the word "\fBmissing\fP"
1632 in place of a device name. This will cause
1633 .I mdadm
1634 to leave the corresponding slot in the array empty.
1635 For a RAID4 or RAID5 array at most one slot can be
1636 "\fBmissing\fP"; for a RAID6 array at most two slots.
1637 For a RAID1 array, only one real device needs to be given. All of the
1638 others can be
1639 "\fBmissing\fP".
1640
1641 When creating a RAID5 array,
1642 .I mdadm
1643 will automatically create a degraded array with an extra spare drive.
1644 This is because building the spare into a degraded array is in general
1645 faster than resyncing the parity on a non-degraded, but not clean,
1646 array. This feature can be overridden with the
1647 .B \-\-force
1648 option.
1649
1650 When creating an array with version-1 metadata a name for the array is
1651 required.
1652 If this is not given with the
1653 .B \-\-name
1654 option,
1655 .I mdadm
1656 will choose a name based on the last component of the name of the
1657 device being created. So if
1658 .B /dev/md3
1659 is being created, then the name
1660 .B 3
1661 will be chosen.
1662 If
1663 .B /dev/md/home
1664 is being created, then the name
1665 .B home
1666 will be used.
1667
1668 When creating a partition based array, using
1669 .I mdadm
1670 with version-1.x metadata, the partition type should be set to
1671 .B 0xDA
1672 (non fs-data). This type selection allows for greater precision since
1673 using any other [RAID auto-detect (0xFD) or a GNU/Linux partition (0x83)],
1674 might create problems in the event of array recovery through a live cdrom.
1675
1676 A new array will normally get a randomly assigned 128bit UUID which is
1677 very likely to be unique. If you have a specific need, you can choose
1678 a UUID for the array by giving the
1679 .B \-\-uuid=
1680 option. Be warned that creating two arrays with the same UUID is a
1681 recipe for disaster. Also, using
1682 .B \-\-uuid=
1683 when creating a v0.90 array will silently override any
1684 .B \-\-homehost=
1685 setting.
1686 .\"If the
1687 .\".B \-\-size
1688 .\"option is given, it is not necessary to list any component-devices in this command.
1689 .\"They can be added later, before a
1690 .\".B \-\-run.
1691 .\"If no
1692 .\".B \-\-size
1693 .\"is given, the apparent size of the smallest drive given is used.
1694
1695 When creating an array within a
1696 .B CONTAINER
1697 .I mdadm
1698 can be given either the list of devices to use, or simply the name of
1699 the container. The former case gives control over which devices in
1700 the container will be used for the array. The latter case allows
1701 .I mdadm
1702 to automatically choose which devices to use based on how much spare
1703 space is available.
1704
1705 The General Management options that are valid with
1706 .B \-\-create
1707 are:
1708 .TP
1709 .B \-\-run
1710 insist on running the array even if some devices look like they might
1711 be in use.
1712
1713 .TP
1714 .B \-\-readonly
1715 start the array readonly \(em not supported yet.
1716
1717 .SH MANAGE MODE
1718 .HP 12
1719 Usage:
1720 .B mdadm
1721 .I device
1722 .I options... devices...
1723 .PP
1724
1725 This usage will allow individual devices in an array to be failed,
1726 removed or added. It is possible to perform multiple operations with
1727 on command. For example:
1728 .br
1729 .B " mdadm /dev/md0 \-f /dev/hda1 \-r /dev/hda1 \-a /dev/hda1"
1730 .br
1731 will firstly mark
1732 .B /dev/hda1
1733 as faulty in
1734 .B /dev/md0
1735 and will then remove it from the array and finally add it back
1736 in as a spare. However only one md array can be affected by a single
1737 command.
1738
1739 When a device is added to an active array, mdadm checks to see if it
1740 has metadata on it which suggests that it was recently a member of the
1741 array. If it does, it tries to "re\-add" the device. If there have
1742 been no changes since the device was removed, or if the array has a
1743 write-intent bitmap which has recorded whatever changes there were,
1744 then the device will immediately become a full member of the array and
1745 those differences recorded in the bitmap will be resolved.
1746
1747 .SH MISC MODE
1748 .HP 12
1749 Usage:
1750 .B mdadm
1751 .I options ...
1752 .I devices ...
1753 .PP
1754
1755 MISC mode includes a number of distinct operations that
1756 operate on distinct devices. The operations are:
1757 .TP
1758 .B \-\-query
1759 The device is examined to see if it is
1760 (1) an active md array, or
1761 (2) a component of an md array.
1762 The information discovered is reported.
1763
1764 .TP
1765 .B \-\-detail
1766 The device should be an active md device.
1767 .B mdadm
1768 will display a detailed description of the array.
1769 .B \-\-brief
1770 or
1771 .B \-\-scan
1772 will cause the output to be less detailed and the format to be
1773 suitable for inclusion in
1774 .BR /etc/mdadm.conf .
1775 The exit status of
1776 .I mdadm
1777 will normally be 0 unless
1778 .I mdadm
1779 failed to get useful information about the device(s); however, if the
1780 .B \-\-test
1781 option is given, then the exit status will be:
1782 .RS
1783 .TP
1784 0
1785 The array is functioning normally.
1786 .TP
1787 1
1788 The array has at least one failed device.
1789 .TP
1790 2
1791 The array has multiple failed devices such that it is unusable.
1792 .TP
1793 4
1794 There was an error while trying to get information about the device.
1795 .RE
1796
1797 .TP
1798 .B \-\-detail\-platform
1799 Print detail of the platform's RAID capabilities (firmware / hardware
1800 topology). If the metadata is specified with
1801 .B \-e
1802 or
1803 .B \-\-metadata=
1804 then the return status will be:
1805 .RS
1806 .TP
1807 0
1808 metadata successfully enumerated its platform components on this system
1809 .TP
1810 1
1811 metadata is platform independent
1812 .TP
1813 2
1814 metadata failed to find its platform components on this system
1815 .RE
1816
1817 .TP
1818 .B \-\-update\-subarray=
1819 If the device is a container and the argument to \-\-update\-subarray
1820 specifies a subarray in the container, then attempt to update the given
1821 superblock field in the subarray. Similar to updating an array in
1822 "assemble" mode, the field to update is selected by
1823 .B \-U
1824 or
1825 .B \-\-update=
1826 option. Currently only
1827 .B name
1828 is supported.
1829
1830 The
1831 .B name
1832 option updates the subarray name in the metadata, it may not affect the
1833 device node name or the device node symlink until the subarray is
1834 re\-assembled. If updating
1835 .B name
1836 would change the UUID of an active subarray this operation is blocked,
1837 and the command will end in an error.
1838
1839 .TP
1840 .B \-\-examine
1841 The device should be a component of an md array.
1842 .I mdadm
1843 will read the md superblock of the device and display the contents.
1844 If
1845 .B \-\-brief
1846 or
1847 .B \-\-scan
1848 is given, then multiple devices that are components of the one array
1849 are grouped together and reported in a single entry suitable
1850 for inclusion in
1851 .BR /etc/mdadm.conf .
1852
1853 Having
1854 .B \-\-scan
1855 without listing any devices will cause all devices listed in the
1856 config file to be examined.
1857
1858 .TP
1859 .B \-\-stop
1860 The devices should be active md arrays which will be deactivated, as
1861 long as they are not currently in use.
1862
1863 .TP
1864 .B \-\-run
1865 This will fully activate a partially assembled md array.
1866
1867 .TP
1868 .B \-\-readonly
1869 This will mark an active array as read-only, providing that it is
1870 not currently being used.
1871
1872 .TP
1873 .B \-\-readwrite
1874 This will change a
1875 .B readonly
1876 array back to being read/write.
1877
1878 .TP
1879 .B \-\-scan
1880 For all operations except
1881 .BR \-\-examine ,
1882 .B \-\-scan
1883 will cause the operation to be applied to all arrays listed in
1884 .BR /proc/mdstat .
1885 For
1886 .BR \-\-examine,
1887 .B \-\-scan
1888 causes all devices listed in the config file to be examined.
1889
1890 .TP
1891 .BR \-b ", " \-\-brief
1892 Be less verbose. This is used with
1893 .B \-\-detail
1894 and
1895 .BR \-\-examine .
1896 Using
1897 .B \-\-brief
1898 with
1899 .B \-\-verbose
1900 gives an intermediate level of verbosity.
1901
1902 .SH MONITOR MODE
1903
1904 .HP 12
1905 Usage:
1906 .B mdadm \-\-monitor
1907 .I options... devices...
1908
1909 .PP
1910 This usage causes
1911 .I mdadm
1912 to periodically poll a number of md arrays and to report on any events
1913 noticed.
1914 .I mdadm
1915 will never exit once it decides that there are arrays to be checked,
1916 so it should normally be run in the background.
1917
1918 As well as reporting events,
1919 .I mdadm
1920 may move a spare drive from one array to another if they are in the
1921 same
1922 .B spare-group
1923 and if the destination array has a failed drive but no spares.
1924
1925 If any devices are listed on the command line,
1926 .I mdadm
1927 will only monitor those devices. Otherwise all arrays listed in the
1928 configuration file will be monitored. Further, if
1929 .B \-\-scan
1930 is given, then any other md devices that appear in
1931 .B /proc/mdstat
1932 will also be monitored.
1933
1934 The result of monitoring the arrays is the generation of events.
1935 These events are passed to a separate program (if specified) and may
1936 be mailed to a given E-mail address.
1937
1938 When passing events to a program, the program is run once for each event,
1939 and is given 2 or 3 command-line arguments: the first is the
1940 name of the event (see below), the second is the name of the
1941 md device which is affected, and the third is the name of a related
1942 device if relevant (such as a component device that has failed).
1943
1944 If
1945 .B \-\-scan
1946 is given, then a program or an E-mail address must be specified on the
1947 command line or in the config file. If neither are available, then
1948 .I mdadm
1949 will not monitor anything.
1950 Without
1951 .B \-\-scan,
1952 .I mdadm
1953 will continue monitoring as long as something was found to monitor. If
1954 no program or email is given, then each event is reported to
1955 .BR stdout .
1956
1957 The different events are:
1958
1959 .RS 4
1960 .TP
1961 .B DeviceDisappeared
1962 An md array which previously was configured appears to no longer be
1963 configured. (syslog priority: Critical)
1964
1965 If
1966 .I mdadm
1967 was told to monitor an array which is RAID0 or Linear, then it will
1968 report
1969 .B DeviceDisappeared
1970 with the extra information
1971 .BR Wrong-Level .
1972 This is because RAID0 and Linear do not support the device-failed,
1973 hot-spare and resync operations which are monitored.
1974
1975 .TP
1976 .B RebuildStarted
1977 An md array started reconstruction. (syslog priority: Warning)
1978
1979 .TP
1980 .BI Rebuild NN
1981 Where
1982 .I NN
1983 is a two-digit number (ie. 05, 48). This indicates that rebuild
1984 has passed that many percent of the total. The events are generated
1985 with fixed increment since 0. Increment size may be specified with
1986 a commandline option (default is 20). (syslog priority: Warning)
1987
1988 .TP
1989 .B RebuildFinished
1990 An md array that was rebuilding, isn't any more, either because it
1991 finished normally or was aborted. (syslog priority: Warning)
1992
1993 .TP
1994 .B Fail
1995 An active component device of an array has been marked as
1996 faulty. (syslog priority: Critical)
1997
1998 .TP
1999 .B FailSpare
2000 A spare component device which was being rebuilt to replace a faulty
2001 device has failed. (syslog priority: Critical)
2002
2003 .TP
2004 .B SpareActive
2005 A spare component device which was being rebuilt to replace a faulty
2006 device has been successfully rebuilt and has been made active.
2007 (syslog priority: Info)
2008
2009 .TP
2010 .B NewArray
2011 A new md array has been detected in the
2012 .B /proc/mdstat
2013 file. (syslog priority: Info)
2014
2015 .TP
2016 .B DegradedArray
2017 A newly noticed array appears to be degraded. This message is not
2018 generated when
2019 .I mdadm
2020 notices a drive failure which causes degradation, but only when
2021 .I mdadm
2022 notices that an array is degraded when it first sees the array.
2023 (syslog priority: Critical)
2024
2025 .TP
2026 .B MoveSpare
2027 A spare drive has been moved from one array in a
2028 .B spare-group
2029 to another to allow a failed drive to be replaced.
2030 (syslog priority: Info)
2031
2032 .TP
2033 .B SparesMissing
2034 If
2035 .I mdadm
2036 has been told, via the config file, that an array should have a certain
2037 number of spare devices, and
2038 .I mdadm
2039 detects that it has fewer than this number when it first sees the
2040 array, it will report a
2041 .B SparesMissing
2042 message.
2043 (syslog priority: Warning)
2044
2045 .TP
2046 .B TestMessage
2047 An array was found at startup, and the
2048 .B \-\-test
2049 flag was given.
2050 (syslog priority: Info)
2051 .RE
2052
2053 Only
2054 .B Fail,
2055 .B FailSpare,
2056 .B DegradedArray,
2057 .B SparesMissing
2058 and
2059 .B TestMessage
2060 cause Email to be sent. All events cause the program to be run.
2061 The program is run with two or three arguments: the event
2062 name, the array device and possibly a second device.
2063
2064 Each event has an associated array device (e.g.
2065 .BR /dev/md1 )
2066 and possibly a second device. For
2067 .BR Fail ,
2068 .BR FailSpare ,
2069 and
2070 .B SpareActive
2071 the second device is the relevant component device.
2072 For
2073 .B MoveSpare
2074 the second device is the array that the spare was moved from.
2075
2076 For
2077 .I mdadm
2078 to move spares from one array to another, the different arrays need to
2079 be labeled with the same
2080 .B spare-group
2081 in the configuration file. The
2082 .B spare-group
2083 name can be any string; it is only necessary that different spare
2084 groups use different names.
2085
2086 When
2087 .I mdadm
2088 detects that an array in a spare group has fewer active
2089 devices than necessary for the complete array, and has no spare
2090 devices, it will look for another array in the same spare group that
2091 has a full complement of working drive and a spare. It will then
2092 attempt to remove the spare from the second drive and add it to the
2093 first.
2094 If the removal succeeds but the adding fails, then it is added back to
2095 the original array.
2096
2097 .SH GROW MODE
2098 The GROW mode is used for changing the size or shape of an active
2099 array.
2100 For this to work, the kernel must support the necessary change.
2101 Various types of growth are being added during 2.6 development,
2102 including restructuring a RAID5 array to have more active devices.
2103
2104 Currently the only support available is to
2105 .IP \(bu 4
2106 change the "size" attribute
2107 for RAID1, RAID5 and RAID6.
2108 .IP \(bu 4
2109 increase or decrease the "raid\-devices" attribute of RAID1, RAID5,
2110 and RAID6.
2111 .IP \bu 4
2112 change the chunk-size and layout of RAID5 and RAID6.
2113 .IP \bu 4
2114 convert between RAID1 and RAID5, and between RAID5 and RAID6.
2115 .IP \(bu 4
2116 add a write-intent bitmap to any array which supports these bitmaps, or
2117 remove a write-intent bitmap from such an array.
2118 .PP
2119
2120 GROW mode is not currently supported for
2121 .B CONTAINERS
2122 or arrays inside containers.
2123
2124 .SS SIZE CHANGES
2125 Normally when an array is built the "size" it taken from the smallest
2126 of the drives. If all the small drives in an arrays are, one at a
2127 time, removed and replaced with larger drives, then you could have an
2128 array of large drives with only a small amount used. In this
2129 situation, changing the "size" with "GROW" mode will allow the extra
2130 space to start being used. If the size is increased in this way, a
2131 "resync" process will start to make sure the new parts of the array
2132 are synchronised.
2133
2134 Note that when an array changes size, any filesystem that may be
2135 stored in the array will not automatically grow to use the space. The
2136 filesystem will need to be explicitly told to use the extra space.
2137
2138 Also the size of an array cannot be changed while it has an active
2139 bitmap. If an array has a bitmap, it must be removed before the size
2140 can be changed. Once the change it complete a new bitmap can be created.
2141
2142 .SS RAID\-DEVICES CHANGES
2143
2144 A RAID1 array can work with any number of devices from 1 upwards
2145 (though 1 is not very useful). There may be times which you want to
2146 increase or decrease the number of active devices. Note that this is
2147 different to hot-add or hot-remove which changes the number of
2148 inactive devices.
2149
2150 When reducing the number of devices in a RAID1 array, the slots which
2151 are to be removed from the array must already be vacant. That is, the
2152 devices which were in those slots must be failed and removed.
2153
2154 When the number of devices is increased, any hot spares that are
2155 present will be activated immediately.
2156
2157 Changing the number of active devices in a RAID5 or RAID6 is much more
2158 effort. Every block in the array will need to be read and written
2159 back to a new location. From 2.6.17, the Linux Kernel is able to
2160 increase the number of devices in a RAID5 safely, including restarting
2161 an interrupted "reshape". From 2.6.31, the Linux Kernel is able to
2162 increase or decrease the number of devices in a RAID5 or RAID6.
2163
2164 When decreasing the number of devices, the size of the array will also
2165 decrease. If there was data in the array, it could get destroyed and
2166 this is not reversible. To help prevent accidents,
2167 .I mdadm
2168 requires that the size of the array be decreased first with
2169 .BR "mdadm --grow --array-size" .
2170 This is a reversible change which simply makes the end of the array
2171 inaccessible. The integrity of any data can then be checked before
2172 the non-reversible reduction in the number of devices is request.
2173
2174 When relocating the first few stripes on a RAID5, it is not possible
2175 to keep the data on disk completely consistent and crash-proof. To
2176 provide the required safety, mdadm disables writes to the array while
2177 this "critical section" is reshaped, and takes a backup of the data
2178 that is in that section. This backup is normally stored in any spare
2179 devices that the array has, however it can also be stored in a
2180 separate file specified with the
2181 .B \-\-backup\-file
2182 option. If this option is used, and the system does crash during the
2183 critical period, the same file must be passed to
2184 .B \-\-assemble
2185 to restore the backup and reassemble the array.
2186
2187 .SS LEVEL CHANGES
2188
2189 Changing the RAID level of any array happens instantaneously. However
2190 in the RAID to RAID6 case this requires a non-standard layout of the
2191 RAID6 data, and in the RAID6 to RAID5 case that non-standard layout is
2192 required before the change can be accomplish. So while the level
2193 change is instant, the accompanying layout change can take quite a
2194 long time.
2195
2196 .SS CHUNK-SIZE AND LAYOUT CHANGES
2197
2198 Changing the chunk-size of layout without also changing the number of
2199 devices as the same time will involve re-writing all blocks in-place.
2200 To ensure against data loss in the case of a crash, a
2201 .B --backup-file
2202 must be provided for these changes. Small sections of the array will
2203 be copied to the backup file while they are being rearranged.
2204
2205 If the reshape is interrupted for any reason, this backup file must be
2206 make available to
2207 .B "mdadm --assemble"
2208 so the array can be reassembled. Consequently the file cannot be
2209 stored on the device being reshaped.
2210
2211
2212 .SS BITMAP CHANGES
2213
2214 A write-intent bitmap can be added to, or removed from, an active
2215 array. Either internal bitmaps, or bitmaps stored in a separate file,
2216 can be added. Note that if you add a bitmap stored in a file which is
2217 in a filesystem that is on the RAID array being affected, the system
2218 will deadlock. The bitmap must be on a separate filesystem.
2219
2220 .SH INCREMENTAL MODE
2221
2222 .HP 12
2223 Usage:
2224 .B mdadm \-\-incremental
2225 .RB [ \-\-run ]
2226 .RB [ \-\-quiet ]
2227 .I component-device
2228 .HP 12
2229 Usage:
2230 .B mdadm \-\-incremental \-\-fail
2231 .I component-device
2232 .HP 12
2233 Usage:
2234 .B mdadm \-\-incremental \-\-rebuild\-map
2235 .HP 12
2236 Usage:
2237 .B mdadm \-\-incremental \-\-run \-\-scan
2238
2239 .PP
2240 This mode is designed to be used in conjunction with a device
2241 discovery system. As devices are found in a system, they can be
2242 passed to
2243 .B "mdadm \-\-incremental"
2244 to be conditionally added to an appropriate array.
2245
2246 Conversely, it can also be used with the
2247 .B \-\-fail
2248 flag to do just the opposite and find whatever array a particular device
2249 is part of and remove the device from that array.
2250
2251 If the device passed is a
2252 .B CONTAINER
2253 device created by a previous call to
2254 .IR mdadm ,
2255 then rather than trying to add that device to an array, all the arrays
2256 described by the metadata of the container will be started.
2257
2258 .I mdadm
2259 performs a number of tests to determine if the device is part of an
2260 array, and which array it should be part of. If an appropriate array
2261 is found, or can be created,
2262 .I mdadm
2263 adds the device to the array and conditionally starts the array.
2264
2265 Note that
2266 .I mdadm
2267 will only add devices to an array which were previously working
2268 (active or spare) parts of that array. It does not currently support
2269 automatic inclusion of a new drive as a spare in some array.
2270
2271 The tests that
2272 .I mdadm
2273 makes are as follow:
2274 .IP +
2275 Is the device permitted by
2276 .BR mdadm.conf ?
2277 That is, is it listed in a
2278 .B DEVICES
2279 line in that file. If
2280 .B DEVICES
2281 is absent then the default it to allow any device. Similar if
2282 .B DEVICES
2283 contains the special word
2284 .B partitions
2285 then any device is allowed. Otherwise the device name given to
2286 .I mdadm
2287 must match one of the names or patterns in a
2288 .B DEVICES
2289 line.
2290
2291 .IP +
2292 Does the device have a valid md superblock. If a specific metadata
2293 version is request with
2294 .B \-\-metadata
2295 or
2296 .B \-e
2297 then only that style of metadata is accepted, otherwise
2298 .I mdadm
2299 finds any known version of metadata. If no
2300 .I md
2301 metadata is found, the device is rejected.
2302
2303 .ig
2304 .IP +
2305 Does the metadata match an expected array?
2306 The metadata can match in two ways. Either there is an array listed
2307 in
2308 .B mdadm.conf
2309 which identifies the array (either by UUID, by name, by device list,
2310 or by minor-number), or the array was created with a
2311 .B homehost
2312 specified and that
2313 .B homehost
2314 matches the one in
2315 .B mdadm.conf
2316 or on the command line.
2317 If
2318 .I mdadm
2319 is not able to positively identify the array as belonging to the
2320 current host, the device will be rejected.
2321 ..
2322
2323 .I mdadm
2324 keeps a list of arrays that it has partially assembled in
2325 .B /var/run/mdadm/map
2326 (or
2327 .B /var/run/mdadm.map
2328 if the directory doesn't exist. Or maybe even
2329 .BR /dev/.mdadm.map ).
2330 If no array exists which matches
2331 the metadata on the new device,
2332 .I mdadm
2333 must choose a device name and unit number. It does this based on any
2334 name given in
2335 .B mdadm.conf
2336 or any name information stored in the metadata. If this name
2337 suggests a unit number, that number will be used, otherwise a free
2338 unit number will be chosen. Normally
2339 .I mdadm
2340 will prefer to create a partitionable array, however if the
2341 .B CREATE
2342 line in
2343 .B mdadm.conf
2344 suggests that a non-partitionable array is preferred, that will be
2345 honoured.
2346
2347 If the array is not found in the config file and its metadata does not
2348 identify it as belonging to the "homehost", then
2349 .I mdadm
2350 will choose a name for the array which is certain not to conflict with
2351 any array which does belong to this host. It does this be adding an
2352 underscore and a small number to the name preferred by the metadata.
2353
2354 Once an appropriate array is found or created and the device is added,
2355 .I mdadm
2356 must decide if the array is ready to be started. It will
2357 normally compare the number of available (non-spare) devices to the
2358 number of devices that the metadata suggests need to be active. If
2359 there are at least that many, the array will be started. This means
2360 that if any devices are missing the array will not be restarted.
2361
2362 As an alternative,
2363 .B \-\-run
2364 may be passed to
2365 .I mdadm
2366 in which case the array will be run as soon as there are enough
2367 devices present for the data to be accessible. For a RAID1, that
2368 means one device will start the array. For a clean RAID5, the array
2369 will be started as soon as all but one drive is present.
2370
2371 Note that neither of these approaches is really ideal. If it can
2372 be known that all device discovery has completed, then
2373 .br
2374 .B " mdadm \-IRs"
2375 .br
2376 can be run which will try to start all arrays that are being
2377 incrementally assembled. They are started in "read-auto" mode in
2378 which they are read-only until the first write request. This means
2379 that no metadata updates are made and no attempt at resync or recovery
2380 happens. Further devices that are found before the first write can
2381 still be added safely.
2382
2383 .SH ENVIRONMENT
2384 This section describes environment variables that affect how mdadm
2385 operates.
2386
2387 .TP
2388 .B MDADM_NO_MDMON
2389 Setting this value to 1 will prevent mdadm from automatically launching
2390 mdmon. This variable is intended primarily for debugging mdadm/mdmon.
2391
2392 .TP
2393 .B MDADM_NO_UDEV
2394 Normally,
2395 .I mdadm
2396 does not create any device nodes in /dev, but leaves that task to
2397 .IR udev .
2398 If
2399 .I udev
2400 appears not to be configured, or if this environment variable is set
2401 to '1', the
2402 .I mdadm
2403 will create and devices that are needed.
2404
2405 .SH EXAMPLES
2406
2407 .B " mdadm \-\-query /dev/name-of-device"
2408 .br
2409 This will find out if a given device is a RAID array, or is part of
2410 one, and will provide brief information about the device.
2411
2412 .B " mdadm \-\-assemble \-\-scan"
2413 .br
2414 This will assemble and start all arrays listed in the standard config
2415 file. This command will typically go in a system startup file.
2416
2417 .B " mdadm \-\-stop \-\-scan"
2418 .br
2419 This will shut down all arrays that can be shut down (i.e. are not
2420 currently in use). This will typically go in a system shutdown script.
2421
2422 .B " mdadm \-\-follow \-\-scan \-\-delay=120"
2423 .br
2424 If (and only if) there is an Email address or program given in the
2425 standard config file, then
2426 monitor the status of all arrays listed in that file by
2427 polling them ever 2 minutes.
2428
2429 .B " mdadm \-\-create /dev/md0 \-\-level=1 \-\-raid\-devices=2 /dev/hd[ac]1"
2430 .br
2431 Create /dev/md0 as a RAID1 array consisting of /dev/hda1 and /dev/hdc1.
2432
2433 .br
2434 .B " echo 'DEVICE /dev/hd*[0\-9] /dev/sd*[0\-9]' > mdadm.conf"
2435 .br
2436 .B " mdadm \-\-detail \-\-scan >> mdadm.conf"
2437 .br
2438 This will create a prototype config file that describes currently
2439 active arrays that are known to be made from partitions of IDE or SCSI drives.
2440 This file should be reviewed before being used as it may
2441 contain unwanted detail.
2442
2443 .B " echo 'DEVICE /dev/hd[a\-z] /dev/sd*[a\-z]' > mdadm.conf"
2444 .br
2445 .B " mdadm \-\-examine \-\-scan \-\-config=mdadm.conf >> mdadm.conf"
2446 .br
2447 This will find arrays which could be assembled from existing IDE and
2448 SCSI whole drives (not partitions), and store the information in the
2449 format of a config file.
2450 This file is very likely to contain unwanted detail, particularly
2451 the
2452 .B devices=
2453 entries. It should be reviewed and edited before being used as an
2454 actual config file.
2455
2456 .B " mdadm \-\-examine \-\-brief \-\-scan \-\-config=partitions"
2457 .br
2458 .B " mdadm \-Ebsc partitions"
2459 .br
2460 Create a list of devices by reading
2461 .BR /proc/partitions ,
2462 scan these for RAID superblocks, and printout a brief listing of all
2463 that were found.
2464
2465 .B " mdadm \-Ac partitions \-m 0 /dev/md0"
2466 .br
2467 Scan all partitions and devices listed in
2468 .BR /proc/partitions
2469 and assemble
2470 .B /dev/md0
2471 out of all such devices with a RAID superblock with a minor number of 0.
2472
2473 .B " mdadm \-\-monitor \-\-scan \-\-daemonise > /var/run/mdadm"
2474 .br
2475 If config file contains a mail address or alert program, run mdadm in
2476 the background in monitor mode monitoring all md devices. Also write
2477 pid of mdadm daemon to
2478 .BR /var/run/mdadm .
2479
2480 .B " mdadm \-Iq /dev/somedevice"
2481 .br
2482 Try to incorporate newly discovered device into some array as
2483 appropriate.
2484
2485 .B " mdadm \-\-incremental \-\-rebuild\-map \-\-run \-\-scan"
2486 .br
2487 Rebuild the array map from any current arrays, and then start any that
2488 can be started.
2489
2490 .B " mdadm /dev/md4 --fail detached --remove detached"
2491 .br
2492 Any devices which are components of /dev/md4 will be marked as faulty
2493 and then remove from the array.
2494
2495 .B " mdadm --grow /dev/md4 --level=6 --backup-file=/root/backup-md4
2496 .br
2497 The array
2498 .B /dev/md4
2499 which is currently a RAID5 array will be converted to RAID6. There
2500 should normally already be a spare drive attached to the array as a
2501 RAID6 needs one more drive than a matching RAID5.
2502
2503 .B " mdadm --create /dev/md/ddf --metadata=ddf --raid-disks 6 /dev/sd[a-f]"
2504 .br
2505 Create a DDF array over 6 devices.
2506
2507 .B " mdadm --create /dev/md/home -n3 -l5 -z 30000000 /dev/md/ddf"
2508 .br
2509 Create a RAID5 array over any 3 devices in the given DDF set. Use
2510 only 30 gigabytes of each device.
2511
2512 .B " mdadm -A /dev/md/ddf1 /dev/sd[a-f]"
2513 .br
2514 Assemble a pre-exist ddf array.
2515
2516 .B " mdadm -I /dev/md/ddf1"
2517 .br
2518 Assemble all arrays contained in the ddf array, assigning names as
2519 appropriate.
2520
2521 .B " mdadm \-\-create \-\-help"
2522 .br
2523 Provide help about the Create mode.
2524
2525 .B " mdadm \-\-config \-\-help"
2526 .br
2527 Provide help about the format of the config file.
2528
2529 .B " mdadm \-\-help"
2530 .br
2531 Provide general help.
2532
2533 .SH FILES
2534
2535 .SS /proc/mdstat
2536
2537 If you're using the
2538 .B /proc
2539 filesystem,
2540 .B /proc/mdstat
2541 lists all active md devices with information about them.
2542 .I mdadm
2543 uses this to find arrays when
2544 .B \-\-scan
2545 is given in Misc mode, and to monitor array reconstruction
2546 on Monitor mode.
2547
2548 .SS /etc/mdadm.conf
2549
2550 The config file lists which devices may be scanned to see if
2551 they contain MD super block, and gives identifying information
2552 (e.g. UUID) about known MD arrays. See
2553 .BR mdadm.conf (5)
2554 for more details.
2555
2556 .SS /var/run/mdadm/map
2557 When
2558 .B \-\-incremental
2559 mode is used, this file gets a list of arrays currently being created.
2560 If
2561 .B /var/run/mdadm
2562 does not exist as a directory, then
2563 .B /var/run/mdadm.map
2564 is used instead. If
2565 .B /var/run
2566 is not available (as may be the case during early boot),
2567 .B /dev/.mdadm.map
2568 is used on the basis that
2569 .B /dev
2570 is usually available very early in boot.
2571
2572 .SH DEVICE NAMES
2573
2574 .I mdadm
2575 understand two sorts of names for array devices.
2576
2577 The first is the so-called 'standard' format name, which matches the
2578 names used by the kernel and which appear in
2579 .IR /proc/mdstat .
2580
2581 The second sort can be freely chosen, but must reside in
2582 .IR /dev/md/ .
2583 When giving a device name to
2584 .I mdadm
2585 to create or assemble an array, either full path name such as
2586 .I /dev/md0
2587 or
2588 .I /dev/md/home
2589 can be given, or just the suffix of the second sort of name, such as
2590 .I home
2591 can be given.
2592
2593 When
2594 .I mdadm
2595 chooses device names during auto-assembly or incremental assembly, it
2596 will sometimes add a small sequence number to the end of the name to
2597 avoid conflicted between multiple arrays that have the same name. If
2598 .I mdadm
2599 can reasonably determine that the array really is meant for this host,
2600 either by a hostname in the metadata, or by the presence of the array
2601 in /etc/mdadm.conf, then it will leave off the suffix if possible.
2602 Also if the homehost is specified as
2603 .B <ignore>
2604 .I mdadm
2605 will only use a suffix if a different array of the same name already
2606 exists or is listed in the config file.
2607
2608 The standard names for non-partitioned arrays (the only sort of md
2609 array available in 2.4 and earlier) are of the form
2610 .IP
2611 /dev/mdNN
2612 .PP
2613 where NN is a number.
2614 The standard names for partitionable arrays (as available from 2.6
2615 onwards) are of the form
2616 .IP
2617 /dev/md_dNN
2618 .PP
2619 Partition numbers should be indicated by added "pMM" to these, thus "/dev/md/d1p2".
2620 .PP
2621 From kernel version, 2.6.28 the "non-partitioned array" can actually
2622 be partitioned. So the "md_dNN" names are no longer needed, and
2623 partitions such as "/dev/mdNNpXX" are possible.
2624
2625 .SH NOTE
2626 .I mdadm
2627 was previously known as
2628 .IR mdctl .
2629 .P
2630 .I mdadm
2631 is completely separate from the
2632 .I raidtools
2633 package, and does not use the
2634 .I /etc/raidtab
2635 configuration file at all.
2636
2637 .SH SEE ALSO
2638 For further information on mdadm usage, MD and the various levels of
2639 RAID, see:
2640 .IP
2641 .B http://linux\-raid.osdl.org/
2642 .PP
2643 (based upon Jakob \(/Ostergaard's Software\-RAID.HOWTO)
2644 .\".PP
2645 .\"for new releases of the RAID driver check out:
2646 .\"
2647 .\".IP
2648 .\".UR ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
2649 .\"ftp://ftp.kernel.org/pub/linux/kernel/people/mingo/raid-patches
2650 .\".UE
2651 .\".PP
2652 .\"or
2653 .\".IP
2654 .\".UR http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
2655 .\"http://www.cse.unsw.edu.au/~neilb/patches/linux-stable/
2656 .\".UE
2657 .PP
2658 The latest version of
2659 .I mdadm
2660 should always be available from
2661 .IP
2662 .B http://www.kernel.org/pub/linux/utils/raid/mdadm/
2663 .PP
2664 Related man pages:
2665 .PP
2666 .IR mdmon (8),
2667 .IR mdadm.conf (5),
2668 .IR md (4).
2669 .PP
2670 .IR raidtab (5),
2671 .IR raid0run (8),
2672 .IR raidstop (8),
2673 .IR mkraid (8).