Problem

Germain Engine contains a local database which keeps track of e.g. parsed log files. Sometime you just want to start from scratch and remove this local cache.

Solution

  1. Navigate to Germain Engine directory

  2. Make sure the Germain Engines are stopped

  3. Execute the following commands to clear & recreate the state store:

    cd database
    rm –rf hsqldb/*
    nohup ./db-standalone.sh
    ./createStatestore.sh
    CODE
  4. Shut down state store DB

    ./db-exec.sh
    shutdown;
    \q
    CODE
  5. Restart Germain Engines