Skip to main content
Common Syteca Application Server issues, along with their causes and resolutions, are grouped by symptom below. Each section starts with the exact error message a user or administrator will see, followed by the underlying cause and the resolution procedure. Cross-references point to the deeper configuration pages when a resolution requires editing a config file or running a database command.
NOT AVAILABLE IN SAAS. These issues apply to on-premises Application Server deployments. In SaaS deployments the Application Server is managed by the Syteca vendor, and the underlying infrastructure issues covered here are handled without customer intervention.

Log files and log collection

Before diving into specific issues, know where the logs live. Most Application Server issues can be diagnosed by examining the log files, and the first-line diagnostic step is often “check the logs.”
The log file paths contain the legacy Ekran System folder name, preserved verbatim from the source documentation. Do not attempt to rename these folders; the Application Server binary paths are hard-coded.
Alternative to reading logs on the server: the EkranServer_LogsCollector tool can bundle all logs into an archive. Download it from the Syteca log collector download page and run it on the Application Server machine as an administrator.

SMBv1 error when installing or updating to 7.23 or higher

The following popup error appears during install or update to Syteca 7.23 (or higher) when using a shared folder for binary data:
The error appears either on the Already Installed page during an update, or on the Binary Data Location page during a fresh install when selecting File System.

Cause

Syteca 7.23 dropped SMBv1 support. If the shared folder used for binary data still uses SMBv1 for connections, the installer refuses to proceed. This is a security hardening in Syteca, aligned with Microsoft’s own deprecation of SMBv1.

Resolution

1

Remove the SMBv1 config key

On the Application Server computer, open C:\Program Files\Ekran System\Ekran System\Server\EkranServer.Settings.config in a text editor. Delete the line:
2

Disable SMBv1 and enable SMBv2 on Windows Server

Follow the Microsoft procedure for detecting, disabling, and enabling SMB versions: Detect, enable, and disable SMBv1, SMBv2, and SMBv3 in Windows.
3

Restart the Application Server computer

A restart is required for the SMB protocol changes to take effect.
4

Restart the installer

Rerun the Syteca Application Server installer or updater. The Binary Data Location or Already Installed page should now accept the shared folder.

EkranServer service will not start with an SMB error

The EkranServer Windows service fails to start when the binary data location is an SMB file share. Error messages include:
or

Cause

The SMB file share is configured to require SMBv1 for compatibility with legacy systems, but current Windows Server defaults disable SMBv1. The Application Server needs SMBv1 enabled explicitly through its config file.

Resolution

Add the SMBv1 override to the Application Server config:
  1. Open C:\Program Files\Ekran System\Ekran System\Server\EkranServer.Settings.config on the Application Server computer.
  2. Add the following key inside the config file:
  3. Restart the EkranServer service.
Using SMBv1 is a security compromise. Prefer the resolution above (upgrade the SMB share to SMBv2) unless a legacy SMBv1-only appliance blocks that path. The SMB.UseV1=1 workaround is intended for transitional periods, not permanent operation.

Archiving fails due to SMB timeout

Archiving Client sessions to an SMB file storage location fails with this error:

Cause

The default SMB response timeout of 5000 ms is not enough for the network path between the Application Server and the file share. Common cause: SMB share on a network with meaningful latency, or a file share that pauses briefly under load.

Resolution

Increase the SMB response timeout by adding a config key. Higher values are more forgiving of network hiccups.
  1. Open C:\Program Files\Ekran System\Ekran System\Server\EkranServer.Settings.config.
  2. Add the following key, with a value larger than the default 5000 (values are in milliseconds; try 10000 or 15000 as a first step):
  3. Restart the EkranServer service.
  4. Retry archiving. If the timeout still triggers, raise the value further; if it triggers even at 30000+, the underlying network or SMB share problem needs investigation.

Insufficient permissions when restarting the EkranServer service

When restarting the Syteca Application Server service, this message appears:

Cause

The service management command is being invoked from a non-administrator context. The EkranServer service requires administrator permissions to restart.

Resolution

Restart the EkranServer service under an administrator account. The simplest way: right-click the shortcut for whichever tool is being used (Services MMC, Task Manager, PowerShell) and select Run as administrator.

Database connection lost

The Syteca Server tray application shows this message:

Resolution

1

Verify network connectivity to the database

Confirm the database computer is online and reachable by running the following in a Windows command prompt on the Application Server:
A successful ping does not guarantee database connectivity, but a failing ping indicates a network or DNS problem to resolve first.
2

Check database service status

On the database computer, confirm the database service is running (SQL Server, PostgreSQL, or Azure SQL Database as appropriate).
3

Check the port between Application Server and database

Verify the firewall on both machines allows the database connection port. Defaults: 1433 for MS SQL, 5432 for PostgreSQL.
4

Send logs to Syteca support

If the issue persists, send the ServerLogs subfolder from C:\Program Files\Ekran System\Ekran System to Syteca support for diagnosis.

Cannot start the Application Server from the Syteca Server tray application

The Syteca Server tray application will not start the Application Server.

Cause

The tray application is running in a non-administrator context. Starting the Application Server requires administrator permissions.

Resolution

Close the tray application and relaunch it under an administrator account. Right-click the Syteca Server shortcut and select Run as administrator, then use the tray application to start the Application Server.

Reinstalling a new version of the Application Server while preserving the old database

When reinstalling a new Application Server version, the intent is to preserve the existing database and pick up where the previous version left off, not to start fresh.

Resolution

During reinstall, the installer prompts whether to use the existing database. Select the option to use the old database when prompted. The existing database remains in place with all historical data intact.

Anti-virus software blocks uninstallation or update of the Application Server

Anti-virus scanning interferes with the Application Server uninstaller or update, causing the operation to fail or hang.

Cause

The uninstaller performs operations (file removal, service deregistration) that some anti-virus engines flag as suspicious. False positives are common with Application Server uninstall operations.

Resolution

Disable the anti-virus software temporarily during uninstall or update. Re-enable it once the operation completes and the new version is installed.
If disabling the anti-virus is not permitted by organization policy, request a temporary exception for the Application Server install folder from the security team. Provide the vendor and process names so the exception is scoped narrowly.

”Server is unavailable” when opening the Management Tool

Opening the Management Tool in a browser returns:

Resolution checklist

Run through the checks in order until the underlying cause is identified.
1

Check the Application Server log

Open the log file at C:\Program Files\Ekran System\Ekran System\ServerLogs\server.txt. Recent error entries usually point directly at the cause.
2

Confirm the EkranServer service is running

In services.msc, verify the EkranServer service is in the Running state. If not, start it (under an administrator account).
3

Verify database connectivity

Confirm the Application Server has a stable connection to the database server. Ping the database computer, check firewall rules for the database port, and confirm the database service itself is running.
4

Verify database has free space

On the database server, confirm the database has sufficient free space to accept new writes. A full database blocks Application Server operation.
5

Check the port from Application Server to database

Verify the port for connecting the Application Server to the database is open on both endpoints. Defaults: 1433 for MS SQL, 5432 for PostgreSQL.
6

Check binary storage folder permissions

If a binary folder stores screen captures, confirm the EkranServer service is running under a user or service account with read and write permissions to that folder. Missing folder permissions is a common cause of Management Tool unavailability that leaves few clues in the top-level error.

MS SQL error: disallowed results from triggers

When installing, updating, or starting the Application Server against an MS SQL database, this error appears:

Cause

The MS SQL Server configuration option disallow results from triggers is set to 1 (disallow). Syteca’s schema requires the ability to return result sets from triggers, so this MS SQL option must be 0 (allow) for the Application Server to start.

Resolution

Run the following commands in SQL Server Management Studio, connected to the MS SQL Server instance Syteca uses:
Once the configuration is applied, retry the Application Server install, update, or start.
This MS SQL setting change is instance-wide; it affects every database in the MS SQL Server instance, not only the Syteca database. If the same MS SQL instance hosts other applications, verify with those applications’ vendors that allowing results from triggers is acceptable before applying the change.

Install the Application Server

Application Server install procedure, including database and binary storage configuration.

Update the Application Server

Update procedure. Consult before running an update to a new version.

Application Server advanced settings

Complete list of settings available in EkranServer.Settings.config.

Application Server resource monitoring

Monitor Application Server CPU, memory, database queue, and storage in real time.