![]() | Oracle System Handbook - ISO 7.0 May 2018 Internal/Partner Edition | ||
|
|
![]() |
||||||||||||||||||||
Solution Type Problem Resolution Sure Solution 1644872.1 : dbnodeupdate Warning: Total amount of free space in the volume group is less than 2GB. Unable to make a snapshot
In this Document
Applies to:Exadata Database Machine V2 - Version All Versions to All Versions [Release All Releases]Linux x86-64 SymptomsWhen running dbnodeupdate.sh the following warning message is presented: Warning: Total amount of free space in the volume group is less than 2GB. Unable to make a snapshot
Example: ./dbnodeupdate.sh -u -l /u01/patches/YUM/p17809253_112330_Linux-x86-64.zip -v . . ChangesApplying a new version of the Exadata software (upgrade). CauseNot enough free space (at least 2GB) in the volume group for a backup snapshot to be taken. This is because the logical volume associated with the /u01 file system must have been manually edited to increase useable space thus leaving very little free space at the volume group level. This could be seen on one or many nodes.
This space problem can be confirmed by running the vgs command example: [root@ExaDB01]# vgs VG #PV #LV #SN Attr VSize VFree VGExaDb 1 4 0 wz--n- 556.43G 436.00M <=== Volume Group VGExaDb only has 436MB of free space. View all LV's and sizes [root@ExaDB01 ~]# lvs In this example, the problem is not seen on the other node in the Cluster Output from good node ExaDB02 [root@ExaDB02]# vgs VG #PV #LV #SN Attr VSize VFree VGExaDb 1 4 0 wz--n- 556.43G 12.43G <==Good node 12G of Free space [root@ExaDB02 ~]# lvs SolutionNeed to reduce the size of the Logical Volume associated with the /u01 partition by 12GB so it matches with the good node showing 12GB of free space.
1) Find the LV name of assigned to the /u01 partition [root@ExaDB01 ~]# df -kvh
2) Backup all data on /u01 in case of data loss during reduce procedure. 3) Stop all applications utilizing /u01. In most cases this means stoping Databases and CRS. And un-mount the /u01 file system example: umount /u01 4) Run File System check example: [root@ExaDB01 ~]# e2fsck -f /dev/mapper/VGExaDb-LVDbOra1
5) Reduce the size of the file system by 12G example: resize2fs /dev/mapper/VGExaDb-LVDbOra1 460G
6) Now reduce the size of the LV by 12G example: [root@ExaDB01 ~]# lvm
7) mount the newly resized /u01 partition (LVDbOra1) example: [root@ExaDB01 ~]# mount -t ext3 /dev/mapper/VGExaDb-LVDbOra1 /u01
8) rerun vgs command to confirm free space example: [root@ExaDB01]# vgs VG #PV #LV #SN Attr VSize VFree VGExaDb 1 4 0 wz--n- 556.43G 12.43G <=== Volume Group now shows 12G of free space 9) With free space issue now resolved re-run upgrade actions (dbnodeupdate.sh) References<NOTE:1553103.1> - Exadata Database Server Patching using the DB Node Update UtilityAttachments This solution has no attachment |
||||||||||||||||||||
|