Install Review Board on a separate server

You must install the Review Board before you can make it available as an integrated application to project managers on your TeamForge site. You can install the Review Borad (including its database) on a separate server.

  • You can install Review Board while installing TeamForge. This procedure is for those who are installing the Review Board (application and database) on a separate server.
  • To install Review Board successfully, ensure that other repositories such as EPEL (Extra Packages for Enterprise Linux) are disabled apart from the CollabNet and Operating System repositories.
  • In this scenario, both TeamForge and Review Board use PostgreSQL.
  • TeamForge 17.11 supports Review Board 2.5.6.1 on RHEL/CentOS 6.9 and 7.4.
Attention: Installing or upgrading TeamForge needs root privileges. You must log on as root or use a root shell to install or upgrade TeamForge.

Do this on the TeamForge Application Server. We'll call this server-01

  1. Make sure that "reviewboard", "reviewboard-database" and "reviewboard-adapter" identifiers have been added to the SERVICES token as required.
    server-01:SERVICES = ctfcore mail search codesearch cliserver etl subversion cvs gerrit ctfcore-database ctfcore-datamart gerrit-database 
    binary binary-database reviewboard-adapter
    server-02:SERVICES = reviewboard reviewboard-database
  2. Provision services.
    • teamforge provision
    Note:

    TeamForge 17.4 (and later) installer expects the system locale to be LANG=en_US.UTF-8. TeamForge "provision" command fails otherwise.

Do this on the Review Board Server. We'll call this server-02

  1. Configure your TeamForge installation repository. If you have TeamForge installed, you should have the installation repository already configured.
  2. Install Review Board.
    • yum install CN-reviewboard
  3. Make sure that "reviewboard", "reviewboard-database" and "reviewboard-adapter" identifiers have been added to the SERVICES token as required.
    server-01:SERVICES = ctfcore mail search codesearch cliserver etl subversion cvs gerrit ctfcore-database ctfcore-datamart gerrit-database 
    binary binary-database reviewboard-adapter
    server-02:SERVICES = reviewboard reviewboard-database
  4. Provision services.
    • teamforge provision
    Note:

    TeamForge 17.4 (and later) installer expects the system locale to be LANG=en_US.UTF-8. TeamForge "provision" command fails otherwise.

  5. Run the install.py script available in the Review Board installer directory.
    • cd /opt/collabnet/RBInstaller-17.11
    • python ./install.py -i -r --auth-scmuser
    Attention: The Review Board installer pauses abruptly on sites using trusted certificates expecting user intervention. Press Enter to proceed with the installation/upgrade.
  6. Set up the initial Review Board data. Run the bootstrap-data.py script available in the Review Board installer directory.
    • cd /opt/collabnet/RBInstaller-17.11
    • python ./bootstrap-data.py
  7. Restart TeamForge.
    • teamforge restart
  8. If SCM is installed on a separate box, run the following script to authenticate a scmviewer user against a TeamForge Subversion repository for creating a new review request.
    • python ./svn-auth.py --repo-path=https://<scm_domain>/svn/repos/<repo_dir_name>
    You should now have a Review Board instance ready to work with TeamForge.
Note: Run the following scripts available in the Review Board installer directory.