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