Troubleshooting SmartConsole Connection Issues
If you're experiencing difficulties accessing the SmartConsole, follow these guidelines to diagnose and resolve the issue. For further assistance, refer to Checkpoint Support Article sk145200.
Symptoms
- Connection Failure: Users are unable to connect to the Security Management Server using SmartConsole after a reboot.
- Initialization Message: Running the command
cpm_status.sh
via SSH results in the message: "Check Point Security Management Server is during initialization."

Possible Causes
- CPM Process Failure: The Check Point Management Process (CPM) may not be starting correctly due to missing log files or incorrect permissions.
- Resource Utilization: High CPU or memory usage can affect the performance and availability of the Security Management Server.
- Configuration Issues: Changes in system configurations or updates may lead to unexpected behavior in the management server.
Solution Steps
1. Check CPU Utilization and CPM Status
Monitor the CPU utilization and verify the status of the CPM process. High CPU usage may indicate that the server is under heavy load. Use the following command to check the CPM status:
$FWDIR/scripts/cpm_status.sh
CPU Utilization Status

2. Verify Log Files
Ensure that the .elg
log file required by the PostgreSQL process exists and has the correct permissions. Run the following command:
ls -hlart $FWDIR/log/postgres*
3. Create the Log File if Necessary
If the log file does not exist, create it with the following command:
touch $FWDIR/log/postgres.elg
4. Set Proper Permissions
After creating the log file, ensure it has the appropriate permissions. You can check the permissions with:
ls -hlart $FWDIR/log/postgres*
You should see an output similar to:
-rw------- 1 cp_postgres root 6.114 Jan 01 13:14 /opt/CPsuite-R80.20/fw1/log/postgres.elg
If the file does not have the correct permissions, change them using:
chown cp_postgres:root $FWDIR/log/postgres.elg
5. Restart the CPM Process
Restart the Check Point services to apply any changes:
cpstop; cpstart
6. Monitor System Performance
After restarting the services, wait for approximately 10-15 minutes to allow the CPU utilization to stabilize. During this time, monitor the system's performance and ensure that the CPM process is running correctly.
7. Further Actions if Issues Persist
If the problem persists:
- Check system logs for any error messages that may indicate underlying issues.
- Ensure that all configurations are correct, especially after updates or changes.
- Consider contacting Check Point support for in-depth troubleshooting.
Conclusion
Following these steps should help you resolve connectivity issues with SmartConsole. Regular monitoring of system performance and log files can prevent these issues from arising in the future. For more detailed troubleshooting, consult the Check Point documentation or reach out to their support team.