System Plain Logs
The plain logs are useful for troubleshooting and debugging purposes. This page is about the plain log files stored on disk. For information about the logs accessible via the Tenantos web interface, please refer to the System Logs page.
Log Locations
Main Panel Logs
The main Tenantos panel logs are located in /var/www/html/storage/logs/
on the main Tenantos server.
Agent Logs
The main Tenantos installation also includes a local agent. Therefore, the directory /var/www/agent/storage/logs/
exists on the main server as well.
Agent logs are located in /var/www/agent/storage/logs/
on each remote agent.
Real-time Log Monitoring
To monitor logs in real-time, you can use the tail
command:
Panel:
tail -f /var/www/html/storage/logs/laravel-$(date +"%Y-%m-%d").log
Agent:
tail -f /var/www/agent/storage/logs/lumen-$(date +"%Y-%m-%d").log
A common troubleshooting method is to tail the log, reproduce the issue, and check the output.