How to modify the low disk space critical event email warning threshold from 5 GB to 10 GB free in RSA Authentication Manager 8.2.1 and higher
Originally Published: 2018-03-27
Article Number
Applies To
RSA Product/Service Type: Authentication Manager
RSA Version/Condition: 8.2, 8.2.1, 8.3
Issue
This article explains how this value can be changed, so that the low disk space critical event email warning is triggered when 10 GB of free space is left instead of the default 5 GB free
Tasks
- Access the PostgreSQL database as the database admin.
- Modify the disk_space_check.free_space_threshold value in the ims_config_value table
Resolution
Before continuing, access the primary's Operations Console and back up the database (Maintenance > Backup and Restore > Backup Now).
- Access the primary Authentication Manager server via local console or SSH session.
- Logon to the server with the rsaadmin operating system account.
login as: rsaadmin Using keyboard-interactive authentication. Password: <enter operating system password> Last login: Tue Mar 27 10:53:48 2018 from jumphost.vcloud.local RSA Authentication Manager Installation Directory: /opt/rsa/am rsaadmin@am82p:~> cd /opt/rsa/am/utils rsaadmin@am82p:/opt/rsa/am/utils> ./rsautil manage-secrets -a get com.rsa.db.dba.password
- When prompted, enter the Operations Console admin user name and password. This returns the database password. On this primary the com.rsa.db.dba.password value is vDBh1Rb005S7nX9t304v8jy3eHFFGI but will be different in each deployment.
Please enter OC Administrator username: <enter Operations Console administrator user name> Please enter OC Administrator password: <enter Operations Console administrator password> com.rsa.db.dba.password: vDBh1Rb005S7nX9t304v8jy3eHFFGI
- Connect to the PostgreSQL database with the command /opt/rsa/am/pgsql/bin/psql -h localhost -p 7050 -d db -U rsa_dba.
- Enter the password for the rsa_dba user captured in step 3. In the SSH console highlight the password value and and right click to paste. The pasted value will not display. Be sure to only paste once.
rsaadmin@am82p:/opt/rsa/am/utils> /opt/rsa/am/pgsql/bin/psql -h localhost -p 7050 -d db -U rsa_dba Password for user rsa_dba: <paste in the com.rsa.db.dba.password captured above>
- If successful, you will get the db# prompt:
psql.bin (9.4.1) SSL connection (protocol: TLSv1.2, cipher: ECDHE-RSA-AES256-SHA, bits: 256, compression: off) Type "help" for help. db=#
- To see the disk space critical notification, check the interval and free space thresholds run the following SELECT statement from the db# SQL prompt. There should be two rows of output.
db=# SELECT name, value FROM ims_config_value WHERE name LIKE '%ims.critical_notification.disk%';
name | value
---------------------------------------------------------------------------
ims.critical_notification.disk_space_check.free_space_threshold | 5000
ims.critical_notification.disk_space_check.interval | 15
(2 rows)
- The disk is checked every 15 minutes. The default threshold is 5,000 MB or about 5 GB. To be sure you are going to change the correct setting, run a SELECT statement to get just the threshold, not the interval setting:
db=# SELECT name, value FROM ims_config_value WHERE name LIKE '%ims.critical_notification.disk_space_check.free%';
name | value
---------------------------------------------------------------------------
ims.critical_notification.disk_space_check.free_space_threshold | 5000
(1 row)
- Run the following UPDATE command to change the threshold:
db=# UPDATE ims_config_value SET VALUE = '10000' WHERE NAME LIKE '%ims.critical_notification.disk_space_check.free%'; UPDATE 1
- Run the SELECT statement again to confirm the value change:
db=# SELECT name, value FROM ims_config_value WHERE name LIKE '%ims.critical_notification.disk_space_check.free%';
name | value
---------------------------------------------------------------------------
ims.critical_notification.disk_space_check.free_space_threshold | 10000
(1 row)Notes
Since the disk is checked every 15 minutes by default, you will not see the email immediately when the 10 GB threshold is reached, but within 15 minutes.
Related Articles
Critical System Event Types 70Number of Views Configure Email Notifications 158Number of Views Hibernate WARN messages flooding logs in RSA Identity Governance & Lifecycle 22Number of Views RSA SecurID Access Cloud Authentication Service initial administrator account email not received 584Number of Views In RSA Identity Governance and Lifecycle, the Vaild Reply Answers are not displayed in the Approval Request email. 125Number of Views
Trending Articles
Downloading RSA Authentication Manager license files or RSA Software token seed records Unable to login to RSA Authentication Manager Security Console as super admin RSA Authentication Manager 8.9 Release Notes (January 2026) How to manipulate imported RSA SecurID Software Token(s) on an iPhone or iPad device Connection fails to Cloud Authentication Service when connecting through a proxy server from RSA Authentication Manager to…
Don't see what you're looking for?