How to increase /dev/sda4 partition space in Aria Suite Lifecycle
search cancel

How to increase /dev/sda4 partition space in Aria Suite Lifecycle

book

Article ID: 430047

calendar_today

Updated On:

Products

VCF Operations/Automation (formerly VMware Aria Suite)

Issue/Introduction

This article provides step-by-step instructions for increasing the size of the /dev/sda4 partition in Aria Suite Lifecycle.

You may encounter one or more of the following symptoms when the partition runs out of available space:

  • Login to Aria Suite Lifecycle fails with the following error:

    Could not open JPA EntityManager for transaction; nested exception is org.hibernate.exception.JDBCConnectionException: Unable to acquire JDBC Connection
  • The PostgreSQL service fails to start.

Environment

Aria Suite Lifecycle 8.18

Cause

The /root partition has reached 100% capacity, preventing the database from starting.

Resolution

Remove any existing snapshot on the LCM VM. Shutdown the VM and increase the size of the Hard disk1. Power on the VM and take snapshot before proceeding to below steps which will resize the partition.

Extend the root partition by following steps below:

1. Invoke partitioning tool (menu-driven interface) by running the below command.

# cfdisk /dev/sda

Note: This step is applicable only for the root partition:

2. Using arrow keys select /dev/sda4

3. Using tab key Or shift tab select [ Resize ] then enter
4. Enter the New Disk Size to Expand the Root Partition

  • Note:  start by checking how much free space is available on /dev/sda. Next, make sure the new disk size is larger than the current root partition. For example, if you plan to add additional 10 GB, the new total size should be the ( current root partition size +  10 GB ) which should be available in free space.

5. Using tab key select [ Write ]

6. type "yes"

7. Press tab to [ Quit ]

8. Next, you must resize the file system with "resize2fs" to use the new space:

[before resize2fs]
# df -h | grep "sda4"
/dev/sda4 8.8G 3.9G 4.5G 47% /

[run resize2fs]
# resize2fs /dev/sda4

[after resize2fs]
# df -h | grep "sda4"
/dev/sda4 12G 3.9G 7.3G 35% /

9. Run 'df -h' command to verify the allocated space.