Please enter search query.
Search <book_title>...
Cluster Server 7.4.2 Agent for DB2 Installation and Configuration Guide - Linux
Last Published:
2020-06-14
Product(s):
InfoScale & Storage Foundation (7.4.2)
Platform: Linux
- Introducing the Cluster Server Agent for DB2
- About agent functions for VCS Agent for DB2
- About IMF Integration functions for VCS Agent for DB2
- Installing and configuring DB2
- VCS requirements for installing DB2
- Setting up the DB2 configuration
- Installing and removing the Cluster Server Agent for DB2
- Configuring VCS service groups for DB2
- About DB2 configurations in VCS
- Before configuring the service group for DB2
- Configuring the VCS Agent for DB2 from Cluster Manager (Java Console)
- Configuring the VCS Agent for DB2 by editing the main.cf file
- Setting up in-depth monitoring of a DB2 instance
- Administering VCS service groups for DB2
- Appendix A. Troubleshooting Cluster Server Agent for DB2
- Appendix B. Resource type information for Cluster Server Agent for DB2
- Appendix C. Resource type attributes for DB2
- Appendix D. Sample configurations
Non-MPP main.cf configuration for VCS agent for DB2 on Linux
The following main.cf configuration file reflects DB2 UDB in an ESE multi-partition instance SMP environment.
include "types.cf" include "Db2udbTypes.cf" cluster vcs ( CounterInterval = 5 ) system vcstc1 ( CPUUsageMonitoring = { Enabled = 0, ActionThreshold = 0, ActionTimeLimit = 0, Action = NONE, NotifyThreshold = 0, NotifyTimeLimit = 0 } ) system vcstc2 ( CPUUsageMonitoring = { Enabled = 0, ActionThreshold = 0, ActionTimeLimit = 0, Action = NONE, NotifyThreshold = 0, NotifyTimeLimit = 0 } ) group db2udb_grp1 ( SystemList = { vcstc1= 0, vcstc2 = 1 } AutoStartList = { vcstc1 } ) Db2udb db2udb1 ( DB2InstOwner = db2inst1 DB2InstHome = "/db2inst1" IndepthMonitor = 1 DatabaseName = SAMPLE NodeNumber = 0 ) Db2udb db2udb2 ( DB2InstOwner = db2inst1 DB2InstHome = "/db2inst1" IndepthMonitor = 0 NodeNumber = 1 ) DiskGroup db2udb_dg1 ( DiskGroup = db2_dg1 ) IP db2udb_ip1 ( Device = eth0 Address = "166.98.9.163" NetMask = "255.255.252.0" ) Mount db2udb_mnt1 ( MountPoint = "/db2inst1" BlockDevice = "/dev/vx/dsk/db2_dg1/inst1_vol" FSType = vxfs MountOpt = rw FsckOpt = "-n" ) NIC db2udb_nic1 ( Device = eth0 ) Volume db2udb_vol1 ( Volume = inst1_vol DiskGroup = db2_dg1 ) db2udb1 requires db2udb_ip1 db2udb1 requires db2udb_mnt1 db2udb2 requires db2udb_ip1 db2udb2 requires db2udb_mnt1 db2udb_ip1 requires db2udb_nic1 db2udb_mnt1 requires db2udb_vol1 db2udb_vol1 requires db2udb_dg1 // resource dependency tree // // group db2udb_grp1 // { // Db2udb db2udb1 // { // IP db2udb_ip1 // { // NIC db2udb_nic1 // } // Mount db2udb_mnt1 // { // Volume db2udb_vol1 // { // DiskGroup db2udb_dg1 // } // } // } // Db2udb db2udb2 // { // IP db2udb_ip1 // { // NIC db2udb_nic1 // } // Mount db2udb_mnt1 // { // Volume db2udb_vol1 // { // DiskGroup db2udb_dg1 // } // } // } // }