Please enter search query.
Search <book_title>...
InfoScale™ 9.0 Cluster Server Agent for DB2 Installation and Configuration Guide - AIX
Last Published:
2025-04-14
Product(s):
InfoScale & Storage Foundation (9.0)
Platform: AIX
- 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 shared file systems for MPP instances for DB2
Install the Storage Foundation Cluster File System software. To create a shared file system for MPP instances, create a shared disk group on the physically shared disk. You then create a volume of sufficient size within the disk group.
To create a shared file system for MPP instances on AIX
- From a node, create the disk group. List the disks using the vxdisk list command.
- Create a shared disk group. In this case, the group consists of one disk. In this example the disk is hdisk5:
# vxdg -s init db2db_dg hdisk5
- Deport and import the disk group:
# vxdg deport db2db_dg # vxdg -s import db2db_dg
- Use the vxassist command to create a 7-GB volume:
# vxassist -g db2db_dg make db2db_vol 7g
- Create the file system:
# mkfs -V vxfs -o largefiles /dev/vx/rdsk/db2db_dg/db2db_vol
- Create the mount point directory and mount the file system.
# mkdir /db2_mnt/db2inst1 # mount -V vxfs -o cluster /dev/vx/dsk/db2db_dg/db2db_vol \ /db2_mnt/db2inst1