Skip to main content

Where can I find the server log?

Information about errors and runtime progress of Flexi Server.

Written by Petr Pech

This article applies only to server / on-premises installations of ABRA Flexi.

The server log contains information about errors and the runtime activity of ABRA Flexi Server. It is essential for diagnosing issues.

Where to find the server log?

Windows

  • Computer Management → Event Viewer → Windows Logs → Application


macOS

Open Finder and navigate to the following folder.

  • /var/log/flexibee.log

You can also navigate to the folder using the Terminal application.


Linux

In the file manager

  • /var/log/flexibee.log

💡 Did you know?

You don't need to retrieve the entire log file. Using terminal / command-line commands, you can obtain only a portion of it.

macOS / Linux

In the terminal, you can use:

tail -n 200 /var/log/flexibee.log

(prints the last 200 lines)

head -n 200 /var/log/flexibee.log

(prints the first 200 lines)

Windows (PowerShell)

Get-Content "C:\cesta\k\flexibee.log" -Tail 200

(last 200 lines)

Get-Content "C:\cesta\k\flexibee.log" -Head 200

(first 200 lines)

What to do with the log

  • Locate the relevant error in the log (at the time corresponding to the issue).

  • If you are unsure how to resolve the issue, send the log output to podporaflexi@abra.eu.

The server log alone may not always be sufficient, and the PostgreSQL log may also be required. Refer to our article that describes where to find it.

Did this answer your question?