Knowledge Tree
This section contains information about implementing the exportation tool for Knowledge Tree.
You can download it from here: dms2okm-knowledge-tree-1.0.zip
Please read the license terms before using this application.
OpenKM Migration tool is licensed under the terms of the EULA - OpenKM End User License Agreement and published by OpenKM Knowledge Management System S.L.
This program is distributed WITHOUT ANY WARRANTY, not even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the EULA - OpenKM End User License Agreement for more details.
Export data
The program used to export data is a jar file that can be executed using the terminal.
The command to launch is the following:
java -jar dms2okm-knowledge-tree.jar db_url db_user db_password system_path repo_path root_path
- db_url: JDBC connection URL.
- db_user: JDBC connection user.
- db_password: JDBC connection password.
- system_path: where the exported content will be stored.
- repo_path: path to the repository. Used to recover content documents.
- root_path: path to the parent folder.
You must provide a valid MySQL connection URL because only MySQL protocol is supported right now.
Only the Knowledge Tree repository is supported yet. To see a complete list of supported DMS, please check Supported DMS and versions section.
Example of execution:
java -jar dms2okm-knowledge-tree.jar jdbc:mysql://localhost:3306/database user password /home/user/export /home/repoPath ""
Note that this step could take longer to execute (up to hours) because it makes a full copy of the whole repository (documents included). Also, it needs enough space in your disk to store the copy of the repository.