Versions Compared

    Key

    • This line was added.
    • This line was removed.
    • Formatting was changed.
    Comment: Published by Scroll Versions from this space and version 7.0-0

     

    1. login to your Supervisor
    2. open a Terminal window
    3. run the following command
    "$QBDIR/utils/upgrade_supervisor" -reset

    ...

    Warning

    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

    ...

    1. 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:

     

    Code Block
    service supervisor stop
    /usr/local/pfx/qube

    ...

    Note

    You may need to restart the Supervisor as well

    OS X:

    sudo SystemStarter stop supervisor
    sudo SystemStarter start supervisor

    WIndows:

    sc stop qubesupervisor
    sc start qubesupervisor 

    (or use the Services control panel)

    Linux:

    sudo /etc/init.d/supervisor restart

     

    /utils/pgsql/init_supe_db.py --reset
    service supervisor start

    Mac:

    Open a terminal window, then:

     

    Code Block
    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:

     

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