双向同步软件Unison的安装与配置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了双向同步软件Unison的安装与配置相关的知识,希望对你有一定的参考价值。

一、Unison简介
Unison是Windows、Linux以及其他Unix平台下都可以使用的文件同步工具,它能使两个文件夹(本地或网络上的)保持内容的一致。Unison拥有与其它一些同步工具或文件系统的相同的特性,但也有自身的特点:
1.跨平台使用;
2.对内核和用户权限没有特别要求;
3.Unison是双向的,它能自动处理两分拷贝中更新没有冲突的部分,有冲突的部分将会显示出来让用户选择更新策略;
4.只要是能连通的两台主机,就可以运行unison,可以直接使用socket连接或安全的ssh连接方式,对带宽的要求不高,使用类似rsync的压缩传输协议。
5. Unison实时双向同步的配置不太好做,而且双向同步本身就是不靠谱的,很容易发生混乱。


server1

192.168.137.61

centos6.5

server2

192.168.137.102

centos6.5

关闭防火墙和selinux

reboot  重启服务器


二、编译安装Unison(只在一台服务器上安装ocaml、unison即可)

Linux下通过源码包编译安装Unison时,需要用到Objective Caml compiler。
通过以下方式安装

                              yum  install gcc gcc-c++ cmake openssh-server openssh-client    两台都运行这条命令~

[[email protected] ~]# wget http://caml.inria.fr/pub/distrib/ocaml-3.12/ocaml-3.12.0.tar.gz
[[email protected] ~]# tar -xzvf ocaml-3.12.0.tar.gz
[[email protected] ~]# cd ocaml-3.12.0
[[email protected] ocaml-3.12.0]# ./configure
[[email protected] ocaml-3.12.0]# make world opt
[[email protected] ocaml-3.12.0]# make install


编译安装Unison 

                                 cd ~
[[email protected] ~]# wget http://www.seas.upenn.edu/~bcpierce/unison//download/releases/unison-2.40.63/unison-2.40.63.tar.gz

[[email protected] ~]# tar -xzvf unison-2.40.63.tar.gz
[[email protected] ~]# cd unison-2.40.63
[[email protected] unison-2.40.63]# make UISTYLE=text THREADS=true STATIC=true            
[[email protected] unison-2.40.63]# make install


在执行make install的过程中,可能会出现以下错误提示:
mv: cannot stat ‘/root/bin//unison‘: No such file or directory
make: [doinstall] Error 1 (ignored)
cp unison /root/bin/
cp: cannot create regular file ‘/root/bin/‘: Is a directory
make: *** [doinstall] Error 1


出现错误的原因在与Unison默认是将文件Copy到/root/bin目录,但Linux默认是没有该目录的,因此我们需要将生成的可执行文件unison复制到系统的PATH目录。
[[email protected] unison-2.40.63]# cp unison /usr/local/bin


将可执行文件unison上传到远程主机(假设server2主机IP为192.168.137.102)
[[email protected] unison-2.40.63]# scp unison [email protected]192.168.137.102:/root/


通过SSH登陆到远程主机,再将unison复制到server2的PATH目录


[[email protected]server2 ~]#cp unison /usr/local/bin


三、配置ssh key信任
建议通过普通用户进行操作,理由是通过root操作本身就危险,免密码登陆的root就更危险了。


在两台服务器上创建unison用户
[[email protected] ~]# useradd -m unison
[[email protected] ~]# passwd unison


[[email protected] ~]# useradd -m unison
[[email protected] ~]# passwd unison


在server1上创建key并配置server2的信任
[[email protected] ~]# su  unison

                                 cd  ~
[[email protected] ~]$ ssh-keygen -t rsa
在提示保存私钥(key)和公钥(public key)的位置时,使用默认值;
在提示是否需要私钥密码(passphrase)时,直接敲回车,即不使用私钥密码。
之后,将生成一对密钥,id_rsa(私钥文件)和id_rsa.pub(公钥文件),保存在/home/unison/.ssh/目录下。


将公钥添加到server2的 authorized_keys 文件中
将文件上传到server2(假设server2主机IP为192.168.137.102
[[email protected] ~]$ scp ~/.ssh/id_rsa.pub [email protected]192.168.137.102:/home/unison/


使用rsync用户SSH到登陆到远程主机server2 ,并将公钥添加到 authorized_keys 文件中

                                  su  unison

                                  cd ~
[[email protected]server2 ~]$ mkdir .ssh
[[email protected] ~]$ chmod 700 .ssh
[[email protected] ~]$ mv ~/id_rsa.pub ~/.ssh/authorized_keys


同理,执行以下步骤在server2上创建key并配置server1的信任

[[email protected] ~]$ ssh-keygen -t rsa

                                   

将文件上传到server1(假设server1主机IP为192.168.137.61
[[email protected] ~]$ scp ~/.ssh/id_rsa.pub [email protected]192.168.137.61:/home/unison/


使用rsync用户SSH到登陆到server1,并将公钥添加到 authorized_keys 文件中
[unison@server1 ~]$ mv ~/id_rsa.pub ~/.ssh/authorized_keys


重启SSH服务

                               su root
[[email protected] ~]# /etc/init.d/sshd restart


[[email protected] ~]# /etc/init.d/sshd restart


四、Unison的配置与使用
在两台服务器上创建test目录,用于测试
[[email protected] ~]# su  unison

                                   cd ~
[[email protected] ~]$ mkdir test


[[email protected] ~]# su unison

                                  cd ~
[[email protected] ~]$ mkdir test


在两台服务器上分别执行一次unison,如果出现提示确认,则直接敲回车选择默认值  
[[email protected] ~]$ unison /home/unison/test/ ssh://[email protected]//home/unison/test/



[[email protected] ~]$ unison /home/unison/test/ ssh://[email protected]//home/unison/test/



修改两台服务器的unison配置文件,输入以下内容
[[email protected]server1 ~]$ vim /home/root/.unison/default.prf


#Unison preferences file
root = /home/unison/test
root = ssh://[email protected]192.168.137.102//home/unison/test/
#force =
#ignore =
batch = true
#repeat = 1
#retry = 3
owner = true
group = true
perms = -1
fastcheck = false
rsync = false
sshargs = -C
xferbycopying = true
log = true
logfile = /home/unison/.unison/unison.log



[[email protected]server2 ~]$ vim /home/unison/.unison/default.prf


#Unison preferences file
root = /home/unison/test
root = ssh://[email protected]192.168.137.61//home/unison/test/
#force =
#ignore =
batch = true
#repeat = 1
#retry = 3
owner = true
group = true
perms = -1
fastcheck = false
rsync = false
sshargs = -C
xferbycopying = true
log = true
logfile = /home/unison/.unison/unison.log


相关注解如下:
force表示会以本地所指定文件夹为标准,将该目录同步到远端。这里需要注意,如果指定了force参数,那么Unison就变成了单项同步了,也就是说会以force指定的文件夹为准进行同步,类似与rsync。
Unison双向同步基本原理是:假如有A B两个文件夹,A文件夹把自己的改动同步到B,B文件夹也把自己的改动同步到A,最后A B两文件夹的内容相同,是AB文件夹的合集。
Unison双向同步的一个缺点是,对于一个文件在两个同步文件夹中都被修改时,unison是不会去同步的,因为unison无法判断以那个为准。
ignore = Path表示忽略指定目录,即同步时不同步它。
batch = true,表示全自动模式,接受缺省动作,并执行。
-fastcheck true 表示同步时仅通过文件的创建时间来比较,如果选项为false,Unison则将比较两地文件的内容。
log = true 表示在终端输出运行信息。
logfile 指定输出的log文件。


另外,Unison有很多参数,这里仅介绍常用的几个,详细的请参看Unison手册。
-auto //接受缺省的动作,然后等待用户确认是否执行。
-batch //batch mode, 全自动模式,接受缺省动作,并执行。
-ignore xxx //增加 xxx 到忽略列表中
-ignorecase [true|false|default] //是否忽略文件名大小写
-follow xxx //是否支持对符号连接指向内容的同步
owner = true //保持同步过来的文件属主
group = true //保持同步过来的文件组信息
perms = -1 //保持同步过来的文件读写权限
repeat = 1 //间隔1秒后,开始新的一次同步检查
retry = 3 //失败重试
sshargs = -C //使用ssh的压缩传输方式
xferbycopying = true"
-immutable xxx //不变目录,扫描时可以忽略
-silent //安静模式
-times //同步修改时间
-path xxx 参数 //只同步 -path 参数指定的子目录以及文件,而非整个目录,-path 可以多次出现。


PS:Windows下的unison配置文件默认位于C:\Documents and Settings\currentuser\.unison目录,默认的配置文件名是default.prf。



五、测试
首先分别在server1与server2的/home/unison/test目录下创建文件或目录,然后在server1上执行unison,接着如果在server1与server2上都能看到各自创建的文件,就说明同步成功。


分别在server1与server2上创建文件
[[email protected] ~]$ cd test
[[email protected] test]$ touch 1.txt touch 3.txt


[[email protected] ~]$ cd test
[[email protected] test]$ touch 2.txt touch 4.txt


在server1上执行unison
[[email protected] ~]$ unison


在server1与server2上查看文件是否同步
[[email protected] ~]$ cd test
[[email protected] test]$ ls
1.txt 2.txt 3.txt 4.txt


[[email protected] ~]$ cd test
[[email protected] test]$ ls
1.txt 2.txt 3.txt 4.txt


均看到了“1.txt 2.txt 3.txt 4.txt”所有文件,说明文件同步已经成功!


注意:第一次SSH连接的时候可能需要输入一次密码,之后就不需要输入了。





本文出自 “小牛---xmlgrg” 博客,请务必保留此出处http://xmlgrg.blog.51cto.com/10467412/1792167

以上是关于双向同步软件Unison的安装与配置的主要内容,如果未能解决你的问题,请参考以下文章

linux环境下Unison文件双向同步配置

unison与fswatch文件同步

unison与fswatch文件同步

unison与fswatch文件同步

unison与fswatch文件同步

unison做文件双向同步