Configuring your installation on IBM i

After successfully installing the Build System Toolkit and Jazz™ Team Server, complete these tasks to configure your installation.

Edit the following items in <JazzInstallDirectory>/jazz/server/conf/jazz/teamserver.properties. Be careful when editing the properties and .ini files. Use WordPad, Rational® Developer for Power Remote System Explorer, or EDTF to ensure that you correctly format the files.

  1. Replace jazzDBuser with your user ID, which must have the authority to create and write to a library on the system.
  2. Replace jazzDBpswd with your password.
    Note: Do not modify the entry password={password}.
  3. By default, Jazz Team Server will create and use the library JAZZREPO01 in QSYS.LIB as its repository. If you want to use a different library, uncomment the line (remove the pound sign) with com.ibm.team.repository.db.db2i.schema.name, and replace JAZZREPO01 with the name of the library you want to use. See the following example.
    Note: The com.ibm.team.repository.db.jdbc.location line has been wrapped in this example. In your code, that setting and the parameters should be on one line. Also, information about commenting lines can usually be ignored, as the relevant lines should already be commented out (or in).
    #
    # DB2i configuration 
    # 
    # Uncomment the following lines, customize the location to use DB2i
    com.ibm.team.repository.db.vendor = DB2i 
    com.ibm.team.repository.db.jdbc.location=//localhost;hold statements=true;
    		user=jazzDBuser;password={password};
    com.ibm.team.repository.db.jdbc.password=jazzDBpswd 
    com.ibm.team.repository.db.db2i.schema.name=MYREPO 
  4. OptionalRational Team Concert™ supports IBM® i local authentication and LDAP for security. If you are importing user profiles from LDAP to Jazz Team Server, add the following statement to teamserver.properties: com.ibm.team.repository.user.registry.type=LDAP.

Feedback