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