Changes between Initial Version and Version 1 of Raid


Ignore:
Timestamp:
01/10/24 13:01:43 (11 months ago)
Author:
ypap
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Raid

    v1 v1  
     1== RAID setup ==
     2
     3In order to setup a RAID array on a machine that already had a RAID array:
     4
     5{{{
     6root@somemachine:~# cat /proc/mdstat
     7root@somemachine:~# mdadm --assemble --scan # Scans existing configs and assembles the raid
     8root@somemachine:~# lvs         # see the logical volumes
     9root@somemachine:~# vgscan      # read all physical volumes
     10root@somemachine:~# mount /dev/dm-0 /local
     11                                        /dev/mapper/vg-.. is a symbolic link to dm-0
     12                                        /dev/md0 will not be mounted
     13
     14root@somemachine:~# lsof -n | grep (mount point or device) # see who uses this mount point or device
     15}}}