...
In dynamic part user determines the memory consumption of nuxeo and can provide new options or override old ones.
Dynamic part for nux7:
Code Block |
---|
|
JAVA_OPTS=$JAVA_OPTS -Xms1024m -Xmx2048m
patricia.db.jdbcUrl=jdbc:sqlserver://10.120.5.51:1433;databaseName=patricia_demo_2;integratedSecurity=false
patricia.db.username=sa
patricia.db.password=Skype#567 |
If you want to use other credentials for postgres, for example, you should just add this option to your nuxeo.conf, so it will look that way:
Code Block |
---|
|
JAVA_OPTS=$JAVA_OPTS -Xms1024m -Xmx2048m
patricia.db.jdbcUrl=jdbc:sqlserver://10.120.5.51:1433;databaseName=patricia_demo_2;integratedSecurity=false
patricia.db.username=sa
patricia.db.password=Skype#567
nuxeo.db.name=nuxeodm
nuxeo.db.user=nuxeodm |
...