Difference between revisions of "Aquila Server Settings"

From EHS Help
Jump to: navigation, search
m
m (Settings Section)
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
File is stored in the same folder as the AquilaServer.exe program and is called '''AquilaServer.ini'''.  The exception to this is when using AquilaServerLib.DLL as the offline server.  In this case, these settings will need duplicating in the [[AquilaCRS Settings]] file.
 
File is stored in the same folder as the AquilaServer.exe program and is called '''AquilaServer.ini'''.  The exception to this is when using AquilaServerLib.DLL as the offline server.  In this case, these settings will need duplicating in the [[AquilaCRS Settings]] file.
  
==Settings==
+
==Settings Section==
  
;SessionTimeout
 
:Number of seconds before client sessions timeout. Can be any number, as presently the client will automatically log back in when needed after the initial successful login.
 
 
;Port
 
;Port
 
:Any available TCP port on the server.  Defaults to '''8099'''
 
:Any available TCP port on the server.  Defaults to '''8099'''
 
;ConnectionType
 
;ConnectionType
:See [[Database connection string]] page.
+
:See [[Database connection string]]
 
;ConnectionString
 
;ConnectionString
:See [[Database connection string]] page.
+
:See [[Database connection string]]
  
==Example==
+
==Licenses Section==
 +
 
 +
Your server licence is stored in this file and contains a serial number that enables various server-side features.
 +
 
 +
==Config Section==
 +
 
 +
This section is designed to contain configuration items related to the database or server, but required by clients. For example, the MaintenanceWeek setting records when the last time the database maintenance was run.  Client software can initiate the database maintenance based on this value.
 +
 
 +
==Example Settings File==
  
 
<code>
 
<code>
 
'''[Settings]'''
 
'''[Settings]'''
 
SessionTimeout=2000
 
  
 
Port=8099
 
Port=8099
Line 28: Line 32:
 
ConnectionType=MSSQL
 
ConnectionType=MSSQL
  
ConnectionString=AnyDAC?AuxDriver=MSSQL;Server=WIN7VM;Database=aquila_v36.1;UserID=ibidlogin;Password=ibidloginpassword;
+
ConnectionString=AnyDAC?AuxDriver=MSSQL;Server=DB_SERVER;Database=IBID_DATABASE;UserID=ibidlogin;Password=ibidloginpassword;
 +
 
 +
'''[Licenses]'''
 +
 
 +
ServerLicense=F2C5-4544-76B0-6231-D201
  
 
</code>
 
</code>

Latest revision as of 09:57, 20 August 2020

AquilaCRS icon.png

This topic is for AquilaCRS


Overview

File is stored in the same folder as the AquilaServer.exe program and is called AquilaServer.ini. The exception to this is when using AquilaServerLib.DLL as the offline server. In this case, these settings will need duplicating in the AquilaCRS Settings file.

Settings Section

Port
Any available TCP port on the server. Defaults to 8099
ConnectionType
See Database connection string
ConnectionString
See Database connection string

Licenses Section

Your server licence is stored in this file and contains a serial number that enables various server-side features.

Config Section

This section is designed to contain configuration items related to the database or server, but required by clients. For example, the MaintenanceWeek setting records when the last time the database maintenance was run. Client software can initiate the database maintenance based on this value.

Example Settings File

[Settings]

Port=8099

ConnectionType=MSSQL

ConnectionString=AnyDAC?AuxDriver=MSSQL;Server=DB_SERVER;Database=IBID_DATABASE;UserID=ibidlogin;Password=ibidloginpassword;

[Licenses]

ServerLicense=F2C5-4544-76B0-6231-D201