mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
Update README.md
This commit is contained in:
parent
dd2fcaa28d
commit
5771fb8ae7
57
README.md
57
README.md
@ -1,31 +1,64 @@
|
||||
# Opaque
|
||||
|
||||
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.).
|
||||
|
||||
As a last step texts can be loaded into an information retrieval system to query for specific words, phrases in connection with POS tags.
|
||||
|
||||
## Dependencies
|
||||
|
||||
- Docker: https://www.docker.com/
|
||||
- Python 3.5+
|
||||
- cifs-utils
|
||||
|
||||
|
||||
## Setup
|
||||
|
||||
1. Create Docker swarm
|
||||
|
||||
1. **Create Docker swarm:**
|
||||
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 swarm with at least one dedicated worker machine. The [swarm setup](https://docs.docker.com/engine/swarm/swarm-tutorial/) process is described best in the Docker documentation.
|
||||
|
||||
2. Create a dedicated user `opaque` on all swarm members with `sudo useradd opaque`.
|
||||
|
||||
2. Create shared network storage
|
||||
3. Create shared network storage
|
||||
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/) share is used.
|
||||
``` bash
|
||||
# Start a samba service on a swarm manager node
|
||||
SAMBA_DIRECTORY=</ABSOLUT/PATH>
|
||||
SAMBA_HOSTNAME=<HOSTNAME>
|
||||
SAMBA_PASSWORD=<SET_PASSWORD>
|
||||
|
||||
docker service create \
|
||||
--constraint node.hostname==$SAMBA_HOSTNAME \
|
||||
--mount type=bind,src=$SAMBA_DIRECTORY,dst=/storage.opaque \
|
||||
--name samba_opaque \
|
||||
--publish published=139,target=139,mode=host \
|
||||
--publish published=445,target=445,mode=host \
|
||||
dperson/samba \
|
||||
-p \
|
||||
-s "storage.opaque;/storage.opaque;no;no;no;opaque" \
|
||||
-u "opaque;$SAMBA_PASSWORD"
|
||||
|
||||
|
||||
# The following steps need to be executed on all swarm members
|
||||
# Login as opaque user
|
||||
sudo su opaque
|
||||
# Create mount point for opaque storage
|
||||
mkdir -p $HOME/mnt/opaque
|
||||
# Mount the samba share
|
||||
sudo mount -t cifs -o gid=opaque,password=$SAMBA_PASSWORD,uid=opaque,user=opaque,vers=3.0 //$SAMBA_HOSTNAME/storage.opaque $HOME/mnt/opaque
|
||||
```
|
||||
|
||||
|
||||
|
||||
2. Get the source code and navigate into the code directory
|
||||
4. Clone the Opaque repository to the swarm manager, that should execute the Opaque server software
|
||||
```
|
||||
git clone https://gitlab.ub.uni-bielefeld.de/sfb1288inf/opaque.git
|
||||
cd opaque
|
||||
```
|
||||
|
||||
2.1 Create a configuration file
|
||||
```
|
||||
4.1 Create a configuration file
|
||||
``` bash
|
||||
touch .env
|
||||
# Account information of a mail account for sending emails to opaque users.
|
||||
echo "MAIL_USERNAME=opaque@example.com" >> .env
|
||||
@ -36,14 +69,14 @@ echo "MAIL_USE_TLS=true" >> .env
|
||||
# A user registering with this email address will automatically promoted as an admin.
|
||||
echo "OPAQUE_ADMIN=admin.opaque@example.com" >> .env
|
||||
# Absolut path to an existing directory to save all opaque files.
|
||||
echo "OPAQUE_STORAGE=/opaque/storage" >> .env
|
||||
echo "OPAQUE_STORAGE=/home/opaque/mnt/opaque" >> .env
|
||||
```
|
||||
|
||||
2.2
|
||||
|
||||
Create Python virtual environment, activate it and install the required python packages.
|
||||
4.2 Create Python virtual environment, activate it and install the required python packages.
|
||||
```
|
||||
python3 -m venv venv
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
```
|
||||
|
||||
5. Start the server: `python opaque.py`
|
||||
|
Loading…
Reference in New Issue
Block a user