How To Backup Printer Installer (Printer Logic)

IT Support Forum Forums Printers, Print Servers and Printing PrinterLogic Printer Installer How To Backup Printer Installer (Printer Logic)

Viewing 1 reply thread
  • Author
    Posts
    • #149
      McLovin
      Participant

      I have a PrinterLogic Printer Installer server, but don’t know the best way to do a backup of this server. I know there are files and database to backup. How do I backup Printer Installer?

    • #150
      Webmaster
      Keymaster

      Here’s a script that I use as a scheduled task to backup the Printer Installer database:

      del "D:\Backup\backup1.sql"
      move "D:\Backup\backup.sql" "D:\Backup\backup1.sql"
      cd "C:\Program Files\mysql\mysql server 5.5\bin"
      mysqldump --user=root --password=InsertYourPasswordHere --single-transaction --add-drop-database printer_installer > D:\Backup\backup.sql

      You may wish to change the settings to reflect your database (How to get your Printer Installer password and other database settings)

      I schedule this to run every day. It keeps the last two backups (the idea being that at least one days worth of backups will the kept on tape, in the instance that it’s being backed up while it’s being written to tape and therefore avoids locked file / corruption issues.

      You also need to backup the wwwroot folder on your Printer Installer server. I take a copy of the produced backup*.sql files created by the script and the wwwroot folder to tape.

Viewing 1 reply thread
  • You must be logged in to reply to this topic.