Please enter search query.
Search <book_title>...
InfoScale™ 9.0 Virtualization Guide - Solaris
Last Published:
2025-09-09
Product(s):
InfoScale & Storage Foundation (9.0)
Platform: Solaris
- Section I. Overview of InfoScale solutions in Solaris virtualization environments
- Section II. Zones
- InfoScale Enterprise Solutions support for Solaris Native Zones
- About Solaris Zones
- About VCS support for zones
- Configuring VCS in zones
- Prerequisites for configuring VCS in zones
- Deciding on the zone root location
- Performing the initial internal zone configuration
- About installing applications in a zone
- Configuring the service group for the application
- Configuring a zone resource in a failover service group with the hazonesetup utility
- Configuring zone resource in a parallel service group with the hazonesetup utility
- Configuring multiple zone resources using same VCS user for password less communication
- Modifying the service group configuration
- Verifying the zone configuration
- Synchronizing the zone configuration across cluster nodes
- Performing maintenance tasks
- Troubleshooting zones
- Adding VxFS file systems to a non-global zone
- Mounting VxFS as lofs into a non-global zone
- Mounting VxFS directly into a non-global zone from global zone
- Mounting VxFS as VxFS inside a non-global zone
- Adding a direct mount to a zone's configuration
- Benefits of a VxFS mount in a non-global zone over VxFS mount from global zone into the non-global zone
- Cluster FileSystem mounts
- Concurrent I/O access in non-global zones
- Veritas Extension for Oracle Disk Manager
- Exporting VxVM volumes to a non-global zone
- About InfoScale SFRAC component support for Oracle RAC in a zone environment
- Supported configuration
- Known issues with supporting a InfoScale SFRAC component in a zone environment
- CFS mount agent does not support mounting VxVM devices inside non-global zones
- Issue with VCS agents
- Stopping non-global zones configured with direct-mount file systems from outside VCS causes the corresponding zone resource to fault or go offline
- Error message displayed for PrivNIC resource if zone is not running
- Warning messages displayed when VCS restarts
- The installer log of non-global zone contains warning messages
- Issue with CFS mounts
- Configuring Solaris non-global zones for disaster recovery
- Software limitations of InfoScale support of non-global zones
- Administration commands are not supported in non-global zone
- VxFS file system is not supported as the root of a non-global zone
- QIO and CQIO are not supported
- Package installation in non-global zones
- Package removal with non-global zone configurations
- Root volume cannot be added to non-global zones
- Some Arctera Volume Manager operations can cause volume device names to go out of sync
- Solaris branded zone support
- InfoScale Enterprise Solutions support for Solaris Native Zones
- Section III. Oracle VM Server for SPARC
- InfoScale Enterprise Solutions support for Oracle VM Server for SPARC
- About Oracle VM Server for SPARC
- Terminology for Oracle VM Server for SPARC
- Oracle VM Server for SPARC deployment models
- Benefits of deploying Arctera InfoScale Enterprise solutions in Oracle VM server for SPARC
- Features
- Split InfoScale stack model
- Guest-based InfoScale stack model
- Layered InfoScale stack model
- System requirements
- Product release notes
- Product licensing
- Installing InfoScale in a Oracle VM Server for SPARC environment
- Exporting a VxVM volume to a guest domain from the control domain
- Provisioning storage for a guest domain
- Using Arctera Volume Manager snapshots for cloning logical domain boot disks
- Support of live migration for Solaris LDOMs with fencing configured in DMP mode
- Configuring Oracle VM Server for SPARC guest domains for disaster recovery
- Software limitations
- Known issues
- Cluster Server support for using CVM with multiple nodes in a Oracle VM Server for SPARC environment
- VCS: Configuring Oracle VM Server for SPARC for high availability
- About VCS in a Oracle VM Server for SPARC environment
- About Cluster Server configuration models in an Oracle VM Server for SPARC environment
- Cluster Server setup to fail over a logical domain on a failure of logical domain
- Cluster Server setup to fail over an Application running inside logical domain on a failure of Application
- Oracle VM Server for SPARC guest domain migration in VCS environment
- Overview of a warm migration
- Overview of a live migration
- Prerequisites before you perform domain migration
- Supported deployment models for Oracle VM Server for SPARC domain migration with VCS
- Migrating Oracle VM guest when VCS is installed in the control domain that manages the guest domain
- Migrating Oracle VM guest when VCS is installed in the control domain and single-node VCS is installed inside the guest domain to monitor applications inside the guest domain
- Migrating Oracle VM guest when VCS cluster is installed in the guest domains to manage applications for Oracle VM Server for SPARC version 2.1 and above
- Migrating Oracle VM guest when VCS cluster is installed in the guest domains to manage applications for Oracle VM Server for SPARC version 2.0
- About configuring VCS for Oracle VM Server for SPARC with multiple I/O domains
- Configuring VCS to manage a Logical Domain using services from multiple I/O domains
- A typical setup for a Logical Domain with multiple I/O services
- Identify supported storage and network services
- Determine the number of nodes to form VCS cluster
- Install and configure VCS inside the control domain and alternate I/O domain
- Configuring storage services
- Configure storage service groups
- Configure network service groups
- Configure a service group to monitor services from multiple I/O domains
- Configure the AlternateIO resource
- Configure the service group for a Logical Domain
- Failover scenarios
- Recommendations while configuring VCS and Oracle VM Server for SPARC with multiple I/O domains
- Sample VCS configuration for AlternateIO resource configured as a fail over type
- Configuring VCS on logical domains to manage applications using services from multiple I/O domains
- SFRAC support for Oracle VM Server for SPARC environments
- About deploying SFRAC in Oracle VM Server for SPARC environments
- Sample configuration scenarios
- Preparing to deploy SFRAC in logical domain environments
- SFRAC with Oracle RAC database on I/O domains of two hosts
- SFRAC with Oracle RAC database on guest domains of two hosts
- SFRAC with Oracle RAC database on guest domains of single host
- SFRAC with Oracle RAC database on I/O domain and guest domain of single host
- Support for live migration in FSS environments
- Using SmartIO in the virtualized environment
- InfoScale Enterprise Solutions support for Oracle VM Server for SPARC
- Section IV. Reference
Creating a zone with root on shared storage
Create a zone with root which points to the shared disk's location on each node in the cluster. The file system for application data is on a shared device and is either the loopback type or the direct mount type. For a direct mount file system, run the mount command from the global zone with the mount point specified as the complete path that starts with the zone root. For a loopback file system, add it into the zone's configuration before you boot the zone.
To create a zone root on shared disks on each node in the cluster
- Create a file system on shared storage for the zone root. The file system that is to contain the zone root may be in the same disk group as the file system that contains the application data.
- Configure the zone with the zonecfg command.
zonecfg -z newzone zonecfg:newzone> create
- Set the zonepath parameter to specify a location for the zone root.
zonecfg:newzone> set zonepath=/export/home/newzone
- Add network interface to zone configuration. This is required for non-global zone to communicate with had running in global zone.
zonecfg:newzone> add net zonecfg:newzone:net> set physical=net0 zonecfg:newzone:net> set address=192.168.1.10 zonecfg:newzone:net> end
- Make sure global zone can be pinged from non-global zone with global zone hostname. You may need to add global zone hostname entry to
/etc/hostsfile inside non-global zone or enable DNS access from inside the non-global zone. - If your application data resides on a loopback mount file system, create the loopback file system in the zone.
- Exit the zonecfg configuration.
zonecfg> exit
- Create the zone root directory.
mkdir zonepath
- Set permissions for the zone root directory.
chmod 700 zonepath
- Repeat step 2 to step 9 on each system in the service group's SystemList.
- Mount the file system that contains the shared storage on one of the systems that share the storage to the directory specified in zonepath.
- Run the following command to install the zone on the system where the zone path is mounted.
zoneadm -z newzone install
- If the application data is on a loopback file system, mount the file system containing the application's data on shared storage.
- Boot the zone.
zoneadm -z newzone boot
- If the application data is on a direct mount file system, mount the file system from the global zone with the complete path that starts with the zone root.