How to Check Releem Agent Logs?
This guide explains how to check Releem Agent logs for different environments and operating systems.
- Debian
- CentOS
- AWS RDS
- Docker
To check Releem Agent logs on Debian-based systems, use the following command:
journalctl -u releem-agent
This will show you all log entries related to Releem Agent in the system log.
To check Releem Agent logs on CentOS-based systems, use the following command:
journalctl -u releem-agent
This will display all log entries related to Releem Agent in the system messages log.
For AWS RDS installations, all Releem Agent logs are stored in CloudWatch under the releem-agent
log group.
To view the logs:
- Open the AWS Console
- Navigate to CloudWatch
- Go to Log groups
- Find and select the
releem-agent
log group
To check Releem Agent logs when running in Docker, use the following command:
docker logs [container_name]
Note: By default, the container name is releem-agent
. If you used a different name during container creation, replace releem-agent
with your container name.