Upgrade to TeamForge 17.4 - Git on a separate server

Three server setup with TeamForge, Git/Gerrit, and EventQ on separate servers. In this procedure, we'll assume that you are upgrading on the same server where your existing TeamForge 17.1 site is running. The following instructions are valid for both RHEL/CentOS 6.8/7.3 platforms. Specific steps, if applicable only for a particular RHEL/CentOS platform, are called out explicitly.

Before you begin:

Remember:

  • TeamForge 17.4 supports both RHEL/CentOS 6.8 and 7.3. See TeamForge installation requirements
  • For the ETL service to run as expected in a distributed TeamForge installation, all servers must have the same time zone.
  • While you can run both EventQ and TeamForge on the same server, CollabNet recommends such an approach only for testing purposes. It's always recommended to run EventQ on a separate server for optimal scalability. See EventQ installation requirements.
  • Installing or upgrading TeamForge needs root privileges. You must log on as root or use a root shell to install or upgrade TeamForge.
  • In a distributed setup, stop TeamForge services on all the servers while upgrading to TeamForge 17.4.
In this option, the following services run on the TeamForge Application Server (we call this server-01). The following service runs on the GIT Integration Server (we call this server-03). EventQ runs on a separate EventQ Server (server-02).

Do the following on the TeamForge Application Server - server-01

  1. Back up all your custom event handlers and remove all the event handler JAR files before starting your TeamForge 17.4 upgrade process.
    1. Go to My Workspace > Admin.
    2. Click System Tools from the Projects menu.
    3. Click Customizations.
    4. Select the custom event handler and click Delete.
      Important: Post upgrade, you can add custom event handlers again from the backup while making sure that you don't have SOAP50 (deprecated) library used.
  2. Uninstall hotfixes and add-ons, if any, installed on your site.
  3. If you have Review Board installed, uninstall it.
    • cd /opt/collabnet/RBInstaller-17.1.5
    • python ./install.py -u
  4. Stop the TeamForge CLI add-on.
    • service teamforge_cli_server stop
  5. Go to /var/run/cli/ and look for "server" file. If found, remove the "server" file.
    • cd /var/run/cli/
    • rm -rf /var/run/cli/server
  6. Stop TeamForge.
    If you are upgrading from TeamForge 16.7 or earlier releases:
    • /etc/init.d/collabnet stop all
    If you are upgrading from TeamForge 16.10 or later releases:
    • /opt/collabnet/teamforge/bin/teamforge stop
  7. Go to /opt/collabnet/teamforge/runtime/temp and look for .marker files. If found, remove the .marker files.
    • cd /opt/collabnet/teamforge/runtime/temp
    • rm -rf *.marker
  8. No backup is required for same hardware upgrades. However, you can create a backup as a precaution. See Back up and restore TeamForge and EventQ to learn more about backing up TeamForge and EventQ database and file system.
  9. Upgrade the operating system packages.
    • yum upgrade
  10. If the TeamForge server has SELinux enabled, run it in 'permissive' mode temporarily while installing or upgrading TeamForge.

    If you have SELinux in "enforcing" mode, you must either disable SELinux or switch to "permissive" mode (recommended) before running the /opt/collabnet/teamforge/bin/teamforge provision command. TeamForge create runtime fails otherwise.

    1. Verify if SELinux is running in enforcing mode.
      • getenforce
    2. If the output of the getenforce command is "permissive", continue with the next step. If not, run the following command to bring it to 'permissive' mode.
      • setenforce 0
  11. Configure your installation repository.
  12. Install the following application packages.
    1. To install the TeamForge application packages run the following command:
      • yum install teamforge
      Attention: TeamForge installer has been optimized quite a bit. It's likely that you might come across a lot of warning messages while upgrading from TeamForge 8.2 (or earlier) to TeamForge 17.4 on the same hardware (when you run the yum install teamforge command). You can safely ignore such warning messages and proceed with the upgrade.

      Run the following command to install the Binary application packages.

      • yum install cn-binary
  13. Set up your site's master configuration file.
  14. Deploy services.
    1. Move all backup files and folders including the error folder to /tmp.
      Note: This step is required to make sure that there are no backup files and folders present in /opt/collabnet/teamforge/var/james/var/mail/ to avoid any delay during provisioning.
      • cd /opt/collabnet/teamforge/var/james/var/mail/
      • mv * /tmp
    2. Run the TeamForge provision command.
      • /opt/collabnet/teamforge/bin/teamforge provision
    Note:

    The "provision" command prompts for response before it bootstraps or migrates data during TeamForge installation and upgrade respectively. Enter "Y" or "N" to proceed. For more information, see TeamForge script.

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

  15. Update the file permissions on your site's data.
    • /opt/collabnet/teamforge/runtime/scripts/fix_data_permissions.sh
    Note: This process can take a long time on sites with a lot of data.
  16. If you have CVS integrations, synchronize permissions post upgrade. See, Synchronize TeamForge source control integrations.
  17. Run the TeamForge post installation script. For more information, see post-install.py.
    1. Use the following command to run the post-install.py script.
      • /opt/collabnet/teamforge/runtime/scripts/post-install.py
      Note: Enter the 'gitadmin' user name and password when prompted.

Do this on the Git Integration Server - server-03

  1. Back up the Git file system data.
    1. Make an archive file with the following data directories.
      Tip: /tmp is just an example. You can use any directory or partition that you prefer.
      Directory Contents
      /gitroot Git source code repositories
      • cp -Rpfv /gitroot /tmp/gitbackup_dir
      • cp -Rpfv /opt/collabnet/gerrit/ /tmp/gitbackup_dir/gerrit
    2. Back up your SSH keys, if any.
  2. Upgrade the operating system packages.
    • yum upgrade
  3. If the TeamForge server has SELinux enabled, run it in 'permissive' mode temporarily while installing or upgrading TeamForge. TeamForge create runtime fails otherwise.
    1. Verify if SELinux is running in enforcing mode.
      • getenforce
    2. If the output of the getenforce command is either "Disabled" or "Permissive", SELinux is already disabled.
    3. If not disabled, run the following command to bring it to 'permissive' mode.
      • setenforce 0
  4. Configure your installation repository.
  5. Install the Git packages.
    • yum install teamforge-git
  6. Copy the site-options.conf file from server-01 and modify the token settings.
    1. TeamForge 16.7 and later versions support automatic JAVA_HOME configuration. Remove the JAVA_HOME token, if present, from the site-options.conf file.
    2. Configure the services and domain name tokens.
      server-03:SERVICES = gerrit gerrit-database
      server-03:PUBLIC_FQDN = my.git.domain.com
      server-01:SERVICES = ctfcore mail search codesearch ctfcore-database etl ctfcore-datamart subversion cvs binary binary-database reviewboard reviewboard-database
    3. Save the site-options.conf file.
  7. Deploy services.
    • /opt/collabnet/teamforge/bin/teamforge provision
    Note:

    The "provision" command prompts for response before it bootstraps or migrates data during TeamForge installation and upgrade respectively. Enter "y" or "N" to proceed. For more information, see the TeamForge script.

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

  8. Run the TeamForge post installation script. For more information, see post-install.py.
    1. Use the following command to run the post-install.py script.
      • /opt/collabnet/teamforge/runtime/scripts/post-install.py
      Note: Enter the 'gitadmin' user name and password when prompted.

Do this on the EventQ Server (server-02)

  1. Upgrade EventQ. See Upgrade EventQ.

Do the following on the TeamForge Application Server - server-01

  1. Verify TeamForge installation.
    1. Log on to the TeamForge web application using the default Admin credentials.
      • Username: "admin"
      • Password: "admin"
    2. If your site has custom branding, verify that your branding changes still work as intended. See Customize TeamForge .
    3. Let your site's users know they've been upgraded. See Create a Side-wide Broadcast.
  2. Remove the backup files, if any, after the TeamForge site is up and running as expected. Remove the repository and the file system backup from the /tmp/backup_dir directory.
TeamForge Avatar display issue on RHEL/CentOS 6.8
TeamForge Avatar image is not displayed properly post Review Board installation on RHEL/CentOS 6.8. Run the following commands to work around this issue:
  • yum erase python-imaging
  • yum install teamforge
  • service httpd restart