We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For instance:
# db-03 tar -cf - -C /var/lib/mysql . | pv | nc -q 10 -l -p 9000;
# db-04 mv /var/lib/mysql /var/lib/mysql_; mkdir /var/lib/mysql; nc -w 10 10.0.0.80 9000 | pv | tar -C /var/lib/mysql/ -xvf -;
Performance of netcat is way better than rsync (over ssh)
netcat
rsync
ssh
The text was updated successfully, but these errors were encountered:
tersmitten
No branches or pull requests
For instance:
Performance of
netcat
is way better thanrsync
(overssh
)The text was updated successfully, but these errors were encountered: