rsyncd本地备份
时间: 2023-10-13 11:00:54 浏览: 128
cwrsync 四步实现windows备份
你可以按照以下步骤来配置rsyncd:
1. 在服务器上安装rsync:
```
sudo apt-get install rsync
```
2. 创建一个配置文件,比如`rsyncd.conf`,并编辑它:
```
sudo nano /etc/rsyncd.conf
```
3. 在配置文件中添加以下内容:
```
uid = <rsync_user>
gid = <rsync_group>
[module_name]
path = /path/to/sync/directory
comment = My Rsync Module
read only = yes
list = yes
auth users = <username>
secrets file = /etc/rsyncd.secrets
```
其中:
阅读全文