Prem Choudharyprem14choudhary.hashnode.dev·Sep 13, 2024How to take automate backup using python on local system...?First what is backup?Backup means 📁(File)→ Compress → Copy → Save. import shutil import datetime import os def backup_files(source,destination): today=datetime.date.today() backup_filename=os.path.join(destination,f"backup_{today}") stut...Backup
Cloud Tunedcloudtuned.hashnode.dev·Jun 27, 2024Daily Hack #day85 - Redis Backup and RecoveryThe shell script below automates the backup and recovery process for a Redis database. This script will create a backup of the Redis database and allow you to restore it from the backup. Redis Backup and Recovery Script #!/bin/bash # Configuration R...Daily HacksRedis
Abdullah Bin Altafdevopswithabdullah.hashnode.dev·Feb 15, 2024Project # 1 - Basic Backup Shell ScriptIn this project we'll be creating a simple yet effective backup shell script! In today's digital age, data is paramount, and ensuring its safety through regular backups is crucial. With this shell script, you'll be able to automate the process of bac...Devops
lucas Yongiamalucasyong.hashnode.dev·Sep 13, 2023A Thorough Manual for Backing Up Data from NASIntroduction In an increasingly digital world, data has become one of our most valuable assets. Whether it's personal photos and videos, important documents, or critical business information, losing data can be disastrous. Network-attached storage (N...NAS Backup Solution
Anil Kushwahalinuxdevops.hashnode.dev·Jul 26, 2023Step-by-Step Guide: Ensuring Data Safety with Incremental/Daily Website Backups (For Cpanel server.)In this guide, we will walk you through the steps to set up Incremental/Daily backups on your website, with a data retention period of 3 days. Additionally, we will automate the process of removing older backups, ensuring you always have the latest a...4 likes·31 readsBackup Solution