Linux에서 rsync를 사용하고 있습니다. 다시 말하면 다음과 같은 오류가 표시됩니다.
sudo /etc/init.d/rsync restart
/etc/rsyncd.conf: line 13: [ftp]: command not found
/etc/rsyncd.conf: line 15: comment: command not found
/etc/rsyncd.conf: line 16: path: command not found
/etc/rsyncd.conf: line 17: use: command not found
/etc/rsyncd.conf: line 19: lock: command not found
/etc/rsyncd.conf: line 21: read: `=': not a valid identifier
/etc/rsyncd.conf: line 22: list: command not found
/etc/rsyncd.conf: line 23: uid: command not found
/etc/rsyncd.conf: line 24: gid: command not found
/etc/rsyncd.conf: line 31: strict: command not found
/etc/rsyncd.conf: line 34: ignore: command not found
/etc/rsyncd.conf: line 35: ignore: command not found
/etc/rsyncd.conf: line 36: transfer: command not found
timeout: invalid time interval `='
Try `timeout --help' for more information.
/etc/rsyncd.conf: line 39: refuse: command not found
/etc/rsyncd.conf: line 40: dont: command not found
/etc/rsync.conf
파일에서 에코 매개변수를 가져오는 것을 고려해야 한다는 것을 알고 있지만 이를 명령으로 해석합니다.
고쳐 쓰다
vim /etc/rsyncd.conf
# for pid file, do not use /var/run/rsync.pid if
# you are going to run rsync out of the init.d script.
# pid file=/var/run/rsyncd.pid
#syslog facility=daemon
#socket options=
# MODULE OPTIONS
[ftp]
comment = public archive
path = /var/www/pub
use chroot = yes
# max connections=10
lock file = /var/lock/rsyncd
# the default for read only is yes...
read only = yes
list = yes
uid = nobody
gid = nogroup
# exclude =
# exclude from =
# include =
# include from =
# auth users =
# secrets file = /etc/rsyncd.secrets
strict modes = yes
# hosts allow =
# hosts deny =
ignore errors = no
ignore nonreadable = yes
transfer logging = no
# log format = %t: host %h (%a) %o %f (%l bytes). Total %b bytes.
timeout = 600
refuse options = checksum dry-run
dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz
업데이트 2