- Automatically Installing Oracle Solaris 11.4 Systems
- Installing and Configuring Zones
- Preparing Automated Installation of Zones
- How to Include a Non-Global Zone in an Automatic Installation
How to Include a Non-Global Zone in an Automatic Installation
The non-global zone must already be created and properly configured on a separate working system.
Ensure that your role has the appropriate rights profiles to perform this procedure. See Using Rights Profiles to Install Oracle Solaris.
In this procedure, steps performed on the AI server are specifically indicated.
-
On the system where your current non-global zone exists, create its configuration file.
-
Display the non-global zone's live configuration.
$ zonecfg -z zone-name -r info -
Export the live configuration.
Use the following command syntax to create zone configuration files.
$ zonecfg -a zone-name export -f filename.cfg -
Store the configuration file at a location that is network accessible.
You can also store the configuration file directly on the AI server itself.
-
Display the non-global zone's live configuration.
-
On the non-global zone manifest, define installation instructions.
Use a copy of the template
/usr/share/auto_install/manifest/zone_default.xml. -
Associate the non-global zone manifest with the install service of the global zone.
Suppose that your non-global zone manifest file is
/tmp/zmanifest.xml, the manifest instance name iszmanifest, and the install service issolaris11_4-sparc. To use the manifest to installzone1andzone2, you would issue the following command:aiserver$ installadm create-manifest -n solaris11_4-sparc -f /tmp/zmanifest.xml \ -m zmanifest -c zonename="zone1 zone2"
-
Prepare the configuration profile for the zone.
- Create the XML file that contains the zone's configuration profile.
-
Associate the profiles with the install service of the global zone.
Suppose that you created two profiles for the install service
solaris11_4-sparc:-
/tmp/z1profile.xmlwith instance namez1profileto be used forzone1andzone2 -
/tmp/z2profile.xmlwith instance namez2profileto be used further forzone2
You would issue the following commands:
aiserver$ installadm create-profile -n solaris11_4-sparc -f /tmp/z1profile.xml \ -p z1profile -c zonename="zone1 zone2" aiserver$ installadm create-profile -n solaris11_4-sparc -f /tmp/z2profile.xml \ -p z2profile -c zonename="zone2"
-
-
Configure the global zone manifest to install the non-global zones.
Assume that the global zone manifest is
line1-netra2000.xml. Configure that file'sconfigurationelement by choosing from one of the following methods, depending on what zone files you are using:-
If you are using zone configuration files (
*.cfg)Specify the zone configuration files on the
configurationelement. Suppose that the zone configuration file iszconfig.cfginsystem1. The file is used to install bothzone1andzone2. You would add the following lines to the bottom of the file:... <configuration type="zone" name="zone1" source="http://system1/tmp/zconfig.cfg"/> <configuration type="zone" name="zone2" source="http://system1/tmp/zconfig.cfg"/> </ai_instance> </auto_install> -
If you are using a zone archive file
Specify the zone archive on the
configurationelement. Suppose that the archive filezsystem.uarcontains the zone configuration oforig-zone. You want to apply the archived configuration to bothzone1andzone2. You would add the following lines to the bottom of the file:... <configuration type="zone" name="zone1" source="archive:orig-zone" archive="http://system1/archives/zsystem.uar"/> <configuration type="zone" name="zone2" source="archive:orig-zone" archive="http://system1/archives/zsystem.uar"/> </ai_instance> </auto_install>
-
-
Display the manifests and configuration profiles associated with the service.
The install service name is
solaris11_4-sparc.aiserver$ installadm list -n solaris11_4-sparc -m -p Service Name Manifest Name Type Status Criteria ------------ ------------- ---- ------ -------- solaris11_4-sparc line1-netra2000 xml active mac = 00:14:4F:2D:7A:DC zmanifest xml active zonename = zone1,zone2 orig_default derived default none Service Name Profile Name Environment Criteria ------------ ------------ ----------- -------- solaris11_4-sparc z1profile system zonename = zone1,zone2 z2profile system zonename = zone2 - Start the installation by booting the client from the network.
-
Trace the progress of a non-global zone installation.
You can either monitor the
system/zones-installservice or check the output of thezoneadm list -cvcommand.