Skip to content

Commit

Permalink
Update multipathing.md
Browse files Browse the repository at this point in the history
  • Loading branch information
laspavel committed Jun 25, 2024
1 parent 35c8efd commit c8e5cad
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 03.linux/10006.yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -316,5 +316,7 @@
export http_proxy="http://server:3128"


---
* [https://docs.oracle.com/en/learn/ol-dnf-security/index.html#update-packages](https://docs.oracle.com/en/learn/ol-dnf-security/index.html#update-packages)


32 changes: 32 additions & 0 deletions 03.linux/dod/10097.multipathing.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,38 @@ dmsetup info /dev/mapper/mpathc
multipath -f mpathc
```


Добавление нового мультипасс-диска:
1) ​Нужно просканировать все scsi хосты, чтобы новый диск обнаружился в системе:
```
# Для host3:
echo "- - -" > /sys/class/scsi_host/host3/scan
```

2) Чтобы узнать сколько всего хостов, выполните
```
ls /sys/class/scsi_host/
```
3) Проверьте новое multipath устройство
```
multipath​ -ll
```
4) После этого создаем раздел на новом диске
```
# Для /dev/mapper/mpath​j
kpartx -a /dev/mapper/mpath​j
```

WARNING! Утилита fdisk на MAPPER-устройствах работает некорректно!

5) Создаем файлову систему на новом разделе:
```
# Для /dev/mapper/mpathj1
mkfs.ext3 /dev/mapper/mpathj1
```

6) Маунтим в нужную точку подключения

Добавление и удаление на ходу SATA/SCSI устройств
[https://habr.com/ru/post/102387/](https://habr.com/ru/post/102387/)

Expand Down

0 comments on commit c8e5cad

Please sign in to comment.