Show / Hide Table of Contents
Edit on GitHub

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"

See also

  • How To Use Journalctl to View and Manipulate Systemd Logs (DigitalOcean post)
  • Troubleshooting issues on your GrantID instance (Linux)
Back to top Copyright © 2015-2020 Lacuna Software