分类:
2011-02-15 14:20:59
chinaunix网友2011-03-06 17:38:18
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com
chinaunix网友2011-03-06 17:38:18
很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com
chinaunix网友2011-02-15 15:23:28
LVM出现问题多半是因为系统ODM数据与存储在disk上面的VGDA,VGSA,LVCB信息等不同步 引起的。造成这种不同步现象一般是由于LVM操作的非正常中断,比如,在import一个VG 时候,存放ODM的文件系统(通常是/)空间满而引起的import操作非正常中断;还有系统 非法关机(可能是断电等),如果当时对ODM有写操作等,也会造成LVM问题。 下面就介绍如何诊断并对故障进行恢复: 一,If you suspect the ODM entries for a particular volume group have been corrupted, a simple way to re-synchronize the entries is to vary off and export the volume group from the system, then import and vary on to refresh the ODM. This process can only be performed for non-rootvg volume
chinaunix网友2011-02-15 15:23:28
LVM出现问题多半是因为系统ODM数据与存储在disk上面的VGDA,VGSA,LVCB信息等不同步 引起的。造成这种不同步现象一般是由于LVM操作的非正常中断,比如,在import一个VG 时候,存放ODM的文件系统(通常是/)空间满而引起的import操作非正常中断;还有系统 非法关机(可能是断电等),如果当时对ODM有写操作等,也会造成LVM问题。 下面就介绍如何诊断并对故障进行恢复: 一,If you suspect the ODM entries for a particular volume group have been corrupted, a simple way to re-synchronize the entries is to vary off and export the volume group from the system, then import and vary on to refresh the ODM. This process can only be performed for non-rootvg volume
chinaunix网友2011-02-15 14:25:44
在系统维护过程中,因为操作错误或其他特殊原因,有可能使某一PV上的LVCB和VGDA与其对应的ODM库不一致,导致ODM库紊乱,对PV的有关操作无法进行,这时可采用如下两个AIX命令加以解决: redefinevg -d hdisk_name vg_name 该命令以指定PV上的LVM信息重新定义给定VG的ODM库。 或:synclvodm -P -v vgname 该命令同步或重建给定VG的ODM库和LVM信息。