STIGhubSTIGhub
STIGsSearchCompare

STIGhub

A free tool to search and browse the entire DISA STIG library. Saves up to 75% in security compliance research time.

Navigation

  • Browse STIGs
  • Search
  • Compare Versions

Resources

  • About
  • Release Notes
  • VPAT
  • DISA STIG Library
STIGs updated 3 hours ago
Powered by Pylon
© 2026 Beacon Cloud Solutions, Inc. All rights reserved.
← Back to VMware vRealize Operations Manager 6.x tc Server Security Technical Implementation Guide

V-241598

CAT II (Medium)

tc Server ALL must initiate logging during service start-up.

Rule ID

SV-241598r879562_rule

STIG

VMware vRealize Operations Manager 6.x tc Server Security Technical Implementation Guide

Version

V1R2

CCIs

CCI-001464

Discussion

An attacker can compromise a web server during the startup process. If logging is not initiated until all the web server processes are started, key information may be missed and not available during a forensic investigation. To assure all logable events are captured, the web server must begin logging once the first web server process is initiated. During start, tc Server reports system messages onto STDOUT and STDERR. These messages will be logged if the initialization script is configured correctly. For historical reasons, the standard log file for this is called “catalina.out”.

Check Content

At the command prompt, execute the following command:

more /opt/pivotal/pivotal-tc-server-standard/tomcat-7.0.57.B.RELEASE/bin/catalina.sh

Type /touch "$CATALINA_OUT"

Verify that the start command contains the command ">> "$CATALINA_OUT" 2>&1 "&""

If the command is not correct or is missing, this is a finding.

Note: Use the Enter key to scroll down after typing /touch "$CATALINA_OUT"

Fix Text

Navigate to and open /opt/pivotal/pivotal-tc-server-standard/tomcat-7.0.57.B.RELEASE/bin/catalina.sh.

Navigate to and locate the start block : "elif [ "$1" = "start" ] ; then".

Navigate to and locate both “eval” statements: 

"org.apache.catalina.startup.Bootstrap "$@" start \" 

Add this statement immediately below both of the “eval” statements: 

'>> "$CATALINA_OUT" 2>&1 "&"'