Support
Accounts & Users
Backup
Blueprints
Lumen Edge Private Cloud
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
Control Portal
Dedicated Cloud Compute
General
Managed Services
Network
Release Notes
Servers
Service Tasks
Lumen Network Storage
Support
Accounts & Users
Backup
Blueprints
Lumen Edge Private Cloud
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
Control Portal
Dedicated Cloud Compute
General
Managed Services
Network
Release Notes
Servers
Service Tasks
Lumen Network 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