orzdba这个工具是taobao开发的,是一个很不错的工具。orzdba工具下载,需要使用到svn进行下载。所以首先就要先安装svn工具。然而,svn的安装也是比较麻烦的,需要各种包进行支持。
环境:RHEL 6.4 x86_64
# yum install libserf libtool autoconf gcc libapr libapr-util *sqlite* libz libmagic apr-devel apr-util-devel perl-Class-Data-Inheritable.noarch
yum -y install expat-devel wget http://serf.googlecode.com/files/serf-1.2.1.tar.bz2 tar xjf serf-1.2.1.tar.bz2 cd serf-1.2.1 ./configure --prefix=/usr/local/serf make && make install
tar xvzf subversion-1.8.9.tar.gz unzip sqlite-amalgamation-3071501.zip -d ./subversion-1.8.9/ cd subversion-1.8.9/ mv sqlite-amalgamation-3071501 sqlite-amalgamation ./configure --with-serf=/usr/local/serf ## 1.8版本之前,使用neon,--with-neno=/usr/local/neon make && make install
# svn --version svn, version 1.8.9 (r1591380) compiled Aug 1 2014, 22:22:48 on x86_64-unknown-linux-gnu Copyright (C) 2014 The Apache Software Foundation. This software consists of contributions made by many people; see the NOTICE file for more information. Subversion is open source software, see http://subversion.apache.org/ The following repository access (RA) modules are available: * ra_svn : Module for accessing a repository using the svn network protocol. - with Cyrus SASL authentication - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme * ra_serf : Module for accessing a repository via WebDAV protocol using serf. - using serf 1.2.1 - handles 'http' scheme - handles 'https' scheme支持http、https,安装是OK的。
原文地址:http://blog.csdn.net/hw_libo/article/details/38348371