subversion-1.8.9源碼安裝,讓其支援http/https更新

來源:互聯網
上載者:User

subversion-1.8.9源碼安裝,讓其支援http/https更新
因項目需要用到svn,通過yum源安裝的版本較低且涉及安全性漏洞問題,故用源碼編譯安裝,並讓其支援http/https連結更新
軟體包為:
apr-1.5.1
apr-util-1.5.3
expat-2.1.0
zlib-1.2.8
httpd-2.2.27
scons-2.3.0-1.noarch.rpm+serf-1.3.3 (支援http/https的模組)
sqlite-autoconf-3080500+sqlite-amalgamation-3080500+subversion-1.8.9

#!/bin/bash
# Create Subversion Environment & Create Subversion User/Group
groupadd -r svn && useradd -r -g svn -s /sbin/nologin -M svn
# Install Arp-1.5.1
cd /opt/svn && tar xf apr-1.5.1.tar.gz && cd apr-1.5.1 && ./configure --prefix=/usr/local/apr && make && make install
# Install Arp-util-1.5.3
cd /opt/svn && tar xf apr-util-1.5.3.tar.gz && cd apr-util-1.5.3 && ./configure --prefix=/usr/local/apr-util --with-apr=/usr/local/apr && make && make install
# Install Expat-2.1.0
cd /opt/svn && tar xf expat-2.1.0.tar.gz && cd expat-2.1.0 && ./configure --prefix=/usr/local/expat && make && make install
# Install Zlib-1.2.8
cd /opt/svn && tar xf zlib-1.2.8.tar.gz && cd zlib-1.2.8 && ./configure --shared && make && make install
# Install Httpd-2.2.27 & Refresh System Dynamic Library
cd /opt/svn && tar xf httpd-2.2.27.tar.gz && cd httpd-2.2.27 && ./configure --prefix=/usr/local/apache --enable-dav --enable-dav-fs --enable-so --enable-modules=so --enable-maintainer-mode --enable-rewrite --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-included-apr && make && make install && echo "/usr/local/lib" >> /etc/ld.so.conf && ldconfig
# Install Scons-2.3.0-1 & Serf-1.3.3
cd /opt/svn && rpm -ivh scons-2.3.0-1.noarch.rpm && tar xf serf-1.3.3.tar.bz2 && cd serf-1.3.3 && scons PREFIX=/usr/local/serf APR=/usr/local/apache/bin/apr-1-config APU=/usr/local/apache/bin/apu-1-config install
# Install Sqlite-autoconf-3080500
cd /opt/svn && tar xf sqlite-autoconf-3080500.tar.gz && cd sqlite-autoconf-3080500 && ./configure --prefix=/usr/local/sqlite && make && make install
# Install Sqlite-amalgamation-3080500
cd /opt/svn && mkdir -p /opt/svn/subversion-1.8.9/sqlite-amalgamation/ && unzip sqlite-amalgamation-3080500.zip && cd sqlite-amalgamation-3080500 && \cp -a ./ sqlite3.c /opt/svn/subversion-1.8.9/sqlite-amalgamation/
# Install Subversion-1.8.9 & Refresh System Dynamic Library
cd /opt/svn && tar xf subversion-1.8.9.tar.gz && cd subversion-1.8.9 && ./configure --prefix=/usr/local/subversion --with-apxs=/usr/local/apache/bin/apxs --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util --with-sqlite=/usr/local/sqlite --with-zlib --enable-maintainer-mode --with-serf=/usr/local/serf && make && make install && echo "/usr/local/serf/lib" >> /etc/ld.so.conf && echo "/usr/local/subversion/lib" >> /etc/ld.so.conf && ldconfig && ln -s /usr/local/subversion/bin/svn /usr/bin/svn

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.