martin-kanis / relax-dms

A simple document management system (DMS) based on CouchDB.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Relax DMS

This is my master thesis at BUT FIT. It's implementation of distributed document server based on CouchDB database.

Setting CouchDB cluster

Cluster is available through Docker image klaemo/couchdb:2.0-dev. There are 3 configured CouchDB nodes wiht HAProxy in front them. All you need is Docker installed on your machine.

  1. Start Docker

    sudo systemctl start docker
    
  2. Run Docker container

    sudo docker run --privileged=true -it -p 5984:5984 -v $(pwd)/couchdb:/usr/src/couchdb/dev/lib/node1/data klaemo/couchdb:2.0-dev --admin=admin:password --with-haproxy
    

    Note this will mount data from Docker CouchDB cluster to your host specifically to your current working directory.

  3. Access cluster through proxy at port 5984 http://127.0.0.1:5984/_utils

Access CouchDB cluster

To access node dirrecty in the Docker container do following:

  • Get container id sudo docker ps
  • Connect to the container sudo docker exec -it <id> bash
  • Nodes are located at /usr/src/couchdb/dev/lib/nodeN

Setting Keycloak server

Download Keycloak server 1.9.8.Final and unzip it. To import all needed settings, download importKeycloak.json file and run this command from bin directory (specify path to importKeycloak.json):

./standalone.sh -Djboss.socket.binding.port-offset=100 -Dkeycloak.migration.action=import -Dkeycloak.migration.provider=singleFile -Dkeycloak.migration.file=importKeycloak.json -Dkeycloak.migration.strategy=OVERWRITE_EXISTING

To run Keycloak server without importing go to bin directory and run following command that starts Keycloak on port 8180:

./standalone.sh -Djboss.socket.binding.port-offset=100

Administration console is then available on http://localhost:8180/auth/admin address (Username is admin and password is admin):

Setting EAP server

Download EAP 7.0.0 and unzip it. Download BRMS 6.4 deployable for EAP 7 and unzip it in your EAP 7 directory. To start EAP server run following command in EAP 7 bin directory:

./standalone.sh

Access BRMS server

Business central console is deployed on http://localhost:8080/business-central. Username is bpmsAdmin and password is password.

Build application

You will need maven 3.1.1 or later and added redhat GA repository to your settings.xml in order to build application. Download settingsBXMS.xml file and then run following command with correct path to the file:

mvn -s /path/to/settingsBXMS.xml clean install

Deploy application

To deploy application to EAP server copy the relax-dms-*.ear file to EAP deployments folder:

cp application/target/relax-dms*.ear $eapDir/standalone/deployments

Rest API

For access REST endpoint you will need access token for authentication. You can obtain the access token for user writer with following command:

curl --data "grant_type=password&client_id=relax-dms&username=writer&password=password" http://localhost:8180/auth/realms/RelaxDMS/protocol/openid-connect/token

About

A simple document management system (DMS) based on CouchDB.

License:MIT License


Languages

Language:Java 89.2%Language:HTML 7.6%Language:XSLT 1.6%Language:JavaScript 1.1%Language:CSS 0.5%