Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Wiki Replica
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
TPA
Wiki Replica
Commits
cb4f777a
Commit
cb4f777a
authored
2 years ago
by
Jérôme Charaoui
Browse files
Options
Downloads
Patches
Plain Diff
make markdown tests happy
parent
5d1d8f53
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
howto/ganeti.md
+4
-4
4 additions, 4 deletions
howto/ganeti.md
with
4 additions
and
4 deletions
howto/ganeti.md
+
4
−
4
View file @
cb4f777a
...
...
@@ -654,13 +654,13 @@ First, we'll need to gather a some information about the disk to remove.
*
The WWID of both the SAN and the virtual disk
/usr/local/sbin/tpo-show-san-disks
SMcli -n
<san>
-S -quick -c "show storageArray summary;" | grep "Storage array world-wide identifier"
cat /etc/multipath/conf.d/
<name>
.conf
SMcli -n
chi-san-03
-S -quick -c "show storageArray summary;" | grep "Storage array world-wide identifier"
cat /etc/multipath/conf.d/
test-01
.conf
Second, remove the multipath config and reload:
gnt-cluster command rm /etc/multipath/conf.d/test-01.conf
gnt-cluster command "multipath -r ; multipath -w
<
disk-wwid
>
; multipath -r"
gnt-cluster command "multipath -r ; multipath -w
{
disk-wwid
}
; multipath -r"
Then, remove the iSCSI device nodes. Running
`iscsiadm --rescan`
does not remove
LUNs which have been deleted from the SAN.
...
...
@@ -668,7 +668,7 @@ LUNs which have been deleted from the SAN.
Be very careful with this command, it will delete device nodes without prejudice
and cause data corruption if they are still in use!
gnt-cluster command "find /dev/disk/by-path/ -name \*
<
san-wwid
>
-lun-
<
lun
>
-exec readlink {} \; | cut -d/ -f3 | while read -d $'\n' n; do echo 1 > /sys/block/\$n/device/delete; done"
gnt-cluster command "find /dev/disk/by-path/ -name \*
{
san-wwid
}
-lun-
{
lun
}
-exec readlink {} \; | cut -d/ -f3 | while read -d $'\n' n; do echo 1 > /sys/block/\$n/device/delete; done"
Finally, the disk group can be deleted from the SAN (all the virtual disks it
contains will be deleted):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment