Icon

    WARNING: Performing these operations will discard ALL DATA from the entire PostgreSQL DB!

     

    Basically, you will need to:

    1. stop the supervisor service
    2. run the init_supe_db.py script with the "–reset" option. The script is found in $QBDIR/utils/pgsql/, where $QBDIR is:
      1. Linux: /usr/local/pfx/qube
      2. Mac: /Applications/pfx/qube
      3. Windows: C:\Program Files\pfx\qube
    3. start the supervisor service

    Again, this wipes all existing data, so make sure that's what you really want.

     

    Linux:

    Open a terminal window as root, then:

     

    service supervisor stop
    /usr/local/pfx/qube/utils/pgsql/init_supe_db.py --reset
    service supervisor start

    Mac:

    Open a terminal window, then:

     

    sudo launchctl stop com.pipelinefx.supervisor 
    /Applications/pfx/qube/utils/pgsql/init_supe_db.py --reset
    sudo launchctl start com.pipelinefx.supervisor

     

    Windows:

    Open a command prompt, then:

     

    net stop qubesupervisor
    "C:\Program Files\pfx\qube\utils\pgsql\init_supe_db.py" --reset
    net start qubesupervisor


     

     


    • No labels