Questo contenuto non è disponibile nella lingua selezionata.
3.5. Storage and File Systems
Driver Update Diskcomponent- The hpsa driver installed from the AMD64 and Intel 64 Driver Update Program ISO might not be loaded properly on Red Hat Enterprise Linux 6.3. Consequently, the system can become unresponsive. To work around this problem, use the
pci=nomsikernel parameter before installing the driver from the ISO. lvm2component, BZ#832392- When
issue_discards=1is configured in the/etc/lvm/lvm.conffile, moving physical volumes via thepvmovecommand results in data loss. To work around this issue, ensure thatissue_discards=0is set in yourlvm.conffile before moving any physical volumes. lvm2component, BZ#832033- When using the
lvmetaddaemon (currently a Technology Preview), avoid passing the--testargument to commands. The use of the--testargument may lead to inconsistencies in the cache thatlvmetadmaintains. This issue will be fixed in a future release. If the--testargument has been used, fix any problems by restarting thelvmetaddaemon. lvm2component, BZ#820229- It is not possible to rename thin logical volumes using tools provided in the current LVM2 release. The rename operation returns the following error:This issue will be fixed in the next LVM2 release.
lvrename Cannot rename <volume_name>: name format not recognized for internal LV <pool_name>
lvrename Cannot rename <volume_name>: name format not recognized for internal LV <pool_name>Copy to Clipboard Copied! Toggle word wrap Toggle overflow device-mapper-multipathcomponent- Multipath's
queue_without_daemon yesdefault option queues I/O even though all iSCSI links have been disconnected when the system is shut down, which causes LVM to become unresponsive when scanning all block devices. As a result, the system cannot be shut down. To work around this issue, add the following line into thedefaultssection of/etc/multipath.conf:queue_without_daemon no
queue_without_daemon noCopy to Clipboard Copied! Toggle word wrap Toggle overflow initscriptscomponent- Running the file system check (using fsck) on a NFS mounted file system fails, and causes the system to fail to boot and drop into a shell. To work around this issue, disable fsck on any
/bootpartitions by setting the sixth value of a/bootentry in/etc/fstabto0. kernelcomponent, BZ#606260- The NFSv4 server in Red Hat Enterprise Linux 6 currently allows clients to mount using UDP and advertises NFSv4 over UDP with rpcbind. However, this configuration is not supported by Red Hat and violates the RFC 3530 standard.
lvm2component- The dracut utility currently only supports one FiberChannel over Ethernet (FCoE) connection to be used to boot from the root device. Consequently, booting from a root device that spans multiple FCoE devices (for example, using RAID, LVM or similar techniques) is not possible.
-
lvm2component - The
pvmovecommand cannot currently be used to move mirror devices. However, it is possible to move mirror devices by issuing a sequence of two commands. For mirror images, add a new image on the destination PV and then remove the mirror image on the source PV:lvconvert -m +1 <vg/lv> <new PV> lvconvert -m -1 <vg/lv> <old PV>
~]$ lvconvert -m +1 <vg/lv> <new PV> ~]$ lvconvert -m -1 <vg/lv> <old PV>Copy to Clipboard Copied! Toggle word wrap Toggle overflow Mirror logs can be handled in a similar fashion:lvconvert --mirrorlog core <vg/lv> lvconvert --mirrorlog disk <vg/lv> <new PV>
~]$ lvconvert --mirrorlog core <vg/lv> ~]$ lvconvert --mirrorlog disk <vg/lv> <new PV>Copy to Clipboard Copied! Toggle word wrap Toggle overflow orlvconvert --mirrorlog mirrored <vg/lv> <new PV> lvconvert --mirrorlog disk <vg/lv> <old PV>
~]$ lvconvert --mirrorlog mirrored <vg/lv> <new PV> ~]$ lvconvert --mirrorlog disk <vg/lv> <old PV>Copy to Clipboard Copied! Toggle word wrap Toggle overflow