There are two ways to get up and running with the Giles Ecosystem: using Docker or installing it directly on your infrastructure. We recommend to use Docker for evaluation and testing purposes, but to install all components directly on your machines in production.
...
- Unpack the war file (e.g. by changing its ending to ".zip" and unzipping it)
- Find the file
WEB-INF/classes/config.properties
and edit the following properties:giles_files_tmp_dir
: This should be an absolute path to the directory where you want Giles to stores its temporary files (files uploaded by users that haven't been processed yet).- If your Kafka server is not running on the same machine as Giles, or if it is running on a different port than the default port (9092), you have to change the property
kafka_hosts
to reflect this. Status colour Blue title since v0.5 db.driver
: the driver appropriate for you database (e.g.com.mysql.jdbc.Driver
for MySQL ororg.postgresql.Driver
for PostgreSQL, see this page for more drivers).Status colour Blue title since v0.5 db.url
: connection URL for the used database .Status colour Blue title since v0.5 db.username
: username to connect to database.Status colour Blue title since v0.5 db.password
: password to connect to database.Status colour Blue title since v0.5 hibernate.dialect
: the dialect used for your database (see this page for a list of dialects).Status colour Blue title since v0.6 zookeeper_host
: host name where Zookeeper is running (e.g.localhost
ormy.server.org
)Status colour Blue title since v0.6 zookeeper_port
: port on which Zookeeper is running (default is2181
)Status colour Blue title since v0.6
: enables or disables email notifications. Set toemail_enabled
true
if email notifications should be sent; otherwisefalse
.Status colour Blue title since v0.6 email_from
: email address notifications should be sent from.- All other properties can later be changed through the webapp itself.
Find the file
WEB-INF/spring/email-config.xml
and edit it as follows:Set the host property to your email host name by editing the
value
attribute:Code Block language xml <property name="host" value="your.email.host"/>
Set the port property to your email host port by editing the
port
attribute:Code Block language xml <property name="port" value="email.server.port"/>
Set the username property to the username to use to connect to your email server:
Code Block language xml <property name="username" value="username.for.emailserver"/>
Set the password property to the password to be used to connect to your email server:
Code Block language xml <property name="password" value="password.for.emailserver"/>
- Find the file
WEB-INF/classes/user.properties
and edit admin password:admin=adminPasswordBCrypted,ROLE_ADMIN,enabled
: the password is the first value after the equal sign (adminPasswordBCrypted). Password should be hashed using the bcrypt algorithm with strength 10.
- Find the file
WEB-INF/classes/META-INF/persistence.xml
and change it as follows:There are three lines that start with
<property name="javax.persistence.jdbc.url"
. In each line, replace/path/to/giles/dbfiles/folder
with the path to the folder that should store Giles' DB files. It should look something like this:Code Block language xml <property name="javax.persistence.jdbc.url" value="/path/to/giles/db/folder/users.odb"/>
Make sure to keep the file name at the end of each line.
Find the file
WEB-INF/spring/spring-security.xml
and change the following lines:Code Block language xml <beans:bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <beans:property name="driverClassName" value="com.mysql.jdbc.Driver" /> <beans:property name="url" value="jdbc:mysql://localhost:3306/giles" /> <beans:property name="username" value="" /> <beans:property name="password" value="" /> </beans:bean>
Change the values of username and password to the username of your DB user and its password. If you did not name the new DB
giles
, change theurl
property to reflect the database name (e.g. if you named the databasegilesdb
, then instead ofjdbc:mysql://localhost:3306/giles
, putjdbc:mysql://localhost:3306/gilesdb
).
If you are using PostgreSQL instead of MySLQ, make sure to replace the driver class name withorg.postgresql.Driver
.Now, generate a new war file from the unpacked and changed files and deploy it in your Tomcat.
Info If you are on a Unix-based operating system, you can do this for example by running the command
jar -cvf giles.war .
from inside the unpacked Giles folder.- Once deployed, Tomcat should be accessible at
http://your.server/giles
.
Note |
---|
From version v0.5 onwards, Giles does no longer use ObjectDB as database backend. If you set up a new Giles installation (not an update with existing data), you probably still have to execute step 35, but your data will be stored in the relational database you specify (e.g. MySQL). Step 3 5 is still part of the set up process for backwards compatibility and data migration purposes. |
...