Skip to content

This is a bash script to backup Linux Plex Media Server settings and database, and log the results.

License

Notifications You must be signed in to change notification settings

007revad/Linux_Plex_Backup

Repository files navigation

Linux Plex Backup

Donate committers.top badge

Description

This is a bash script to backup Linux Plex Media Server settings and database, and log the results.

What the script does:

  • Gets your Linux computer's hostname and distro name (for use in the backup filename and log name).
  • Checks that the script is running with the required privileges.
  • Gets Plex Media Server's version (for the backup filename and log).
  • Checks the volume and share name where Plex Media Server's database is located.
  • Checks that your specified backup location exists.
  • Stops Plex Media Server, then checks Plex actually stopped.
  • Backs up Plex Media Server to a tgz file (excluding the folders listed in plex_backup_exclude.txt).
  • Starts Plex Media Server.

It also saves a log in the same location as the backup file, including:

  • Logging the start and end time plus how long the backup took.
  • Logging every file that was backed up (can be disabled in config file).
  • Logging any errors to a separate error log file to make it easy for you to see if there were errors.

The Linux computer's hostname, date, and Plex Media Server version are included in the backup's filename in case you need to roll Plex back to an older version or you save backups from more than one Plex Servers.

Example of the backup's auto-generated filenames:

  • ubuntu_20221025_Plex_1.29.0.6244_Backup.tgz
  • ubuntu_20221025_Plex_1.29.0.6244_Backup.log
  • ubuntu_20221025_Plex_1.29.0.6244_Backup_ERROR.log (only if there was an error)

If you run multiple backups on the same day the time will be included in the filename.

Example of the backup's auto-generated filenames:

  • ubuntu_20221025_1920_Plex_1.29.0.6244_Backup.tgz
  • ubuntu_20221025_1920_Plex_1.29.0.6244_Backup.log

Download the script

  1. Download the latest version Source code (zip) from https://github.com/007revad/Linux_Plex_Backup/releases
  2. Save the download zip file to a folder on the Linux computer.
  3. Unzip the zip file.

Settings

You need to set backupDirectory= near the top of the script (below the header). Set it to the location where you want the backup saved to.

backupDirectory="/share/Backups/Plex_Backups"

The script gets the disto and hostname from the NAS to use logs and backup name. Set Name= to "distro", "hostname" or some nickname. If Name= is blank the Linux computer's hostname will be used.

The LogAll setting enables, or disables, logging every file that gets backed up. Set LogAll= to "yes" or "no". Blank is the same as no.

Name="distro"
LogAll="no"

Requirements

Make sure that backup_linux_plex.config and plex_backup_exclude.txt are in the same folder as Linux_Plex_Backup.sh

Note: Due to some of the commands used this script needs to be run by a user in sudo, sudoers or wheel group, or as root

Running the script

Run the script by a user in sudo, sudoers or wheel group.

sudo -s "/share/scripts/Linux_Plex_Backup.sh"

Troubleshooting

Issue Cause Solution
/usr/bin/env: ‘bash\r’: No such file or directory File has Mac line endings! Download latest zip file
Cursor sits there doing nothing File has Windows line endings! Download latest zip file
syntax error near unexpected token You downloaded the webpage! Download latest zip file

If you get a "No such file or directory" error check the following:

  1. Make sure you unpacked the zip or rar file that you downloaded and are trying to run the Linux_Plex_Backup.sh file.
  2. If the path to the script contains any spaces you need to enclose the path/scriptname in double quotes:
    sudo -s "/share/folder with spaces/Linux_Plex_Backup.sh"
  3. Set the script files as executable:
    sudo chmod +x "/share/scripts/Linux_Plex_Backup.sh"
    sudo chmod +x "/share/scripts/Restore_Linux_Plex_Backup.sh"

Testing the script

If you run the script with the test argument it will only backup Plex's Logs folder.

sudo -s "/share/scripts/Linux_Plex_Backup.sh" test

If you run the script with the error argument it will only backup Plex's Logs folder and cause an error so you can test the error logging.

sudo -s "/share/scripts/Linux_Plex_Backup.sh" error

Restoring from a backup

To restore Plex from a backup run the included Restore_Linux_Plex_Backup.sh in a shell:

sudo -s "/share/scripts/Restore_Linux_Plex_Backup.sh"

Note: Replace "/share/scripts/" with the path to where Linux Plex Backup's files are located.

The first thing you'll see is a menu listing all of your Plex backups that you created with Linux Plex Backup. Select the backup you want to restore and the sript will do the rest.

Note: I would only restore a backup from the same Plex version as you currently have installed (which is why the Plex version is included in the backup file name and logs.

Restoring a test backup

If you previously ran Linux Plex Backup with the test argument you can run Restore_Linux_Plex_Backup.sh with the test argument so the menu will list any small backups (less than 1 MiB).

sudo -s "/share/scripts/Restore_Linux_Plex_Backup.sh" test

Note: Replace "/share/scripts/" with the path to where Linux Plex Backup's files are located.