Installing the Subversion Connector for SuSE 11
Platform Notice: Data Center Only - This article only applies to Atlassian products on the Data Center platform.
Note that this KB was created for the Data Center version of the product. Data Center KBs for non-Data-Center-specific features may also work for Server versions of the product, however they have not been tested. Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Except Fisheye and Crucible
Summary
SeSE is not one of the operating systems tested with the Crowd Apache/Subversion Connector version 1.3. However, by compiling the source code, you can install it in this OS taking the steps listed below:
Solution
Resolution
1. Install the following RPMs
1
2
3
4
5
6
7
8
9
10
perl-Error
perl-HTTPS
perl-IO-Socket-SSL
perl-IO-stringy
perl-MailTools
perl-MIME-Lite
perl-MIME-tools
perl-Net-SSLeay
perl-SOAP-Lite
These RPMs don't seem to be available in the SuSE repositories, so download the OpenSuSE 11 versions from:
Another required dependency is the Cache::Cache
module. OpenSuSE does not seem to have it's RPM, so install it from CPAN, using the following command:
1
2
3
4
5
6
7
wget http://search.cpan.org/CPAN/authors/id/J/JS/JSWARTZ/Cache-Cache-1.06.tar.gz
tar xvf Cache-Cache-1.06.tar.gz
cd Cache-Cache-1.06/
perl Makefile.PL
make test
make install
Then, install the Crowd Connector modules (from here):
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
unzip TARS.zip
tar xzf Atlassian-Crowd-1.3.tar.gz
tar xzf Apache-CrowdAuthz-1.3.tar.gz
tar xzf Apache-CrowdAuth-1.3.tar.gz
cd Atlassian-Crowd-1.3
perl Makefile.PL
make
make install
cd ../Apache-CrowdAuth-1.3
perl Makefile.PL
make
make install
cd ../Apache-CrowdAuthz-1.3
perl Makefile.PL
make
make install
Was this helpful?