Skip to content
Pallavi Gupta edited this page Jul 3, 2017 · 1 revision

There are some thoughts and documentation regarding the project.

  1. Setting up a Local server
To set up a local Hawkular server we need to first install docker. Then create a folder named Hawkular in your local machine and add a docker-compose.yml file with the following content.
  hawkular:
  image: "hawkular/hawkular-services:devel"
  ports:
    - "8080:8080"
    - "8443:8443"
    - "9990:9990"
    - "8787:8787"
  volumes:
    - /tmp/opt/hawkular/server:/opt/data
  links:
    - myCassandra
  environment:
    - HAWKULAR_BACKEND=remote
    - CASSANDRA_NODES=myCassandra
    - HAWKULAR_USER=jdoe
    - HAWKULAR_PASSWORD=password
    - HAWKULAR_AGENT_ENABLE=true
    - HAWKULAR_METRICS_TTL=17
  myCassandra:
  image: cassandra:3.0.9
  environment:
    - CASSANDRA_START_RPC=true
  volumes:
    - /tmp/opt/hawkular/cassandra:/var/lib/cassandra
Clone this wiki locally