Updated by John Gerger on Nov 05, 2019
Article Code: kb/504
In order to remove Simple Backup Service from your system, please follow the instructions below for Windows and Linux accordingly.
Windows
- Navigate to the Windows Control Panel.
- Click the Uninstall a Program option.
- Select the SimpleBackupService Program.
- Click Uninstall and confirm your selection.
Linux
Enter the following text in the Linux Command Line:
service simplebackupservice stop
rm -rf /opt/simplebackupservice
rm /etc/init.d/simplebackupservice
if [ -f /etc/redhat-release ];
then
# CentOS and RHEL
chkconfig --del simplebackupservice > /dev/null 2>&1
elif [ -f /etc/debian_version ];
then
# Debian and Ubuntu
update-rc.d -f simplebackupservice remove > /dev/null 2>&1
else
exit 1
fi