Please enter search query.
Search <book_title>...
Cluster Server 8.0.2 Agent for DB2 Installation and Configuration Guide - Solaris
Last Published:
2023-06-05
Product(s):
InfoScale & Storage Foundation (8.0.2)
Platform: Solaris
- 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 Solaris
- Create a disk group on the shared disk. List the disks using the vxdisk list command. In this case the group consists of one disk, c4t0d0s2. For example:
# vxdg init db2db_dg c4t0d0s2
Deport and import the disk group:
# vxdg deport db2db_dg # vxdg import db2db_dg
- Create a volume of three GB using the vxassist command:
# vxassist -g db2db_dg make db2db_vol 3g
- Create the file system:
# mkfs -F vxfs /dev/vx/rdsk/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 -F vxfs /dev/vx/dsk/db2db_dg/db2db_vol \ /db2_mnt/db2inst1