Lsyncd 2.2.2 소유권 및 권한 문제(rsync, centos 7)

Lsyncd 2.2.2 소유권 및 권한 문제(rsync, centos 7)

원격 서버에 파일을 복사했는데 대상 서버에 복사된 파일의 소유자/그룹이 항상 "1002"인 문제가 있습니다. 소스의 권한이 존중되고 대상에 올바르게 복제됩니다. 복사된 파일의 소유자(및 그룹)를 보존하는 방법을 찾을 수 없습니다.

Lsyncd 버전: 2.2.2

내 설정은 다음과 같습니다.

settings {
    logfile = "/var/log/lsyncd/lsyncd.log",
    statusFile = "/var/log/lsyncd/lsyncd.status"
}

sync {
    default.rsyncssh,
    source="/home",
    host="1*52.*.15",
    targetdir="/home/",
    delete = "running", -- prevents deletion of files on startup (ie when a server comes back online, don't delete files that are new on the backup)
    delay = 5, -- run every 5 seconds instead of default 20
    exclude = {
        "/home/backup",
    },
    rsync = {
        archive = true, -- use the archive flag in rsync
        perms = true, -- Keep the permissions
        owner = true, -- Keep the owner
        compress = true,
        acls = true,
            xattrs = true,
        _extra = {"-a"}, -- Sometimes permissions and owners isn't copied correctly so the _extra can be used for any flag in rsync
    }
}

관련 정보