Sometimes when you add new storage to a running VM you won’t see it; the SCSI bus needs to be re-scanned to make the new disk visible.
echo "---" > /sys/class/scsi_host/hostX/scan
X is the number of the SCSI host to scan."---"
tells the SCSI host to rescan all controllers, channels and LUNs.
To force a re-sync of the kernel for all the SCSI devices:
echo 1 > /sys/class/scsi_device/0\:0\:0\:0/device/rescan
where 0:0:0:0
is the device you want to sync.
If you increased the size of an existing disk but you are not able to see the new disk size:
echo "1" > /sys/class/block/sdX/device/rescan
"1"
is a flag that will trigger re-scan on the SCSI host.