Storage
Energy SOAR stores file attachments (case attachments, observable files, reports) on
the local filesystem. Storage is configured in
/etc/energysoar/application.conf.d/storage.conf.
Default configuration
storage {
provider: localfs
localfs.location: /opt/energysoar/files
}
The localfs.location directory is created by the installer. Ensure sufficient disk
space is available at this path. For production deployments, mount a dedicated volume
at /opt/energysoar/files before installation.
Changing the storage path
To use a different directory:
Stop the service:
systemctl stop energysoar
Edit
/etc/energysoar/application.conf.d/storage.confand updatelocalfs.location.Move existing files to the new location:
mv /opt/energysoar/files /new/path/files
Start the service:
systemctl start energysoar
Warning
Do not change the storage path on a running system. Existing attachments will become inaccessible if files are not moved before restarting.