Versions Compared

Key

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

...

  • Installing Solr before the DC can lead to the installer failing, because Solr will gave taken up the needed port.
  • Some servers require the program "Microsoft Monitoring Agent" to be removed for the DC to open up correctly.

TimeScale Postgres Server

The analytics Service needs access to a TimeScale Postgress Database, this can be installed on a separate Machine, or run in a docker container


Info
titlesample docker-compose.yml

version: "3"
services:
  timescaledb:
    image: timescale/timescaledb:latest-pg15
    hostname: timescale
    environment:
      POSTGRES_PASSWORD: <timescalepassword>
    ports:
      - "5432:5432"
    volumes:
        - timescale15:/var/lib/postgresql/data
    mem_limit: 1000m
    mem_reservation: 50m

volumes:
  timescale15:


TimeScaleDbConnection install.ps1 argument:

Host=<TimeScaleHost>;Database=postgres;Username=postgres;Password=<timescalepassword>;SearchPath=public

Database server

The database server has the following requirements

...