Installing IBM DB2 8.1 Enterprise on Linux

Java Installation

The DB2 distribution comes with an RPM of the IBM Java SDK version 1.3.1. You can install it from the db2/linux/Java-1.3 directory of the distribution using rpm -i. It will install java into /opt/IBMJava2-131, so make sure to add /opt/IBMJava2-131/bin to your PATH environment variable if you want to use it.

If you already have a different version of Java installed, it may or may not work properly.

If you are running a kernel with Native Posix Threading Library support (such as on Redhat 9) and if you try to use a version of Sun's JRE or JDK older than version 1.3.1_09, you will need to run the following command first:

export LD_ASSUME_KERNEL=2.4.1

Note that Sun's JRE/JDK 1.3.1_09 and newer releases in the 1.3 series do not require this setting, but do not work either. I have been able to get Sun's JRE/JDK 1.4.2_04 to work and it does not require the setting.

DB2 Installation

IBM DB2 V8.1 was once available from the IBM website as a tarball. Extracting the tarball using tar xf creates a directory called 009_ESE_LNX_32_NLV. Change directories into that directory.

On Debian Linux edit the db2/linux/db2_install script and modify the line:


rpm -ivh ${INSTDEV?}/${pkg?}${RPMEXTN?} 2>&1 \

to read


rpm -ivh --nodeps ${INSTDEV?}/${pkg?}${RPMEXTN?} 2>&1 \

Run the db2_install script.

When prompted to specify a keyword, type DB2.ESE and press return.

When the script completes, run rpm -qa and verify that the following RPM's were installed:

IBM_db2icw81-8.1.0-0
IBM_db2repl81-8.1.0-0
IBM_db2dwcm81-8.1.0-0
IBM_db2dj81-8.1.0-0
IBM_db2icc81-8.1.0-0
IBM_db2icuc81-8.1.0-0
IBM_db2xmls81-8.1.0-0
IBM_db2jdbc81-8.1.0-0
IBM_db2djx81-8.1.0-0
IBM_db2msen81-8.1.0-0
IBM_db2conv81-8.1.0-0
IBM_db2icut81-8.1.0-0
IBM_db2chen81-8.1.0-0
IBM_db2cj81-8.1.0-0
IBM_db2inst81-8.1.0-0
IBM_db2ca81-8.1.0-0
IBM_db2crte81-8.1.0-0
IBM_db2smpl81-8.1.0-0
IBM_db2essg81-8.1.0-0
IBM_db2cliv81-8.1.0-0
IBM_db2secl81-8.1.0-0
IBM_db2jhen81-8.1.0-0
IBM_db2adt81-8.1.0-0
IBM_db2dc81-8.1.0-0
IBM_db2wbdb81-8.1.0-0
IBM_db2conn81-8.1.0-0
IBM_db2engn81-8.1.0-0
IBM_db2pext81-8.1.0-0
IBM_db2icms81-8.1.0-0
IBM_db2sesm81-8.1.0-0
IBM_db2adts81-8.1.0-0
IBM_db2xml81-8.1.0-0
IBM_db2rte81-8.1.0-0
IBM_db2inx81-8.1.0-0
IBM_db2cucs81-8.1.0-0
IBM_db2sp81-8.1.0-0
IBM_db2fs81-8.1.0-0
IBM_db2das81-8.1.0-0
IBM_db2cc81-8.1.0-0

Creating an Instance

A DB2 installation consists of an administration server and one or more instances. Each instance contains one or more databases. The administration server coordinates the instances. The administration server is owned by an OS-level user. Each instance is owned by a seperate OS-level user as well.

To create an instance and an administration server, run /opt/IBM/db2/V8.1/instance/db2isetup, a java-based installation program.

On the screen titled Welcome to the DB2 Instance Setup wizard, click Next

On the screen titled Set user information for the DB2 Administration Server, leave the defaults, enter a password into the Password and Confirm Password text boxes and click Next

On the screen titled Set up a DB2 instance, leave the default radio button checked (Create a DB2 instance) and click Next

On the screen titled Select how the instance will be used, leave the default radio button checked (Single-partition instance) and click Next

On the screen titled Set user information for the DB2 instance owner, leave the defaults, enter a password into the Password and Confirm Password text boxes and click Next

On the screen titled Set user information for the DB2 fenced user, leave the defaults, enter a password into the Password and Confirm Password text boxes and click Next

On the screen titled Configure DB2 instance TCP/IP communication, leave the default radio button checked (Configure), leave the default Service name and Port number and click Next

On the screen titled Set instance properties, leave the default Authentication type pulldown (Server), leave the default Startup box checked (Autostart the instance at system startup) and click Next

On the screen titled Prepare the DB2 tools catalog, click the radio button next to "Use a local database" and click Next

On the screen titled Specify a local database to store the DB2 tools catalog, leave the defaults then click Next

On the screen titled Set up the administration contact list, leave the defaults and click Next. (You may have to check and then uncheck the "Enable notification" button before Next is enabled)

A dialog will come up with a warning about not being able to send notifications until the smtp server has been specified. Click OK.

On the screen titled Specify a contact for health monitor notification, enter your Name and Email address and click Next.

On the screen titled Set up Informix data source support, click the check box next to "Defer this task until after installation is complete" and click Next.

On the screen titled Start copying files, click Finish.

A progress dialog will come up. When the process is finished, it will go away.

On the screen titled Setup is complete, click Finish.

Should you need to create additional DB2 instances, follow this procedure again using a different user name and skipping the steps pertaining to the Administration Server. The /opt/IBM/db2/V8.1/instance/db2ilist command lists all of the DB2 instances on the local computer.

If you need to drop an instance, run /opt/IBM/db2/V8.1/instance/db2idrop instancename, substituting the name of the instance you want to drop for instancename.

The /opt/IBM/db2/V8.1/instance/daslist command lists all of the DB2 administration servers on the local computer.

If you need to drop an administration server, run /opt/IBM/db2/V8.1/instance/dasdrop servername, substituting the name of the administration server you want to drop for servername.

Creating a Sample Database

To create a sample database, run the command /opt/ibm/db2/V8.1/bin/db2sampl.

Starting the Database at Boot Time

You can use the following script to start/stop the database at boot/shutdown time.


#!/bin/sh

case "$1" in
start)
/opt/IBM/db2/V8.1/instance/db2istrt
;;
stop)
/opt/IBM/db2/V8.1/instance/db2ishut
;;
*)
echo $"Usage: $0 {start|stop}"
exit 1
esac

exit 0

Install this script and run it with the "start" option to start up the database. Running it with the "stop" option shuts the database down. To access a database, it must be running.

This script will start the Administration Server. During instance configuration, there's a check box indicating whether the instance will be configured to start at boot time. If you didn't check it, to get each instance to start at boot time, you need to run the following command as root for each instance.

/opt/IBM/db2/V8.1/instance/db2iauto -on INSTANCE_USER

Where INSTANCE_USER is replaced by the username of the user associated with the instance you want to start at boot time.

If you want to disable instances from starting at boot time, you need to run the following command as root for each instance:

/opt/IBM/db2/V8.1/instance/db2iauto -off INSTANCE_USER