首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > CVS SVN >

Linux下使用Apache筹建SVN服务(二)

2014-01-09 
Linux下使用Apache搭建SVN服务(二)1. 查看是否安装:rpm -qa | grep apr 2. 卸载原有安装apr:rpm -e apr-0.

Linux下使用Apache搭建SVN服务(二)

1. 查看是否安装:rpm -qa | grep apr
2. 卸载原有安装apr:rpm -e apr-0.9.4-24.9 --nodeps
3. 编译安装:
?tar -xzf apr-1.4.8.tar.gz
?cd apr-1.4.8
?./configure --prefix=/usr/local/apr
?make
?make install?
3. “动态链接库”的配置:
?echo "/usr/local/apr/lib/" >> /etc/ld.so.conf?
?ldconfig

?

<2>. 安装apr-util:Linux下使用Apache筹建SVN服务(二)

1. 查看是否安装:rpm -qa | grep apr-util? ?[如果已经安装,则卸载原有安装:同上所示]
2. 编译安装:
?tar -xzf apr-util-1.5.2.tar.gz
?cd apr-util-1.5.2
?./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr/
?make
?make install?
3. “动态链接库”的配置:
?echo "/usr/local/apr-util/lib" >> /etc/ld.so.conf?
?ldconfig

?

<3>. 安装neon:Linux下使用Apache筹建SVN服务(二)
?1. 编译安装:
?tar -xzf neon-0.30.0.tar.gz
?cd neon-0.30.0
?./configure --prefix=/usr/local/neon --with-ssl=openssl
?make
?make install
?2. “动态链接库”的配置:
?echo "/usr/local/neon/lib" >> /etc/ld.so.conf
?ldconfig?

热点排行