Skip to content

Instantly share code, notes, and snippets.

@TheFreshPrinceOfBel-Air
Forked from fwenzel/plex_restart.sh
Created July 13, 2017 06:37
Show Gist options
  • Save TheFreshPrinceOfBel-Air/1488a6bcc90794998dc9400acdef8a4a to your computer and use it in GitHub Desktop.
Save TheFreshPrinceOfBel-Air/1488a6bcc90794998dc9400acdef8a4a to your computer and use it in GitHub Desktop.
Simple watchdog script to restart plex media server if it becomes unresponsive.
#!/bin/bash
# If plex is not running, don't do anything.
plex_running=`ps ax | grep "\./Plex Media Server" | awk '{ print $1 }' | wc -l`
if [ "$plex_running" -eq 1 ]; then
exit 0
fi
# Test Plex web interface. If it's dead, this'll time out in a few seconds.
curl -I -m 8 "http://localhost:32400/library/sections" > /dev/null 2>&1
if [ "$?" -ne "0" ]; then
/usr/sbin/service plexmediaserver restart
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment