rsync+inotify实现数据的实时同步(2)

3,安装rsync服务端软件;
[root@GJB-UAT ~]# yum install rsync xinetd -y
Loaded plugins: fastestmirror
Determining fastest mirrors
 * base: mirrors.cn99.com
 * extras: mirrors.cn99.com
 * updates: mirrors.cn99.com
base                                                                                              | 3.7 kB    00:00     
extras                                                                                            | 3.4 kB    00:00     
updates                                                                                            | 3.4 kB    00:00     
updates/primary_db                                                                                | 4.3 MB    00:01     
Setting up Install Process
Resolving Dependencies
--> Running transaction check
---> Package rsync.x86_64 0:3.0.6-12.el6 will be installed
---> Package xinetd.x86_64 2:2.3.14-40.el6 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
==========================================================================================================================
 Package                    Arch                      Version                            Repository                Size
==========================================================================================================================
Installing:
 rsync                      x86_64                    3.0.6-12.el6                        base                    335 k
 xinetd                    x86_64                    2:2.3.14-40.el6                    base                    122 k
Transaction Summary
==========================================================================================================================
Install      2 Package(s)
Total download size: 457 k
Installed size: 942 k
Is this ok [y/N]: y
Downloading Packages:
(1/2): rsync-3.0.6-12.el6.x86_64.rpm                                                              | 335 kB    00:00     
(2/2): xinetd-2.3.14-40.el6.x86_64.rpm                                                            | 122 kB    00:00     
--------------------------------------------------------------------------------------------------------------------------
Total                                                                                    2.3 MB/s | 457 kB    00:00     
Running rpm_check_debug
Running Transaction Test
Transaction Test Succeeded
Running Transaction
  Installing : 2:xinetd-2.3.14-40.el6.x86_64                                                                          1/2
  Installing : rsync-3.0.6-12.el6.x86_64                                                                              2/2
  Verifying  : rsync-3.0.6-12.el6.x86_64                                                                              1/2
  Verifying  : 2:xinetd-2.3.14-40.el6.x86_64                                                                          2/2
Installed:
  rsync.x86_64 0:3.0.6-12.el6                                xinetd.x86_64 2:2.3.14-40.el6                               
Complete!
[root@GJB-UAT ~]# rpm -qa|grep rsync     
rsync-3.0.6-12.el6.x86_64
 
[root@GJB-UAT ~]# vim /etc/xinetd.d/rsync #####设置开机自启动 把disable=yes ,改成no
 
# default: off
# description: The rsync server is a good addition to an ftp server, as it \
#      allows crc checksumming etc.
service rsync
{
        disable = no
        flags          = IPv6
        socket_type    = stream
        wait            = no
        user            = root
        server          = /usr/bin/rsync
        server_args    = --daemon
        log_on_failure  += USERID
}

4,添加新用户和组并赋给相应的权限

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/954a8207f7a091983ec7a2dacacab2a1.html