Update deployments/platforms/virtualization/proxmox/Fixing iSCSI Connections that Drop at Reboot.md
Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 6s
Automatic Documentation Deployment / Sync Docs to https://kb.bunny-lab.io (push) Successful in 6s
This commit is contained in:
+13
@@ -8,6 +8,11 @@ systemctl enable --now iscsid
|
|||||||
systemctl enable --now open-iscsi
|
systemctl enable --now open-iscsi
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Discover Targets (To Create Necessary iSCSI Records)
|
||||||
|
```sh
|
||||||
|
iscsiadm -m discovery -t sendtargets -p 192.168.3.3:3260
|
||||||
|
```
|
||||||
|
|
||||||
### Configure Automatic iSCSI Target Connection Behavior
|
### Configure Automatic iSCSI Target Connection Behavior
|
||||||
Run these commands on every ProxmoxVE cluster node:
|
Run these commands on every ProxmoxVE cluster node:
|
||||||
```sh
|
```sh
|
||||||
@@ -32,6 +37,14 @@ You will want to ensure that `node.startup = automatic` and `node.conn[0].startu
|
|||||||
iscsiadm -m node -o show | grep -E 'node.name|node.conn\[0\].address|node.startup|node.conn\[0\].startup'
|
iscsiadm -m node -o show | grep -E 'node.name|node.conn\[0\].address|node.startup|node.conn\[0\].startup'
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Login/Mount iSCSI Targets
|
||||||
|
```sh
|
||||||
|
iscsiadm -m node \
|
||||||
|
-T iqn.2026-01.io.bunny-lab:storage:iscsi-cluster-storage \
|
||||||
|
-p 192.168.3.3:3260 \
|
||||||
|
--login
|
||||||
|
```
|
||||||
|
|
||||||
!!! Success "Example Output"
|
!!! Success "Example Output"
|
||||||
If everything worked correctly, you should see output like the example below:
|
If everything worked correctly, you should see output like the example below:
|
||||||
```sh
|
```sh
|
||||||
|
|||||||
Reference in New Issue
Block a user