GrantID - Checking the system logs (Linux)
When installed on Linux, GrantID sends its logs to the systemd journal, a centralized management solution for logging
all kernel and userland processes. To view the logs, use the journalctl
utility.
To check the Identity Service logs:
journalctl -u grantid-identity-service
To check the Auth Server logs:
journalctl -u grantid-auth-server
To check the Console logs:
journalctl -u grantid-console
Useful parameters
The journalctl
command has many parameters that can help you to find the information you seek on the logs.
Use the -f
flag to view logs in "follow" mode (like tail -f
):
journalctl -u grantid-identity-service -f
Use the --since
parameter to view only recent logs:
journalctl -u grantid-identity-service --since "1 min ago"