版本升级:

    1. [root@prod-lsynd-server-02 ~]# rpm -qa rsync
    2. rsync-3.0.9-18.el7.x86_64
    3. [root@prod-lsynd-server-02 ~]# cd /tmp/
    4. [root@prod-lsynd-server-02 tmp]# rz
    5. [root@prod-lsynd-server-02 tmp]# rpm -Uvh rsync-3.1.2-10.el7.x86_64.rpm
    6. warning: rsync-3.1.2-10.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
    7. Preparing... ################################# [100%]
    8. Updating / installing...
    9. 1:rsync-3.1.2-10.el7 ################################# [ 50%]
    10. Cleaning up / removing...
    11. 2:rsync-3.0.9-18.el7 ################################# [100%]
    12. [root@prod-lsynd-server-02 tmp]#
    13. [root@prod-lsynd-server-02 tmp]# rpm -qa rsync
    14. rsync-3.1.2-10.el7.x86_64
    15. [root@prod-lsynd-server-02 tmp]#

    内核优化

    1. echo "5000000000" >/proc/sys/fs/inotify/max_user_watches
    2. echo "10000000" >/proc/sys/fs/inotify/max_queued_events
    3. echo "8192" >/proc/sys/fs/inotify/max_user_instances

    安装软件:
    yum install rsync -y
    添加用户和同步密钥
    服务端账户+密码 客户端只需密码即可

    生产环境推送基础服务区、 基础服务区推送准生产
    172.16.4.59 - - 10.180.101.33
    172.16.4.65 - ————10.68.100.93—— - 10.180.101.36
    172.16.4.69 - - 10.180.101.39
    172.16.4.59:/data/tongdun/local/elasticsearch —— > 10.68.100.93:/data/tongdun-33/data
    10.68.100.93:/data/tongdun-33/data —— > 10.180.101.33:/data/tongdun/local/elasticsearch
    手动测试:
    rsync -vlzrtopg —progress —delete /data/tongdun/local/elasticsearch rsync_bakup@10.68.100.93::bakup-33 —password-file=/etc/rsyncd.password

    修改配置文件:

    1. [root@prod-lsynd-server-02 ~]# cat /etc/rsyncd.conf
    2. uid = boccfc
    3. gid = boccfc
    4. port = 873
    5. use chroot = true
    6. max connections = 200
    7. timeout = 120
    8. pid file = /var/run/rsyncd.pid
    9. lock file = /var/run/rsyncd.lock
    10. log file = /var/log/rsyncd.log
    11. [bakup-33]
    12. path = /data/tongdun-33
    13. read only = false
    14. list = false
    15. hosts allow = 10.68.100.0/24
    16. hosts deny = 0.0.0.0/32
    17. auth users = rsync_bakup
    18. secrets file = /etc/rsyncd.password
    19. [root@prod-lsynd-server-02 ~]#
    20. #####
    21. [root@prod-lsynd-server-02 ~]# cat /etc/rsyncd.password
    22. 123456
    23. [root@prod-lsynd-server-02 ~]#
    24. 目录监控:

    10.68.100.93

    1. [root@prod-lsync-server01 ~]# cat /etc/rsyncd.conf
    2. uid = boccfc
    3. gid = boccfc
    4. port = 873
    5. use chroot = true
    6. max connections = 200
    7. timeout = 120
    8. pid file = /var/run/rsyncd.pid
    9. lock file = /var/run/rsyncd.lock
    10. log file = /var/log/rsyncd.log
    11. [bakup-33]
    12. path = /data/tongdun-33/data
    13. read only = false
    14. list = false
    15. hosts allow = 10.180.101.0/24
    16. hosts deny = 0.0.0.0/32
    17. auth users = rsync_bakup
    18. secrets file = /etc/rsyncd.password
    19. [bakup-36]
    20. path = /data/tongdun-36/data
    21. read only = false
    22. list = false
    23. hosts allow = 10.180.101.0/24
    24. hosts deny = 0.0.0.0/32
    25. auth users = rsync_bakup-36
    26. secrets file = /etc/rsyncd.password
    27. [bakup-39]
    28. path = /data/tongdun-39/data
    29. read only = false
    30. list = false
    31. hosts allow = 10.180.101.0/24
    32. hosts deny = 0.0.0.0/32
    33. auth users = rsync_bakup-39
    34. secrets file = /etc/rsyncd.password
    35. [root@prod-lsync-server01 ~]#
    36. ######
    37. [root@prod-lsync-server01 ~]# cat /etc/rsyncd.password
    38. 123456
    39. rsync_bakup:123456
    40. [root@prod-lsync-server01 ~]#
    41. 目录监控:
    42. [root@prod-lsync-server01 ~]# cat /etc/lsyncd.conf
    43. settings {
    44. logfile = "/var/log/lsyncd/lsyncd.log",
    45. statusFile = "/var/log/lsyncd/lsyncd.status",
    46. inotifyMode = "CloseWrite",
    47. maxProcesses = 8,
    48. }
    49. sync {
    50. default.rsync,
    51. source = "/data/tongdun-33",
    52. target = "rsync_bakup@10.180.101.33::bakup-33",
    53. delete="running",
    54. exclude = { ".*", ".tmp" },
    55. delay = 5,
    56. init = false,
    57. rsync = {
    58. binary = "/usr/bin/rsync",
    59. archive = true,
    60. compress = true,
    61. verbose = true,
    62. owner = true,
    63. perms = true,
    64. password_file = "/etc/rsyncd.password",
    65. _extra = {"--bwlimit=200"}
    66. }
    67. }
    68. sync {
    69. default.rsync,
    70. source = "/data/tongdun-36",
    71. target = "rsync_bakup-36@10.180.101.36::bakup-36",
    72. delete="running",
    73. exclude = { ".*", ".tmp" },
    74. delay = 5,
    75. init = false,
    76. rsync = {
    77. binary = "/usr/bin/rsync",
    78. archive = true,
    79. compress = true,
    80. verbose = true,
    81. owner = true,
    82. perms = true,
    83. password_file = "/etc/rsyncd.password",
    84. _extra = {"--bwlimit=200"}
    85. }
    86. }
    87. sync {
    88. default.rsync,
    89. source = "/data/tongdun-39",
    90. target = "rsync_bakup-39@10.180.101.39::bakup-39",
    91. delete="running",
    92. exclude = { ".*", ".tmp" },
    93. delay = 5,
    94. init = false,
    95. rsync = {
    96. binary = "/usr/bin/rsync",
    97. archive = true,
    98. compress = true,
    99. verbose = true,
    100. owner = true,
    101. perms = true,
    102. password_file = "/etc/rsyncd.password",
    103. _extra = {"--bwlimit=200"}
    104. }
    105. }
    106. [root@prod-lsync-server01 ~]#

    10.180.101.33

    1. [root@td-stage-app13 ~]# cat /etc/rsyncd.conf
    2. uid = boccfc
    3. gid = boccfc
    4. port = 873
    5. use chroot = true
    6. max connections = 200
    7. timeout = 120
    8. pid file = /var/run/rsyncd.pid
    9. lock file = /var/run/rsyncd.lock
    10. log file = /var/log/rsyncd.log
    11. [bakup-33]
    12. path = /data/tongdun/local/elasticsearch
    13. read only = false
    14. list = false
    15. hosts allow = 10.180.101.0/24
    16. hosts deny = 0.0.0.0/32
    17. auth users = rsync_bakup
    18. secrets file = /etc/rsyncd.password
    19. [root@td-stage-app13 ~]#
    20. ####
    21. [root@td-stage-app13 ~]# cat /etc/rsyncd.password
    22. rsync_bakup:123456
    23. [root@td-stage-app13 ~]#

    部署 lsrync 调取rsync同步数据
    10.68.100.93

    1. [chroot@prod-lsync-server01 ~]$ cat /etc/lsyncd.conf
    2. settings {
    3. logfile = "/var/log/lsyncd/lsyncd.log",
    4. statusFile = "/var/log/lsyncd/lsyncd.status",
    5. inotifyMode = "CloseWrite",
    6. maxProcesses = 8,
    7. }
    8. sync {
    9. default.rsync,
    10. source = "/data/tongdun-33",
    11. target = "rsync_bakup@10.180.101.33::bakup-33",
    12. delete="running",
    13. exclude = { ".*", ".tmp" },
    14. delay = 5,
    15. init = false,
    16. rsync = {
    17. binary = "/usr/bin/rsync",
    18. archive = true,
    19. compress = true,
    20. verbose = true,
    21. owner = true,
    22. perms = true,
    23. password_file = "/etc/rsyncd.password",
    24. _extra = {"--bwlimit=200"}
    25. }
    26. }
    27. sync {
    28. default.rsync,
    29. source = "/data/tongdun-36",
    30. target = "rsync_bakup-36@10.180.101.36::bakup-36",
    31. delete="running",
    32. exclude = { ".*", ".tmp" },
    33. delay = 5,
    34. init = false,
    35. rsync = {
    36. binary = "/usr/bin/rsync",
    37. archive = true,
    38. compress = true,
    39. verbose = true,
    40. owner = true,
    41. perms = true,
    42. password_file = "/etc/rsyncd.password",
    43. _extra = {"--bwlimit=200"}
    44. }
    45. }
    46. sync {
    47. default.rsync,
    48. source = "/data/tongdun-39",
    49. target = "rsync_bakup-39@10.180.101.39::bakup-39",
    50. delete="running",
    51. exclude = { ".*", ".tmp" },
    52. delay = 5,
    53. init = false,
    54. rsync = {
    55. binary = "/usr/bin/rsync",
    56. archive = true,
    57. compress = true,
    58. verbose = true,
    59. owner = true,
    60. perms = true,
    61. password_file = "/etc/rsyncd.password",
    62. _extra = {"--bwlimit=200"}
    63. }
    64. }
    65. [chroot@prod-lsync-server01 ~]$