Nuclos nuclos.xml: configuration file, connection-url, JDBC, PostgreSQL, Oracle, MSSQL, keystore, heap-size, automated installation. |
Language: Deutsch · English
Structure of the central configuration file – server, client and database settings incl. connection-url examples.
Auf dieser Seite |
The file nuclos.xml is generated during installation and stores all settings – making updates easier. The generated (or a manually created) file can also be used for an automated installation.
<server> Server-Einstellungen
<home> Zielverzeichnis der Installation
<name> Name der Nuclos-Instanz (für den Dienst)
<http> <enabled> [true|false], <port>
<https> <enabled>, <port>,
<keystore> (<file>, <password>)
<shutdown-port> Port für das Shutdown-Kommando
<heap-size> max. Arbeitsspeicher des Serverprozesses
<java-home> zu verwendende Java-Installation
<production> <enabled> [true|false]
<development> <enabled>, <debugport>, <jmxport>
<launch-on-startup> beim Systemstart ausführen [true|false]
<client> <singleinstance> [true|false]
<database> Datenbank-Einstellungen
<adapter> [postgresql|oracle|mssql|sybase]
<driver> JDBC-Treiber-Klasse
<driverjar> *.jar mit JDBC-Treiber
<connection-url> JDBC-URL (siehe Beispiele)
<username> <password> <schema>
<tablespace> <tablespace-index> (optional)
<setup>setup</setup> automatisches DB-Setup (optional)
<postgres> <superuser> <superpw> (bei Auto-Setup)
The <instance-name> must match the database instance name assigned during DB installation (for MS SQL Server the database name). The examples assume the Nuclos and DB server are identical (localhost):
| Database | connection-url (example) |
|---|---|
| PostgreSQL | jdbc:postgresql://localhost:5432/<instance-name> |
| Oracle | jdbc:oracle:thin:@localhost:1521:<instance-name> |
| MS SQL Server | jdbc:sqlserver://localhost:1433;DatabaseName=<instance-name> |
| Sybase | jdbc:sybase:Tds:localhost:2638/<instance-name> |
With |