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
Creating the file systems for non-MPP instances for DB2
To create a file system for non-MPP instances, you first create a disk group on the physically shared disk. You then create a volume of sufficient size within the disk group.
To create a file system for non-MPP instances on Linux
# vxdg init db2db_dg sdc
Deport and import the disk group:# vxdg deport db2db_dg # vxdg import db2db_dg
- Create a volume using the vxassist command:
# vxassist -g db2db_dg make db2db_vol 3g
- Create the file system:
# mkfs -t vxfs /dev/vx/dsk/db2db_dg/db2db_vol
- Create the mount point directory and mount the file system. Make sure that the mount point exists on all nodes in the cluster on the local file system - not on shared storage.
# mkdir /db2_mnt/db2inst1 # mount -t vxfs /dev/vx/dsk/db2db_dg/db2db_vol \ /db2_mnt/db2inst1