Versions Compared

Key

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

...

  1. Show Azkaban Web Server Logs
    • To view logs:
      Code Block
      docker compose logs web
    • To follow logs:
      Code Block
      docker compose logs --follow web
    • To show the last 100 lines and follow the logs:
      Code Block
      docker compose logs --follow --tail=100 web
  2. Bash into Azkaban Web Server
    Code Block
    docker compose exec web bash
  3. Stop the Azkaban Web Server
    Code Block
    docker compose stop web
  4. Stop Azkaban Executor Server
    Code Block
    docker compose stop exec

Update

Rebuild Web and Executor Servers

For example, when there is a newer version of azkaban-installer.jar, copy it into the azkaban folder inside the Docker Compose package and run the following commands:

Stop and remove the running containers:

Code Block
docker compose down web
docker compose down exec

Rebuild

Code Block
docker compose build web
docker compose build exec