...
Stop the uControl tomcat process from the <Tomcat_Home>/bin directory
Code Block ./shutdown.sh
Login to mysql and drop / recreate the TekWurx7 database
Code Block mysql -u tekwurx -p DROP DATABASE TekWurx7; CREATE DATABASE TekWurx7;
Run mysql to import the data into the newly created database
Code Block mysql -u tekwurx -p TekWurx7 < <BackupFile.sql>
Start the uControl tomcat processes from the (Tomcat_Home>/bin directory
Code Block ./startup.sh
...