Wiki-Quellcode von Projekt Setupguide ONYX

Version 378.1 von Carina Enke am 13.02.2024

Zeige letzte Bearbeiter
1
2 == System requirements ==
3
4 === All components ===
5
6 * Linux-based OS
7 * Java 17
8 * Apache Tomcat 9 (latest update)
9
10 === ONYX Editor (additionally) ===
11
12 * PostgreSQL 12
13 * Java unlimited security enabled
14
15 {{code}}
16 http://stackoverflow.com/questions/6481627/java-security-illegal-key-size-or-default-parameters
17 Download from http://www.oracle.com/technetwork/java/javase/downloads/jce8-download-2133166.html
18 {{/code}}
19
20 === Build process ===
21
22 * Linux-based OS
23 * Java 11 (latest update, Oracle or OpenJDK)
24 * Eclipse for JEE (Kepler or later)
25 * Maven2
26 * Eclipse Maven integration (m2)
27
28
29 {{panel borderColor="#ddd" bgColor="#f0f0f0" borderStyle="solid" title="Inhalt"}}
30 {{toc start="2"/}}
31
32
33 {{/panel}}
34
35
36 == Steps for build ==
37
38 All ONYX parts are delivered as Eclipse projects
39
40
41 * preOnyx (ONYX QTI test player)
42 * preWebEditor (ONYX QTI test editor)
43 * onyx (ONYX QTI core)
44 * LaTeXRenderer (LaTeX image renderer connector, used to render LaTeX math formulas to images, which can be included in PDFs. This project only offers an interface to connect whatever lib you want, e.g. jlatexmath (GPL, delivered as example)
45
46
47 * Use Eclipse
48 * Import -> Existing project, start with LaTeXRenderer project
49 * Import all four projects
50
51 Due to license restrictions the **project LaTeXRenderer** is not linked or integrated by default. This must be done manually.
52
53 {{code}}
54 Ensure that project dependency from preWebOnyx and preWebEditor to LaTeXRenderer is fulfilled.
55 Ensure that project LaTeXRenderer exports all libs in /libs folder (you may get ClassNotFoundExceptions in Tomcat otherwise, if you still get them add all libs from project LaTeXRenderer to Tomcat classpath manually)
56
57
58 {{/code}}
59
60 (% style="line-height:1.4285715" %)**Maven will build all projects automatically**(%%) (you can do this manually on console, anyhow this is not tested in development environment and may disturb Eclipse Maven integration)
61
62 (% style="line-height:1.4285715" %)**Setup database for ONYX Editor**
63
64 * Locate setupdatabase.postgre.sql
65 * Log on to Postgres
66 * Create user owe with password owe
67 * Create database owe and assign to user owe
68 * Import setupdatabase.postgre.sql to this database
69
70 Hint: you may use other user/database names, change configuration in
71
72 {{code}}
73 applicationContext.xml (see below)
74 {{/code}}
75
76 == Changes on ONYX QTI core ==
77
78 Since all ONYX components are managed by Maven, the ONYX QTI core from BPS Maven artifactory is used by default. If you want to change some code you are required to create a JAR from project onyx on your own and either adopt the pom.xml references in preWebOnyx and preWebEditor to your own artifactory or put the JAR in classpath.
79
80 == Configuration ==
81
82 **preWebOnyx**
83
84 * Locate onyxplugin.default.config.xml, copy it to a classpath folder and rename to //onyxplugin.config.xml//
85 * Configure as needed
86 * Service provider named “preview” is required if used as preview instance for ONYX Editor
87
88 **preWebEditor**
89
90 * applicationContext.xml: general configurations (database, mail configuration, preview ONYX (you can change this to your local installation), ...)
91 * metadataConfigurationContext.xml: normally no changes needed as long as no further metadata are required
92 * moduleConfigurationContext.xml: repository configuration
93 * pageModelContext.xml: normally no changes required, defines the main tabs in shown application
94 * webServiceContext.xml: reporter statistics connection, can be changed to your local ONYX installation
95
96 == Deployment ==
97
98 * Deploy preWebOnyx and preWebEditor to Tomcat in Eclipse (it is recommended to use two Tomcat servers in Eclipse to be able to restart both independently)
99 * Configure Tomcat deployment to use different ports
100 * Check path the applications are mounted to
101 * Start Tomcat(s)
102 * Call http:~/~/localhost:<port>/<path> in browser
103
104 == Important notes ==
105
106 **Before running any ONYX application** in Eclipse/Tomcat, always **clean Tomcat Work Directory** first. This is also required in server environment after each update. Since ONYX creates large amounts of temporary files in server environment it is also strictly recommended to clean servers and tomcat temp directory before each application starts.
107
108 When run from Eclipse/Tomcat ONYX applications may not shut down properly. In this case just “kill” them using the red “Terminate” button in console view.
109
110 In server environment ONYX applications uses memory strongly dependent from load and users activities. BPS runs them with **8 GB each**.