FortiPAM
FortiPAM allows you to protect, isolate and secure privileged account credentials, manage and control privileged user access, and monitor and record privileged account activity.
pabarro
Staff
Staff
Article Id 416996
Description This article describes the procedure for increasing FortiPAM on-premises disk Space or adding a new disk, specifically FortiPAM over VMware.
Scope FortiPAM v1.7 over VMware (ESXI or vCenter).

Solution

This version (v1.7) is based on Rocky Linux 8.x and includes an internal Storage Management module, so the process differs slightly from older releases.

 

Goal:
Increase FortiPAM storage capacity without data loss, either by:
  • Expanding an existing virtual disk.
  • Adding a new one for specific roles (Logs, Video, Secrets, etc.).
 
Step by Step: 
  1. Power off the FortiPAM VM:

In vCenter or ESXi, locate the FortiPAM VM and shut it down properly:

  • From the GUI: go to System -> Maintenance -> Shutdown.
  • From VMware: go tp Power → Shut Down Guest OS.
 
Note:
If using an HA cluster, shut down one node at a time (start with the secondary node).
 
  1. Increase disk size from VMware:
  • Right-click the FortiPAM VM → Edit Settings.
  • Locate the disk to be expanded (e.g., Hard Disk 2).
  • Increase its size (for example, from 200 GB → 400 GB).
  • Save and power the VM back on.
 
Note:
If the preference is separate storage (e.g., logs vs. video), add a new virtual disk instead of expanding the existing one.
 
  1. Check that the new/expanded disk is detected. After FortiPAM boots up, connect via SSH (as maintainer or root) and run the command:  lsblk
 
Example output:
 
sda   200G
├─sda1   1G
├─sda2   4G
└─sda3 195G  / sdb   200G
 
Note:
This shows all disks and partitions. Confirm whether the size increase or the new disk is visible.
 
 
Option A: Expand an existing disk:
  1. Identify the target partition:
  • Usually, the main partition is: '/dev/sda3'. 
  • Confirm with: 'sudo fdisk -l /dev/sda'.
 
  1. Extend the partition and filesystem.  FortiPAM v1.7 uses XFS, use:
 
sudo growpart /dev/sda 3
sudo xfs_growfs /
 
  1. Verify with the command:  'df -h'.
 
Note:
The additional space is reflected on the root filesystem.
 
Option B: Add a new disk (recommended for logs or video):
  1. Check the new disk: 'lsblk'.
 
Example
 
sdb   500G
 
  1. Format the disk: 'sudo mkfs.xfs /dev/sdb'.
  2. Create a mount point:
 
sudo mkdir /data/video
sudo mount /dev/sdb /data/video
 
  1. Make it persistent:  'echo "/dev/sdb /data/video xfs defaults 0 0" | sudo tee -a /etc/fstab'
  2. Configure it in the GUI under: System → Storage Management → Add Volume.
  3. Select the new path (e.g., /data/video).
  4. Assign the role:
    1. Video Storage.
    2. Log Storage.
    3. Secret Vault.
 
Note:
FortiPAM will restart storage services automatically.
 
Verification
  1. Run the next command:  'df -h'.
  2. Go  under System → Storage Management and confirm:
    1. The new/expanded volume appears.
    2. The Status is 'Healthy'.
 
Best practices
  • Take a VMware snapshot before any disk operation.
  • On HA setups, expand storage node by node, then resync.
  • Avoid editing LVM manually; FortiPAM manages storage automatically.
  • For video and log storage, it’s cleaner to use dedicated disks rather than expanding the system root volume.