linux下配置subversion1.8和apache with https
2013年9月3日
没有评论
系统环境Centos6.4 64位操作系统,subversion1.8 ,apache http server V2.2,主机IP192.168.1.168
一.安装apr和apr-uti
cd /opt wget http://mirror.bit.edu.cn/apache//apr/apr-1.4.8.tar.gz tar zxvf apr-1.4.8.tar.gz cd apr-1.4.8 ./configure --prefix=/usr/local/apr make && make install echo "/usr/local/apr/lib/" >> /etc/ld.so.conf ldconfig
cd /opt wget http://mirrors.cnnic.cn/apache//apr/apr-util-1.5.2.tar.gz tar zxvf 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 echo "/usr/local/apr-util/lib" >> /etc/ld.so.conf ldconfig
二.安装sqlite3
阅读全文…