STIGhubSTIGhub
STIGsRMF ControlsCompare
STIGhub— A free STIG search and compliance tool·STIGs updated 3 days ago
Powered by Pylon·Privacy·Terms·© 2026 Beacon Cloud Solutions, Inc.
← Back to HPE 3PAR SSMC Web Server Security Technical Implementation Guide

V-255266

CAT II (Medium)

SSMC web server must not impede the ability to write specified log record content to an audit log server.

Rule ID

SV-255266r961395_rule

STIG

HPE 3PAR SSMC Web Server Security Technical Implementation Guide

Version

V2R1

CCIs

CCI-001851

Discussion

Writing events to a centralized management audit system offers many benefits to the enterprise over having dispersed logs. Centralized management of audit records and logs provides for efficiency in maintenance and management of records, enterprise analysis of events, and backup and archiving of event records enterprise-wide. The web server and related components are required to be capable of writing logs to centralized audit log servers.

Check Content

Verify that the SSMC web process writes the web app and audit log files at the right location on the filesystem for log exports to work correctly:

1. Log on to SSMC appliance via SSH as ssmcadmin. Press "X" to escape to general bash shell.

2. Check the following property values in /opt/hpe/ssmc/ssmcbase/resources/log4j2.json file:

a. File name for SSMCRollingFile Appender:

$ grep "\"name\" : \"SSMCRollingFile\"" -A13 /opt/hpe/ssmc/ssmcbase/resources/log4j2.json | grep "fileName"
        "fileName" : "${logpath}/ssmc.log",
If the output does not read ' "fileName" : "${logpath}/ssmc.log", ' , this is a finding.

b. File name for LocalAuditRollingFile Appender:

$ grep "\"name\" : \"LocalAuditRollingFile\"" -A13 /opt/hpe/ssmc/ssmcbase/resources/log4j2.json | grep "fileName"
        "fileName" : "${logpath}/audit.log",
If the output does not read ' "fileName" : "${logpath}/audit.log", ' , this is a finding.

Fix Text

Configure SSMC web process to write the web application and audit log files at the right location on the filesystem for log exports to work correctly:

1. Log on to SSMC appliance via SSH as ssmcadmin. Press "X" to escape to general bash shell.

2. Locate and update the following property values in /opt/hpe/ssmc/ssmcbase/resources/log4j2.json file:

a. File name for SSMCRollingFile Appender:

Locate the line to update with the following command: $ grep -n "\"name\" : \"SSMCRollingFile\"" -A13 /opt/hpe/ssmc/ssmcbase/resources/log4j2.json | grep "fileName"
21-        "fileName" : "${logpath}/ssmc.log",
Update: set the value for "fileName" property to "${logpath}/ssmc.log", if different, using vi editor.

b. File name for LocalAuditRollingFile Appender:

Locate the line to update with the following command: $ grep -n "\"name\" : \"LocalAuditRollingFile\"" -A13 /opt/hpe/ssmc/ssmcbase/resources/log4j2.json | grep "fileName"
51-        "fileName" : "${logpath}/audit.log",
Update: set the value for "fileName" property to "${logpath}/audit.log", if different, using vi editor.