nopaque/README.md

69 lines
2.9 KiB
Markdown
Raw Normal View History

2019-07-17 11:49:16 +00:00
# Opaque
2019-08-26 12:09:43 +00:00
Opaque is a virtual research environment (VRE) bundling OCR, NLP and additional computer linguistic methods for research purposes in the field of Digital Humanities.
Opaque is designed as a web application which can be easily used by researchers to aid them during their research process.
In particular researchers can use Opaque to start OCR jobs for digitized sources. The text output of these OCR jobs can then be used as an input for tagging processes (POS, NER etc.).
2020-01-07 14:03:21 +00:00
As a last step texts can be loaded into an information retrieval system to query for specific words, phrases in connection with linguistic features.
2019-08-26 12:09:43 +00:00
2019-07-17 11:49:16 +00:00
## Dependencies
2019-08-26 12:09:43 +00:00
- cifs-utils
2020-01-07 14:03:21 +00:00
- Docker
- Docker Compose
2019-08-15 10:03:16 +00:00
2020-01-07 14:03:21 +00:00
## Configuration and startup
2019-08-15 10:03:16 +00:00
2019-08-26 12:09:43 +00:00
1. **Create Docker swarm:**
2020-01-07 14:03:21 +00:00
The generated computational workload is handled by a [Docker](https://docs.docker.com/) swarm. A swarm is a group of machines that are running Docker and joined into a cluster. It consists out of two different kinds of members, managers and workers. Currently it is not possible to specify a dedicated Docker host, instead Opaque expects the executing system to be a swarm manager of a cluster with at least one dedicated worker machine. The swarm setup process is described best in the [Docker documentation](https://docs.docker.com/engine/swarm/swarm-tutorial/).
2. **Create a network storage:**
2020-01-07 14:03:21 +00:00
A shared network space is necessary so that all swarm members have access to all the data. To achieve this a [Samba](https://www.samba.org/) can be used.
2019-08-26 12:09:43 +00:00
``` bash
2020-01-07 14:03:21 +00:00
# Example: Create a Samba share via Docker
# More details can be found under https://hub.docker.com/r/dperson/samba/
$ sudo mkdir -p /srv/nopaque/storage
$ docker run \
--name opaque_storage \
-v /srv/nopaque/storage:/srv/nopaque/storage \
-p 445:445 \
dperson/samba \
-p \
-s storage.nopaque;/srv/nopaque/storage;no;no;no;nopaque \
-u nopaque;nopaque
# Mount the Samba share on all swarm member nodes with the following code
$ sudo mkdir /mnt/nopaque
$ sudo mount --types cifs --options gid=${USER},password=nopaque,uid=${USER},user=nopaque,vers=3.0 //<YOUR IP>/storage.nopaque /mnt/nopaque
2019-08-26 12:09:43 +00:00
```
2020-01-07 14:03:21 +00:00
3. **Download Opaque**
``` bash
$ git clone https://gitlab.ub.uni-bielefeld.de/sfb1288inf/opaque.git
$ cd opaque
$ docker-compose pull
2019-08-15 10:03:16 +00:00
```
4. **Configure your instance:**
For production environments it is recommended to activate and secure the Docker HTTP API. You can read more [here](https://gitlab.ub.uni-bielefeld.de/sfb1288inf/opaque_daemon).
2019-08-26 12:09:43 +00:00
``` bash
2020-01-07 14:03:21 +00:00
$ cp nopaque.env.tpl nopaque.env
$ <YOUR EDITOR> nopaque.env # Fill out the empty variables within this file.
2019-08-15 10:03:16 +00:00
```
2020-01-07 14:03:21 +00:00
5. **Start your instance**
``` bash
# Execute the following 3 steps only on first startup
2020-01-08 15:02:18 +00:00
$ docker-compose run web flask db upgrade
$ docker-compose run web flask db insert-initial-database-entries
2020-01-07 14:03:21 +00:00
$ docker-compose down
2019-08-26 12:09:43 +00:00
2020-01-07 14:03:21 +00:00
$ docker-compose up
```
2020-01-08 15:02:18 +00:00
6. **Alter Database Models**
``` bash
$ docker-compose run web flask db migrate
$ docker-compose run web flask db upgrade
```