Проект

Общее

Профиль

Работа с RAID контроллерами Adaptec

JBOD

Замена диска:
arcconf getconfig 1 ld

находим нужный jbod (можнопосмотреть в информации smart)


arcconf getconfig 1 ld 3

смотрим инфу, тот ли это том:

root@gnt1:~# ./arcconf getconfig 1 ld 3
Controllers found: 1
----------------------------------------------------------------------
Logical device information
----------------------------------------------------------------------
Logical device number 3
   Logical device name                      : Morphed JBOD 03
   Block Size of member drives              : 512 Bytes
   RAID level                               : Simple_volume
   Unique Identifier                        : 1D986A28
   Status of logical device                 : Optimal
   Size                                     : 285686 MB
   Parity space                             : 0 MB
   Read-cache setting                       : Enabled
   Read-cache status                        : On
   Write-cache setting                      : Enabled
   Write-cache status                       : On
   Partitioned                              : Yes
   Protected by Hot-Spare                   : No
   Bootable                                 : No
   Failed stripes                           : No
   Power settings                           : Disabled
   --------------------------------------------------------
   Logical device segment information
   --------------------------------------------------------
   Segment 0                                : Present (Controller:1,Connector:0,Device:3)             28W6LEYN

в строчке
Segment 0 : Present (Controller:1,Connector:0,Device:3) 28W6LEYN
Смотрим адрес: 1 - контроллер, 0 - канал, 3 - порт:

Переводим его в режим offline:

./arcconf setstate 1 device 0 3 DDD

мьютим бипер:

./arcconf setalarm 1 silence

После этого можно вынимать диск.

Вставляем новый, говорим rescan:

./arcconf rescan 1

создаем новый jbod:

./arcconf create 1 JBOD 0 3

создаем новый sipmle volume на нем:

./arcconf create 1 logicaldrive Name "Morphed JBOD 03" MAX volume 0 3

дальше копируем табилцу разделов:

sfdisk -d /dev/sda|sfdisk /dev/sdd

дальше, добавляем его в md raid:

mdadm --manage /dev/md0 --add /dev/sdd1
mdadm --manage /dev/md1 --add /dev/sdd2
mdadm --manage /dev/md2 --add /dev/sdd3

Дальше, ставим на него граб:

grub-mkdevicemap
grub-install /dev/sdd

Удаление метаданных с диска

RAID10

замена диска

arcconf getconfig 1 ld

находим нужный массив


arcconf getconfig 1 ld 0

смотрим инфу, тот ли это том:

root@gnt2:~# ./arcconf getconfig 1 ld 0
Controllers found: 1
----------------------------------------------------------------------
Logical device information
----------------------------------------------------------------------
Logical device number 0
   Logical device name                      : 
   Block Size of member drives              : 512 Bytes
   RAID level                               : 10
   Unique Identifier                        : 5326AA28
   Status of logical device                 : Optimal
   Size                                     : 1142774 MB
   Parity space                             : 1142784 MB
   Stripe-unit size                         : 512 KB
   Read-cache setting                       : Enabled
   Read-cache status                        : On
   Write-cache setting                      : Disabled
   Write-cache status                       : Off
   Partitioned                              : Yes
   Protected by Hot-Spare                   : No
   Bootable                                 : Yes
   Failed stripes                           : No
   Power settings                           : Disabled
   --------------------------------------------------------
   Logical device segment information
   --------------------------------------------------------
   Group 0, Segment 0                       : Present (Controller:1,Connector:0,Device:0)             28W6LM4N
   Group 0, Segment 1                       : Present (Controller:1,Connector:0,Device:1)             CVYJSXWN
   Group 1, Segment 0                       : Present (Controller:1,Connector:0,Device:2)             28W7YK3N
   Group 1, Segment 1                       : Present (Controller:1,Connector:0,Device:3)             28V24GYN
   Group 2, Segment 0                       : Present (Controller:1,Connector:1,Device:0)             28W7YUNN
   Group 2, Segment 1                       : Present (Controller:1,Connector:1,Device:1)             CVYJT0NN
   Group 3, Segment 0                       : Present (Controller:1,Connector:1,Device:2)             CVYJSXXN
   Group 3, Segment 1                       : Present (Controller:1,Connector:1,Device:3)             28W7YL6N

в строчке
Group 1, Segment 1 : Present (Controller:1,Connector:0,Device:3) 28V24GYN
Смотрим адрес: 1 - контроллер, 0 - канал, 3 - порт:

Переводим его в режим offline:

./arcconf setstate 1 device 0 3 DDD

мьютим бипер:

./arcconf setalarm 1 silence

После этого можно вынимать диск.

Вставляем новый, говорим rescan:

./arcconf rescan 1