This happens when the roles in OpenKM configuration and the ones the user that's trying to login has in ldap do not match.
For example, if you have default.user.role set to OpenKMAllusers, and user1 is in that group on the ldap, he'll be able to log in, but user2, who is not in the OpenKMAllusers on ldap, will get a path not found exception error.
In your earlier posts you pasted this configuration for your OpenKM:
default.user.role UserRole
default.admin.role OpenKMAdmins
Is that still true or did you change it? One quick way to test is to add UserRole to your ldap groups and put user rf2 in it. If that doesn't work, you can connect to the embeded database and check the config table for the roles:
For example, if you have default.user.role set to OpenKMAllusers, and user1 is in that group on the ldap, he'll be able to log in, but user2, who is not in the OpenKMAllusers on ldap, will get a path not found exception error.
In your earlier posts you pasted this configuration for your OpenKM:
default.user.role UserRole
default.admin.role OpenKMAdmins
Is that still true or did you change it? One quick way to test is to add UserRole to your ldap groups and put user rf2 in it. If that doesn't work, you can connect to the embeded database and check the config table for the roles:
techexpress wrote:OK , I think you need to first connect to the Hypersonic of OpenKM , export Tables and import them in MySQL
After change parameter of OpenKM connection , adapt tables
I searching to understand how backup the Hypersonic server, because I do not have to run the ver 6.2 version with My SQL
source : http://hsqldb.org/doc/guide/ch01.html#N100B7
To run the DatabaseManager go to the opt/openkm-6.2.0-community/tomcat/lib folder
and runCode: Select allFor connection information user name is sa and no passwordjava -cp hsqldb.jar org.hsqldb.util.DatabaseManager
For URL I take the info in /opt/openkm-6.2.0-community/tomcat/conf/server.xmlCode: Select allcatalina.base is path of OpenKM (Ex: opt/openkm-6.2.0-community/tomcat)username="sa" password="" driverClassName="org.hsqldb.jdbcDriver" url="jdbc:hsqldb:${catalina.base}/repository/okmdb"/>
okmdb is the name of database and all these files
so url must be jdbc:hsqldb:file:/opt/openkm-6.2.0-community/tomcat/okmdb
I had to stop catalina.sh stop because fil was lock , I think if we can use connection direct instead by files we should connect to database without stopping OpenKM
Please leave to us your feedback , it will be very apprecied
Some more info for connection URL http://hsqldb.org/doc/2.0/guide/dbproperties-chapt.html

