Support
Accounts & Users
Backup
Blueprints
Lumen Private Cloud on VMware Cloud Foundation
Cloud Application Manager
Administering Your Organization
Analytics
Automating Deployments
Billing
Cloud Optimization
Core Concepts
DR Readiness
Deploying Anywhere
FAQ
Getting Started
Integrating with Jenkins
Managed Services
Monitoring
Troubleshooting
Tutorials
Edge Computing Solutions
Compliance
Control Portal
Database
Dedicated Cloud Compute
Disaster Recovery
Overview
SafeHaven 4
SafeHaven 5 CLC to AWS
SafeHaven 5 CLC to Azure
SafeHaven 5 CLC to CLC
SafeHaven 5 CPC-vCF to CLC
SafeHaven 5 General
SafeHaven 5 Manual to AWS
SafeHaven 5 VMware to AWS
SafeHaven Migration
General
Managed Services
Marketplace
Network
Release Notes
Runner
Security
Servers
Service Tasks
Storage
Support
Accounts & Users
Backup
Blueprints
Lumen Private Cloud on VMware Cloud Foundation
Cloud Application Manager
Administering Your Organization
Analytics
Automating Deployments
Billing
Cloud Optimization
Core Concepts
DR Readiness
Deploying Anywhere
FAQ
Getting Started
Integrating with Jenkins
Managed Services
Monitoring
Troubleshooting
Tutorials
Edge Computing Solutions
Compliance
Control Portal
Database
Dedicated Cloud Compute
Disaster Recovery
Overview
SafeHaven 4
SafeHaven 5 CLC to AWS
SafeHaven 5 CLC to Azure
SafeHaven 5 CLC to CLC
SafeHaven 5 CPC-vCF to CLC
SafeHaven 5 General
SafeHaven 5 Manual to AWS
SafeHaven 5 VMware to AWS
SafeHaven Migration
General
Managed Services
Marketplace
Network
Release Notes
Runner
Security
Servers
Service Tasks
Storage
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