I having an large amount of data (300GB) in an Linux server. Now, i want to transfer to another Linux server using the rsync over ssh. When i transferring the data it creating huge load in the server. May i know how to avoid the load in the server when transferring huge amount of data over ssh?
| |||
|
feedback
|
|
Use a weaker ssh cipher, (e.g. arcfour) like this:
There might be even weaker ciphers, but arcfour is my preferred one, since it's not the best trade-off between security and speed (in my case, search for cipher benchmarks, there are many around). | |||||
feedback
|
|
I found the solution to avoid the load in the server during the file between remote and local server by including ionice and nice command in rsync
| |||||
feedback
|
|
Or, if the load you're concerned with is CPU load and you have modern CPU with AES instructions (though it seems unlikely from your description), you can use Intel Accelerator Engine. There's To see if you have 'modern' CPU, use | |||||||
feedback
|