
rsync
向上攀登的菜鸡
人丑多看点书就行了
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Rsync常见错误
1.访问被拒绝,报错如下@ERROR: access denied to ngxlog from unknown (192.168.1.1)rsync error: error starting client-server protocol (code 5) at main.c(1649) [sender=3.1.2]原因: 是你的rsync sever端不允许192.168.1.1访问,一般出现这个问题的情况是你在rsyncd.conf添加了 allow host 参数,而你当前连原创 2020-07-09 12:06:27 · 5448 阅读 · 0 评论 -
rsync实现文件同步
#安装rsync配置rsync服务端#使用yum安装[root@test ~]# yum install rsync -y[root@test ~]# rsync --daemon #以守护进程方式启动[root@test ~]# ss -nalpt | grep 873 #rsync默认监听端口是873,看以下结果,表示873端口已经启动 LISTEN ...原创 2019-09-09 18:48:53 · 374 阅读 · 0 评论