db2 fixpack

时间:2020-04-16
本文章向大家介绍db2 fixpack,主要包括db2 fixpack使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

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 DB2DIR
where DB2DIR

is the location of the DB2 products that you want to update.

6 - Updating the instance

  1. For each instance, issue the command:
    DB2DIR/instance/db2iupdt iname
    where iname represents the instance name and DB2DIR represents the location where the DB2 copy is installed.
  2. If the DB2 Administration Server (DAS) belongs to the DB2 copy where you installed the fix pack, issue the command:
    DB2DIR/instance/dasupdt
    where DB2DIR is the location where the DB2 copy is installed. If this DB2 copy is now running at a more recent fix pack level than all of the other DB2 copies, consider updating the DAS to belong to this DB2 copy.

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!!!

原文地址:https://www.cnblogs.com/yaoyangding/p/12715848.html