Versions Compared

Key

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

...

Expand
titlePlease click here if using the built in MySQL database, packaged with DualShield.

If the DualShield uses a local MySQL database, then export the DaulShield database 

Code Block
languagepowershell
    cd C:\Program Files\Deepnet DualShield\mysql\bin\
    mysqldump -uroot -p dualshield > c:\dualshield.sql

Copy the database file "dualshield.sql" from the Windows machine to the home folder of the Linux machine, and import it into the database

Run the following commands to import the dualshield.sql file...  (for the last command replace [username] with the account name used to log into Linux CLI

Code Block
    cd /opt/dualshield/mysql/bin/
    ./mysql -uroot -p -e "drop database dualshield"
	./mysql -uroot -p -e "create database dualshield DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci"     
	./mysql -uroot -p dualshield < /home/[username]/dualshield.sql


Expand
titlePlease click here if using an external database such as MS SQL

Backup your original database and restore to the new one.  https://learn.microsoft.com/en-us/sql/relational-databases/backup-restore/quickstart-backup-restore-database?view=sql-server-ver16&tabs=ssms



4. Copy the following files from the Windows machine to the home folder of the Linux machine:

...