Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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
nuxeo.path.segment.maxsize=512


In installations with larger concurrent user counts, the following two parameters may also help to improve system performance and reliability

Code Block
nuxeo.vcs.blocking-timeout-millis=1000
nuxeo.vcs.max-pool-size=200

 

Be sure to change default -Xms and -Xmx parameters in nuxeo.conf depending on available amount of RAM

Also be sure that Nuxeo installation id is set in the pat_configuration table of Patricia DB.

...

Code Block
docker run -p 8080:8080 -p 9080:9080 \
    -v /local_nuxeo_data_folder:/var/lib/nuxeo/data \
    -v /local_config_folder:/etc/nuxeo \
	-v /windows_fonts_folder:/home/nuxeo/.windows_fonts
    -v /etc/localtime:/etc/localtime:ro \
    -v /etc/timezone:/etc/timezone:ro \
    --net=host \
    --name nuxeo practiceinsight/dms_nuxeo_suite:1.9.5

 

If you want to use your own fonts in nuxeo, then you should add the next option to the run command:

...