...
Key | Sample value | Description |
---|---|---|
nuxeo | Nuxeo database name | |
nuxeo.db.user | nuxeo | Nuxeo database username |
nuxeo.db.host | 127.0.0.1 | Nuxeo database hostname or ip |
localhost (if postgres container is linked) | ||
db.yourserver.com | ||
nuxeo.db.port | 5432 | Nuxeo database port |
nuxeo.db.password | nuxeop | Nuxeo database password |
nuxeo.data.dir | /var/lib/nuxeo/data | Location where nuxeo expects to find/write data in the container. |
nuxeo.log.dir | /var/log/nuxeo | Location where nuxeo expects to be able to write logs in the container. |
nuxeo.tmp.dir | /var/tmp/nuxeo | Location where nuxeo expects to be able to write temp files in the container. |
elasticsearch.addressList | 127.0.0.1:9300 | Elasticsearch server hostname or ip with port |
localhost:9300 (if elasticsearch container is linked) | ||
es.yourserver.com:9300 | ||
elasticsearch.clusterName | elasticsearch | Name of elasticsearch cluster used for the Nuxeo |
elasticsearch.indexName | nuxeo | Name of elasticsearch Nuxeo index |
elasticsearch.indexNumberOfShards | 5 (is default value in elasticsearch) | Number of elasticsearch shards used for the Nuxeo index |
elasticsearch.indexNumberOfReplicas | 0 | Number of elasticsearch replicas used for the Nuxeo index |
patricia.db.jdbcDriver | com.microsoft.sqlserver.jdbc.SQLServerDriver | JDBC driver to be used (must be embedded to the pi-nuxeo-marketplace) |
patricia.db.jdbcUrl | jdbc:sqlserver://192.168.3.99:1433; databaseName=patricia_GHF_demo; integratedSecurity=false (remove line breaks) | JDBC connection URL (the structure depends on driver) |
patricia.db.username | patricia | Patricia database username |
patricia.db.password | password | Patricia database password |
nuxeo.wizard.done | true | Flag that shows that nuxeo is already configured and no need to launch configuration wizard on the first launch |
Here's the table above in an easier to use format:
Code Block |
---|
nuxeo.db.name=nuxeo
nuxeo.db.user=nuxeo
nuxeo.db.host=127.0.0.1
nuxeo.db.port=5432
nuxeo.db.password=nuxeop
nuxeo.data.dir=/var/lib/nuxeo/data
nuxeo.log.dir=/var/log/nuxeo
nuxeo.tmp.dir=/var/tmp/nuxeo
elasticsearch.addressList=127.0.0.1:9300
elasticsearch.clusterName=elasticsearch
elasticsearch.indexName=nuxeo
elasticsearch.indexNumberOfShards=5
elasticsearch.indexNumberOfReplicas=0
patricia.db.jdbcDriver=com.microsoft.sqlserver.jdbc.SQLServerDriver
patricia.db.jdbcUrl=jdbc:sqlserver://192.168.3.99:1433;databaseName=patricia_GHF_demo;integratedSecurity=false
patricia.db.username=patricia
patricia.db.password=password
nuxeo.wizard.done=TRUE |
Also be sure that Nuxeo installation id is set in the pat_configuration table of Patricia DB.
...