Sorry for the late reply, here was the RCA sent to us -
The RFL process was not working with the correct port (18218).
When we checked netstat over port 8218 we did not see the RFL:
============
[Expert@harry]# netstat -nap | grep 8218
tcp 0 0 127.0.0.1:8218 127.0.0.1:40392 ESTABLISHED 17289/java
tcp 0 0 127.0.0.1:8218 127.0.0.1:37118 ESTABLISHED 17289/java
tcp 0 0 127.0.0.1:37118 127.0.0.1:8218 ESTABLISHED 17375/log_indexer
tcp 0 0 127.0.0.1:40392 127.0.0.1:8218 ESTABLISHED 17375/log_indexer
============
When the issue was resolved we were able to see below output:
============
[Expert@harry]# netstat -nap | grep 8218
tcp 0 0 127.0.0.1:8218 0.0.0.0😘 LISTEN 17289/java
tcp 0 0 127.0.0.1:8218 127.0.0.1:40392 ESTABLISHED 17289/java
tcp 0 0 127.0.0.1:8218 127.0.0.1:37118 ESTABLISHED 17289/java
tcp 0 0 127.0.0.1:37118 127.0.0.1:8218 ESTABLISHED 17375/log_indexer
tcp 0 0 127.0.0.1:40392 127.0.0.1:8218 ESTABLISHED 17375/log_indexer
============
When we checked RFL.log file we could see below information:
============
2020-02-05 15:07:08,896 ERROR [main] org.apache.activemq.broker.BrokerService.start:571 - Failed to start Apache ActiveMQ([RaphaelBroker, null], org.apache.activemq.protobuf.InvalidProtocolBufferException: Protocol message contained an invalid tag (zero).)
2020-02-05 15:07:08,902 INFO [main] org.apache.activemq.broker.BrokerService.stop:714 - Apache ActiveMQ 5.9.0 (RaphaelBroker, null) is shutting down
2020-02-05 15:07:09,257 ERROR [main] 2020-02-05 15:07:09,257 ERROR [main] com.checkpoint.core.LogCore.runJmsServer:48 - JMS server execution failed!
org.apache.activemq.protobuf.InvalidProtocolBufferException: Protocol message contained an invalid tag (zero).
at org.apache.activemq.protobuf.InvalidProtocolBufferException.invalidTag(InvalidProtocolBufferException.java:48)
at org.apache.activemq.protobuf.CodedInputStream.readTag(CodedInputStream.java:75)
============
We could see that Apache ActiveMQ was not able to start.
The cause of this issue was corruption at /opt/CPrt-R80.20/tmp/activemq-data/localhost/KahaDB/ directory.
As soon as we removed the files from the above directory and restarted the services, the smart log started working.