Start your new TeamForge site

Create the initial data, check your Apache configuration, and start your site.

  1. Set up the initial data for the site. (This is called "bootstrapping" the site.)
    • ./bootstrap-data.sh
  2. Update your Apache configuration, keeping the existing settings around in case you need to roll back any changes.
    1. Back up the existing Apache configuration file.
      • On Red Hat 5.4:
        • cd /etc/httpd/conf
        • cp httpd.conf httpd.conf.backup
      • On SuSE 11.x:
        • cd /etc/apache2
        • mv httpd.conf httpd.conf_old
        • cp httpd.conf.cn_new httpd.conf
    2. Review the new httpd.conf.cn_new or apache2 file that was created by the install process. This is an Apache web server configuration file that combines any existing web server configuration with directives specific to CollabNet TeamForge.
    3. When you are satisfied that the new configuration file meets all your networking requirements, rename it so it becomes the active version.
      • On Red Hat 5.4: mv httpd.conf.cn_new httpd.conf
      • On SuSE 11.x:
        • cd /etc/sysconfig/
        • mv apache2 apache2_old
        • cp apache2.cn_new apache2
  3. Start the application services.
    • /etc/init.d/httpd start
    • /etc/init.d/postgresql start
    • /etc/init.d/collabnet start
    Note: You can use the start command in two ways:
    • /etc/init.d/collabnet start starts the application server and integration servers. This is the default startup command.
    • /etc/init.d/collabnet start all also starts the database and the Apache server.
Your CollabNet TeamForge site is now up and running.