Versions Compared

Key

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

...

  1. Stop the uControl tomcat process from the <Tomcat_Home>/bin directory

    Code Block
    ./shutdown.sh


  2. Login to mysql and drop / recreate the TekWurx7 database

    Code Block
    mysql -u tekwurx -p
    DROP DATABASE TekWurx7;
    CREATE DATABASE TekWurx7;


  3. Run mysql to import the data into the newly created database

    Code Block
    mysql -u tekwurx -p TekWurx7 < <BackupFile.sql>


  4. Start the uControl tomcat processes from the (Tomcat_Home>/bin directory

    Code Block
    ./startup.sh


...