Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Be aware that especially the first startup of the SOX service may take several minutes to set up the database. The backend will therefore be unreachable during this step of the setup. Later startups skip this initialization and will be faster.

Manual Installation

Instead of running the complete installation via the docker-compose up -d command, you can also install the relevant components on their own. This is especially useful in case you were experiencing challanges during your first installation attempt as this method allows you to check the docker logs after each step using the command

Code Block
docker ps

Perform the following commands in order:

MySQL Service:

Code Block
docker-compose up -d mysql

Respository Service:

Code Block
docker-compose up -d SOX

You can now check the logs for messages indicating successful startup:

Code Block
docker logs -f sox

The CDO server started and Starting SWT event loop messages indicate a successful installation.

C-SOX Frontend:

Code Block
docker-compose up -d c-sox

Reverse Proxy to open C-SOX files from the desktop client:

Code Block
docker-compose up -d traefik

Remote Process Client-Server Installation (old Server Installation process)

...