How to install fixpack on DB2
steps to install fixpack on DB2
Follow the steps below to upgrade your DB2 Databases installing the next fixpack:
1 - Download the appropriate fixpack
Use the link below to donwload your fixpack
http://www-01.ibm.com/support/docview.wss?rs=71&uid=swg27007053
2 - Stop all DB2 Process
Do the steps below to all instances
db2 force applications all db2 terminate db2stop db2licd -end # run at each physical partition . $HOME/das/dasprofile db2admin stop
3 - Disable the fault monitor processes:
Log on as root.
Locate where the db2fmcu command runs from by issuing the command:
ps -ef
For example, on AIX the db2fmcu command is run from DB2DIR/bin directory, where DB2DIR is the location where the DB2 copy is installed.
Switch to the directory indicated by the ps command.
- Disable the Fault Monitor Coordinator (FMC) by issuing the command:
db2fmcu -d
Note:
1. Since there is only one Fault Monitor Coordinator, this step affects all DB2 copies on the system.
2. After you apply the fix pack, the Fault Monitor Coordinator is reset so that the system's inittab file is again configured to include the FMC. If you do not want to use the FMC, you must reissue the above command after you have applied the fix pack.
- To stop the Fault Monitor Daemon, issue the command:
db2fm -i iname -D
4 - Clean up all DB2 interprocess
Ensure all DB2 interprocess communications are cleaned for the instance to be updated. As the instance owner, run the following command at each physical partition:
$HOME/sqllib/bin/ipclean
5 - Install the fix pack:
- Log on as root.
- Change to the directory that contains the fix pack image.
- Launch the installation by issuing the installFixPack command. For example,
./installFixPack -b DB2DIRwhere DB2DIR
is the location of the DB2 products that you want to update.
6 - Updating the instance
7 - Bind the bind file
- Start the instance
db2start
- Binding
db2 terminate db2 CONNECT TO dbname db2 BIND path\db2schema.bnd BLOCKING ALL GRANT PUBLIC SQLERROR CONTINUE db2 BIND path\@db2ubind.lst BLOCKING ALL GRANT PUBLIC ACTION ADD db2 BIND path\@db2cli.lst BLOCKING ALL GRANT PUBLIC ACTION ADD db2 terminate
8 - Check the db2diag.log
If you don see any errors, you can start to use your database upgraded!!!