Questions tagged [rsync]

Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon

Rsync is a fast and extraordinarily versatile file copying tool. It can copy locally, to/from another host over any remote shell, or to/from a remote rsync daemon. It offers a large number of options that control every aspect of its behavior and permit very flexible specification of the set of files to be copied. It is famous for its delta-transfer algorithm, which reduces the amount of data sent over the network by sending only the differences between the source files and the existing files in the destination. Rsync is widely used for backups and mirroring and as an improved copy command for everyday use.

Rsync website

1595 questions
0
votes
1 answer

In rsync the "bwlimit" parameter is explicitly ignored, how to fix this

I have rsyncd version 3.1.2 listening on port 873 and I want to limit the bandwidth with which my files are downloaded by a client connecting to me. I added a bwlimit both in the config file: uid = nobody gid = nogroup [data] path =…
Mnemosyne
  • 131
  • 1
  • 7
0
votes
0 answers

Why Would a Log File Get Cut Off When Emailed?

I am setting up some local backups of AWS EC2 instances. The backups are set to run overnight via Windows Server 2012 R2 Task Scheduler. The basic flow of each backup is that an rsync copies the current instance to local storage, the local storage…
0
votes
1 answer

Rsync from MacOS to Synology NAS: "@ERROR: host is denied to login"

I'm using a Synology S420j (running DSM 6.2.4-25556) to backup files from my Mac (Monterey v12.1) using the following command: rsync -avz --backup rsync-user@nas.local::backups/ This has previously worked, but I've been changing a few things…
stevec
  • 131
  • 3
0
votes
1 answer

rsync over multiplexed SSH connection and multiple jumphosts

I need to rsync a file from remote hosts to my local machine over multiple jumphosts. I'd like to use shared SSH connections so that I don't have to submit 2FA multiple times at some jumphosts. The idea is I create a master connection ssh…
Petr Javorik
  • 210
  • 2
  • 7
0
votes
1 answer

NAS rsync - delete files from destination which are not on source and are 1 week old

I have hyperbackup running from source NAS to destination NAS with the below settings Backup type - Rsync Options - reserve backup file at destination With this i have a backup method that results in a file/fodler structure in the 2nd NAS, withut…
0
votes
1 answer

Rsync very slow and slows system performance after update to RHEL 8

I updated my file server VM (VMware) from CentOS 7 to RHEL 8. I doubled the CPU's and memory on the new system, but for some reason rsync's seem to bog the system down considerably. To the point where users have trouble connecting over ssh. Total…
0
votes
1 answer

Fixing Permission Issue (Operation not permitted (1)) when using github action

I have an aws ec2 instance and I am trying to setup github action. My action is not able to sync. The error I get is Warning: Permanently added 'XXXXXXXXXX.compute.amazonaws.com,XX.X.XX.XX' (ECDSA) to the list of known hosts. sending incremental…
bhanu
  • 101
  • 1
0
votes
0 answers

High CPU from 1 process that's MYSQLD, but no abnormal queries while doing SHOW FULL PROCESSLIST

I have an issue where 2 processes take 99% of the CPU, but that leaves me the mysqld process that takes 600% of the CPU and a set of php-fpm processes that takes no more than 25% of the CPU according to top (2 process alive and 603 processes…
Sayaman
  • 187
  • 1
  • 11
0
votes
1 answer

Strange behaviour of rsync between debian an truenas

I want to use rsync to backup data from webserver to Truenas. The webserver runs Debian 11 and Truenas is at 12.0-U5 The backup is saved on the webserver in an encrypted format using restic. Since it's already encrypted I want to use rsync directly…
user6329530
  • 237
  • 2
  • 13
0
votes
1 answer

Unexpected remote arg when using link-dest in rsync

I have a backup script on my WSL Ubuntu that I use manually to backup my linux systems to a USB drive (NTFS volume mounted on WSL). I'm running into an issue with --link-dest that I haven't had before in other backup scripts; but it's been a while…
0
votes
0 answers

How to make Rsync only allow download but not upload

I know that i can add in Rsync's config file read only = no But when I use the synchronization command on the client, rsync tells me ERROR: module is read only If I change the value of read only to “no”, the client will automatically upload files…
0
votes
2 answers

Incremental backup qcow2 image with rsync

I use rsync to backup the qcow2 disks of my virtual machines. However, I would like to be able to get an incremental backup so that I don't have to copy the entire disk every time. for now I use rsync -hav --progress / source / target, the execution…
0
votes
1 answer

Rsync : Preserve date after copying

I have an issue with files attributes since I changed my company's file system from an old ubuntu 12 to a Synology NAS. I initially mounted NFS shares on my old file system, then with cp I copied everything, everything was ok But i forgot to…
Mmmax
  • 1
  • 1
0
votes
2 answers

Ansible synchronize module permissions failing

0 I wish to synchronize letsencrypt credentials from host S to Host D using an ansible task running on host H. My current task looks like this: - name: Synchronize local letsencrypt directory ansible.posix.synchronize: src: /etc/letsencrypt …
dubby
  • 1
  • 2
0
votes
0 answers

rsync-bpc: connection unexpectedly closed after 40GB have been received

After starting a backup it goes for some time before failing, which is what I'm finding hard to understand. I created a fresh test backup that worked flawlessly, it was just a couple of files, but for the whole drive it fails after a while, in this…
1 2 3
99
100