Troubleshooting
This section provides solutions for common issues encountered during EPMware installation and operation.
Overview
This troubleshooting guide covers common installation issues, error messages, and their resolutions. Use this guide to diagnose and resolve problems with EPMware components.
Installation Issues
Database Installation
ORA-01017: Invalid username/password
Error:
Cause: Incorrect credentials or case-sensitive password
Solution:
-- Verify username exists
SELECT username FROM dba_users WHERE username = 'EW';
-- Reset password if needed
ALTER USER ew IDENTIFIED BY new_password;
-- Check password case sensitivity
SHOW PARAMETER sec_case_sensitive_logon;
ORA-01652: Unable to extend temp segment
Error:
Cause: Insufficient temporary tablespace
Solution:
-- Add space to temp tablespace
ALTER TABLESPACE temp ADD DATAFILE '/u01/app/oracle/oradata/temp02.dbf' SIZE 1G;
-- Or resize existing file
ALTER DATABASE DATAFILE '/u01/app/oracle/oradata/temp01.dbf' RESIZE 2G;
ORA-00054: Resource busy
Error:
Cause: Object locked by another session
Solution:
-- Find locking session
SELECT s.sid, s.serial#, s.username, l.type
FROM v$session s, v$lock l
WHERE s.sid = l.sid
AND l.id1 = (SELECT object_id FROM user_objects WHERE object_name = 'TABLE_NAME');
-- Kill session if necessary
ALTER SYSTEM KILL SESSION 'sid,serial#' IMMEDIATE;
Application Server Issues
Tomcat Won't Start
Symptoms: - Service fails to start - No catalina.out generated - Port already in use error
Solutions:
-
Check port availability:
-
Verify Java installation:
-
Check permissions:
-
Review logs:
Out of Memory Errors
Error:
Solution:
Edit setenv.sh or setenv.bat:
# Increase heap size
export CATALINA_OPTS="$CATALINA_OPTS -Xms8192m -Xmx12288m"
# Add heap dump on OOM
export CATALINA_OPTS="$CATALINA_OPTS -XX:+HeapDumpOnOutOfMemoryError"
export CATALINA_OPTS="$CATALINA_OPTS -XX:HeapDumpPath=/opt/tomcat/logs"
Deployment Issues
WAR File Not Deploying
Symptoms: - WAR file present but not extracted - Application not accessible - Deployment errors in logs
Solutions:
-
Check autodeploy setting:
-
Verify WAR file integrity:
-
Check disk space:
-
Manual deployment:
Database Connection Failures
Error:
Solutions:
-
Verify database is running:
-
Test connection string:
-
Check JDBC configuration:
-
Verify firewall rules:
Agent Issues
Agent Not Starting
Symptoms: - Service won't start - No PID file created - Agent not visible in UI
Solutions:
-
Check Java:
-
Verify configuration:
-
Check permissions:
-
Review logs:
Agent Registration Failed
Error:
Solutions:
- Generate new key:
- Login to EPMware
- Navigate to Configuration → Agents
-
Generate new registration key
-
Re-register agent:
-
Check connectivity:
Target Application Issues
Planning Connection Failed
Error:
Solution:
Grant LCM Administrator role: 1. Access Shared Services Console 2. Navigate to User Management 3. Assign LCM Administrator role to EPMware user 4. Restart Planning services
HFM reg.properties Not Found
Error:
Solution:
Copy reg.properties:
copy D:\Oracle\Middleware\user_projects\config\foundation\11.1.2.0\reg.properties ^
D:\Oracle\Middleware\user_projects\epmsystem1\config\foundation\11.1.2.0\
Cloud Connection Timeout
Error:
Solutions:
-
Check internet connectivity:
-
Verify proxy settings:
-
Test EPMAutomate:
Performance Issues
Slow Response Times
Symptoms: - Page load times > 5 seconds - Timeout errors - High CPU/memory usage
Solutions:
-
Check system resources:
-
Analyze database performance:
-
Review application logs:
-
Optimize connection pools:
Security Issues
SSL Certificate Errors
Error:
Solutions:
-
Import certificate:
-
Verify certificate:
-
Disable verification (dev only):
Authentication Failures
Error:
Solutions:
-
Test LDAP connectivity:
-
Verify LDAP configuration:
Common Error Messages
Error Reference Table
| Error Code | Message | Solution |
|---|---|---|
| EW-001 | Database connection failed | Check JDBC settings |
| EW-002 | Invalid credentials | Verify username/password |
| EW-003 | Agent not responding | Check agent status |
| EW-004 | Deployment failed | Review deployment logs |
| EW-005 | Import failed | Check source data format |
| EW-006 | Workflow error | Verify workflow configuration |
| EW-007 | Email send failed | Check SMTP settings |
| EW-008 | License expired | Renew license |
| EW-009 | Out of memory | Increase heap size |
| EW-010 | Connection timeout | Check network/firewall |
Logging and Diagnostics
Enable Debug Logging
-
Application debug:
-
Database debug:
-
Agent debug:
Log File Locations
| Component | Log Location |
|---|---|
| Database | $ORACLE_BASE/diag/rdbms/... |
| Tomcat | /opt/tomcat/logs/catalina.out |
| EPMware | /opt/tomcat/logs/epmware.log |
| Agent | /opt/epmware/agent/logs/agent.log |
| Deployment | /opt/epmware/logs/deployment.log |
Recovery Procedures
Database Recovery
-- Restore from backup
impdp ew/password directory=DATA_PUMP dumpfile=backup.dmp
-- Rebuild invalid objects
EXEC DBMS_UTILITY.compile_schema('EW');
-- Verify recovery
SELECT COUNT(*) FROM user_objects WHERE status = 'INVALID';
Application Recovery
# Restore application
systemctl stop tomcat
rm -rf /opt/tomcat/webapps/epmware
cp backup/epmware.war /opt/tomcat/webapps/
systemctl start tomcat
Getting Help
Gather Diagnostic Information
Before contacting support, gather:
-
System information:
-
Error logs:
-
Configuration files:
Contact Support
EPMware Support: - Email: support@epmware.com - Phone: 408-614-0442 - Portal: support.epmware.com
Information to provide: - EPMware version - Error messages - Steps to reproduce - Log files - Configuration files
© 2025 EPMware, Inc. All rights reserved.