Increasing the memory allocation for the Data server that is running on Linux

Increase the memory allocation for the Data server that is running on Linux®.

To increase the memory that is allocated for the Data server, complete the following steps:
  1. Log on as a user with root authority.
  2. Stop the Data server.
  3. From the command line, run the following command:
    /installation_dir/scripts/stopTPCData.sh
    Where installation_dir is the installation directory. The default directory is /opt/IBM/TPC.
  4. Using a text editor, open the /installation_dir/data/server/tpcdsrv1 file.
  5. Locate the following line:
    exec $JAVAEXE -Dsun.net.inetaddr.ttl=300 -Xrs -XmxXXXXm 
    -cp $CLASSPATH com.tivoli.itsrm.server.Server &
    
    Where XXXX is the memory that is allocated for the Data server. The default is 1024m (1024 MB).
  6. Increase the memory that is allocated for the Data server. For example, to increase the memory to 1536 MB, change the line to read as follows:
    exec $JAVAEXE -Dsun.net.inetaddr.ttl=300 -Xrs -Xmx1536m 
    -cp $CLASSPATH com.tivoli.itsrm.server.Server &
  7. Save the modified tpcdsrv1 file.
  8. Start the Data server by running the following command:
    /installation_dir/scripts/startTPCData.sh