Storage Foundation for Sybase ASE CE 7.4 Administrator's Guide - Linux
- Overview of Storage Foundation for Sybase ASE CE
- About Storage Foundation for Sybase ASE CE
- About SF Sybase CE components
- About optional features in SF Sybase CE
- Administering SF Sybase CE and its components
- Administering SF Sybase CE
- Starting or stopping SF Sybase CE on each node
- Administering VCS
- Administering I/O fencing
- About the vxfentsthdw utility
- Testing the coordinator disk group using the -c option of vxfentsthdw
- About the vxfenadm utility
- About the vxfenclearpre utility
- About the vxfenswap utility
- Administering CVM
- Changing the CVM master manually
- Administering CFS
- Administering the Sybase agent
- Administering SF Sybase CE
- Troubleshooting SF Sybase CE
- About troubleshooting SF Sybase CE
- Troubleshooting I/O fencing
- Fencing startup reports preexisting split-brain
- Troubleshooting Cluster Volume Manager in SF Sybase CE clusters
- Troubleshooting interconnects
- Troubleshooting Sybase ASE CE
- Prevention and recovery strategies
- Prevention and recovery strategies
- Managing SCSI-3 PR keys in SF Sybase CE cluster
- Prevention and recovery strategies
- Tunable parameters
- Appendix A. Error messages
Adding storage to an SF Sybase CE cluster
You can add storage to an SF Sybase CE cluster in the following ways:
Add a disk to a disk group | Use the vxdg command to add a disk to a disk group. See the vxdg (1M) manual page for information on various options. See “To add storage to an SF Sybase CE cluster by adding a disk to a disk group”. |
Extend the volume space on a disk group | Use the vxresize command to change the length of a volume containing a file system. It automatically locates available disk space on the specified volume and frees up unused space to the disk group for later use. See the vxresize (1M) manual page for information on various options. See “To add storage to an SF Sybase CE cluster by extending the volume space on a disk group”. |
Note:
The steps in the following procedures are applicable to non-FSS configurations only.
To add storage to an SF Sybase CE cluster by adding a disk to a disk group
- Add a disk to the disk group:
# vxdg -g dg_name adddisk disk_name
To add storage to an SF Sybase CE cluster by extending the volume space on a disk group
- Determine the length by which you can increase an existing volume.
# vxassist [-g diskgroup] maxsize
For example, to determine the maximum size the volume
sybvol
in the disk groupdbdata_dg
can grow, given its attributes and free storage available:# vxassist -g dbdata_dg maxsize
- Extend the volume, as required. You can extend an existing volume to a certain length by specifying the new size of the volume (the new size must include the additional space you plan to add). You can also extend a volume by a certain length by specifying the additional amount of space you want to add to the existing volume.
To extend a volume to a certain length
For example, to extend the volume
sybvol
of size 10 GB in the disk groupdbdata_dg
to 30 GB:# vxresize -g dbdata_dg \ sybvol 30g
To extend a volume by a certain length
For example, to extend the volume
sybvol
of size 10 GB in the disk groupdbdata_dg
by 10 GB:# vxresize -g dbdata_dg \ sybvol +10g