EasyCloudify™
Products
  • Cloud PlatformImprove team productivity and integrate popular workflow applications.
  • Cloud Servers (VPS)NVMe SSD servers deployed in under 60 seconds.
  • Object StorageS3-compatible storage with built-in global CDN.
  • Managed DatabasesManaged PostgreSQL, MySQL, MongoDB, Valkey, Kafka & OpenSearch.
  • Managed WordPressManaged WordPress hosting, so you can focus on your business.
  • MarketplaceFind an app that suits you, then spin it up in 60 seconds or less.
  • Mail HostingPrivacy First Email Hosting for your business.
  • SEO & AI Visibility AuditAudit your site for SEO and AI answer engine visibility.
  • SecurityRock-solid application security for your peace of mind.
  • Client ToolboxManage projects, contracts, security engagements, and support.
  • Cybersecurity Overview
  • Digital Identity Defense
  • Penetration Testing
  • PTaaS
  • Red Team Operations
  • Incident Response & Advisory
Company
  • About
  • Brand Guide
  • Legal
  • Trust FAQ
Compare
  • Fully Managed Cloud
  • Elestio Alternative
  • Hetzner Alternative
  • Hostinger Alternative
  • SiteGround Alternative
  • OVHcloud Alternative
Cybersecurity
  • Pentest Specialties
  • Web Application Testing
  • API Security Testing
  • Mobile Application Testing
  • Cloud and VPC Security Testing
  • Internal Network Testing
  • External Network Testing
  • Wireless Security Testing
  • Salesforce Security Testing
  • Physical Penetration Testing
  • Phishing and Vishing Simulations
  • IoT Security Testing
  • OT Security Testing
  • AI and LLM Security Testing
  • Industries
  • Financial Services Cybersecurity
  • Healthcare Cybersecurity
  • Government Cybersecurity
  • Education Cybersecurity
  • Manufacturing Cybersecurity
  • Technology Cybersecurity
  • Blockchain and Crypto Cybersecurity
  • Telecommunications Cybersecurity
  • Transportation Cybersecurity
  • Water Utility Cybersecurity
  • Energy Sector Cybersecurity
  • Media Cybersecurity
  • Social Media Platform Cybersecurity
  • Compliance
  • PCI DSS Security Testing
  • HIPAA Security Testing
  • SOC 2 Security Testing
  • GLBA Security Testing
  • CMMC 2.0 / NIST 800-171 Security Testing
  • ISO 27001 Security Testing
  • GDPR Article 32 Security Testing
  • FedRAMP Security Testing
  • Trust Center
  • Security Research
  • Cybersecurity FAQ
  • Certifications
Resources
  • Use Cases
  • Blog
  • Certifications
  • Guides
  • Status
Get Started
  • Contact Sales
  • Pricing
  • Dashboard
EasyCloudify™EasyCloudify™
PricingContact
Log inStart deploying
EasyCloudify™ logoEasyCloudify™

Fully managed cloud infrastructure — deploy in minutes, not days.

Newsletter

The latest news, articles, and resources — delivered weekly.

Product

  • Cloud Platform
  • Marketplace
  • Managed WordPress
  • Mail Hosting
  • Security

Support

  • Open a Ticket
  • Documentation
  • Contact Sales
  • System Status

Company

  • About
  • Brand Guide
  • Global Infrastructure
  • Blog
  • Pricing

Legal

  • Terms of Service
  • Privacy Policy
  • Acceptable Use
  • Trust FAQ
  • All Legal Docs

  • Cloud Platform
  • Marketplace
  • Managed WordPress
  • Mail Hosting
  • Security

  • Open a Ticket
  • Documentation
  • Contact Sales
  • System Status

8 The Green, Suite A, Dover DE 19901, USA
+1 (302) 534-3122

© 2026 EasyCloudify™ LLC. All rights reserved.

Rated on Trustpilot
Terms of ServicePrivacy PolicyAcceptable Use
EasyCloudify™Docs
⌘K
Deploy a VPS Server — Launch a New Cloud Server on EasyCloudify™Manage Your Server — Power, IP, and Delete on EasyCloudify™VPS Performance Monitoring — Real-Time Server Metrics on EasyCloudify™Export Data From Your Server Over SFTP — EasyCloudify™Export and Sync Data With rsync — EasyCloudify™
HomeDocsServersExport and Sync Data With rsync — EasyCloudify™
2 min read·Updated 2026-08-11

Export and Sync Data With rsync — EasyCloudify™

TL;DR — rsync copies only what has changed, resumes interrupted transfers, and preserves permissions — making it the best tool for downloading large directories from your EasyCloudify™ Cloud VPS to your local machine.

What is rsync?

rsync is a fast, widely available file-synchronization tool that transfers only the differences between source and destination. It runs over SSH, so it uses the same secure connection and credentials you already use for your server.

Before You Start

  • You have a Cloud VPS deployed and running (see Deploy a VPS Server)
  • You know your server's public IP address and an SSH user (see Manage Your Server)
  • rsync is installed on both your local machine and your server (it is preinstalled on most Linux distributions and macOS)

How to Download a Directory

Run this on your local machine to copy a remote directory down to your computer:

rsync -avz your-user@your-server-ip:/var/www/my-app/ ./my-app-backup/
FlagMeaning
-aArchive mode — preserves permissions, timestamps, and structure
-vVerbose — shows each file as it transfers
-zCompresses data during transfer to save bandwidth

⚠️ Trailing slashes matter. A trailing / on the source (my-app/) copies the contents of the folder into the destination. Without it, the folder itself is nested inside the destination.

Resume an Interrupted Transfer

If a transfer is interrupted, add --partial --progress and run the same command again — rsync picks up where it left off:

rsync -avz --partial --progress your-user@your-server-ip:/var/www/my-app/ ./my-app-backup/

Use a Specific SSH Key

If your key is not in the default location, pass it explicitly:

rsync -avz -e "ssh -i /path/to/your-key" your-user@your-server-ip:/data/ ./data/

💡 Tip: Data on an attached Block Storage volume lives under its mount point (for example /mnt/your-volume/). Point rsync at that path to export it.

Next Steps

  • For one-off downloads or a graphical client, use SFTP or FileZilla.
  • Need data from a deleted server? Recover files from a snapshot.
PreviousExport Data From Your Server Over SFTP — EasyCloudify™NextSupport Tickets — Create and Track Support Requests on EasyCloudify™
On this page
  • What is rsync?
  • Before You Start
  • How to Download a Directory
  • Resume an Interrupted Transfer
  • Use a Specific SSH Key
  • Next Steps

Was this helpful?

AI Tools