Mandalika's scratchpad [ Work blog @Oracle | My Music Compositions ]

Old Posts: 09.04  10.04  11.04  12.04  01.05  02.05  03.05  04.05  05.05  06.05  07.05  08.05  09.05  10.05  11.05  12.05  01.06  02.06  03.06  04.06  05.06  06.06  07.06  08.06  09.06  10.06  11.06  12.06  01.07  02.07  03.07  04.07  05.07  06.07  08.07  09.07  10.07  11.07  12.07  01.08  02.08  03.08  04.08  05.08  06.08  07.08  08.08  09.08  10.08  11.08  12.08  01.09  02.09  03.09  04.09  05.09  06.09  07.09  08.09  09.09  10.09  11.09  12.09  01.10  02.10  03.10  04.10  05.10  06.10  07.10  08.10  09.10  10.10  11.10  12.10  01.11  02.11  03.11  04.11  05.11  07.11  08.11  09.11  10.11  11.11  12.11  01.12  02.12  03.12  04.12  05.12  06.12  07.12  08.12  09.12  10.12  11.12  12.12  01.13  02.13  03.13  04.13  05.13  06.13  07.13  08.13  09.13  10.13  11.13  12.13  01.14  02.14  03.14  04.14  05.14  06.14  07.14  09.14  10.14  11.14  12.14  01.15  02.15  03.15  04.15  06.15  09.15  12.15  01.16  03.16  04.16  05.16  06.16  07.16  08.16  09.16  12.16  01.17  02.17  03.17  04.17  06.17  07.17  08.17  09.17  10.17  12.17  01.18  02.18  03.18  04.18  05.18  06.18  07.18  08.18  09.18  11.18  12.18  01.19  02.19  05.19  06.19  08.19  10.19  11.19  05.20  10.20  11.20  12.20  09.21  11.21  12.22 


Tuesday, February 28, 2006
 
Solaris Zones: Resource Controls - CPU

An overview of Solaris Zones is available in blog entry: Zone creation for dummies. It is possible to limit the resource utilization in each zone, with Solaris containers. Detailed information about the kind of resources that can be controlled, can be found in the Resource Controls chapter of Solaris Containers-Resource Management and Solaris Zones guide. The primary focus of this blog entry is to show how to restrict one of the zones to use a maximum of 3 CPUs, on a 4 CPU Sun server.

Let's assume that we have a server configured to run 3 zones (1 global + 2 local), as shown below:
 % zoneadm list -cv
  ID NAME STATUS PATH
  0 global running /
  19 v1280appserv running /zones/z1
  22 v1280webserv running /zones/z2

The assumption is that the application server running in v1280appserv zone is going to consume majority of CPU cycles. So to give a fair chance to run web server, and other applications on this server, let's try to restrict the non-global zone, v1280appserv, to use a maximum of 3 processors only, leaving one processor for the web server. This was shown in the following figure:


Steps for CPU resource control

1. Enable pools facility

Make sure the resource pool daemon, poold, is running.
 % ps -eaf | grep poold
  root 20019 18948 0 15:03:58 pts/3 0:00 grep poold

 % pooladm
 pooladm: couldn't open pools state file: Facility is not active

Use -e option of pooladm to enable the pools facility
 % pooladm -e
 % pgrep poold
 18951

Without any options, pooladm prints out the currently running pools configuration
 % pooladm
 system sdcv1280s001
  string system.comment
  int system.version 1
  boolean system.bind-default true
  int system.poold.pid 18951

  pool pool_default
  int pool.sys_id 0
  boolean pool.active true
  boolean pool.default true
  int pool.importance 1
  string pool.comment
  pset pset_default

  pset pset_default
  int pset.sys_id -1
  boolean pset.default true
  uint pset.min 1
  uint pset.max 65536
  string pset.units population
  uint pset.load 17
  uint pset.size 4
  string pset.comment

  cpu
  int cpu.sys_id 1
  string cpu.comment
  string cpu.status on-line

  cpu
  int cpu.sys_id 0
  string cpu.comment
  string cpu.status on-line

  cpu
  int cpu.sys_id 3
  string cpu.comment
  string cpu.status on-line

  cpu
  int cpu.sys_id 2
  string cpu.comment
  string cpu.status on-line

2. Configure & load pool into memory

Since the plan is to restrict v1280appserv zone to 3 processors, create an input file as shown below. This file will be used to configure the required resource pool using poolcfg.
 % cat zonepoolcfg
 create pset appserv-pset ( uint pset.min = 3; uint pset.max = 3 )
 create pool appserv-pool
 associate pool appserv-pool ( pset appserv-pset )

create pset appserv-pset ( uint pset.min = 3; uint pset.max = 3 ) creates a processor set with 3 processors
create pool appserv-pool creates a new pool called appserv-pool
associate pool appserv-pool ( pset appserv-pset ) associates the processor set appserv-pset with pool appserv-pool

Update the configuration using the zonepoolcfg input file.
 % poolcfg -f zonepoolcfg
 poolcfg: cannot load configuration from /etc/pooladm.conf: No such file or directory

Note that /etc/pooladm.conf file must exist before updating it. Use -s option of pooladm to save active configuration from memory in to /etc/pooladm.conf
 % pooladm -s
 % ls -l /etc/pooladm.conf
 -rw-rw-r-- 1 root root 1429 Feb 28 13:43 /etc/pooladm.conf

Now since the /etc/pooladm.conf exists, update it with the new pool configuration that we just created. This can be done with -f option of poolcfg -- it takes the input file as an argument.
 % poolcfg -f zonepoolcfg

Alternatively you can run the following commands instead of an input file, to update the configuration:
 % poolcfg -c 'create pset appserv-pset  ( uint pset.min = 3; uint pset.max = 3 )'
 % poolcfg -c 'create pool appserv-pool'
 % poolcfg -c 'associate pool appserv-pool ( pset appserv-pset )'

Next step is to instantiate (ie., activate) the configuration from /etc/pooladm.conf in to memory -- use -c option of pooladm to do this. It takes a file name as an argument; but if no file name is specified, it will read the configuration from /etc/pooladm.conf
 % pooladm -c
 % psrset
 user processor set 1: processors 0 1 2

Observe that one processor set is created with 3 processors in that set.

Check the current pool configuration one more time, with pooladm.
 % pooladm
 system sdcv1280s001
  string system.comment
  int system.version 1
  boolean system.bind-default true
  int system.poold.pid 18951

  pool appserv-pool
  int pool.sys_id 1
  boolean pool.active true
  boolean pool.default false
  int pool.importance 1
  string pool.comment
  pset appserv-pset

  ...
  ...

  pset appserv-pset
  int pset.sys_id 1
  boolean pset.default false
  uint pset.min 3
  uint pset.max 3
  string pset.units population
  uint pset.load 0
  uint pset.size 3
  string pset.comment

  cpu
  int cpu.sys_id 1
  string cpu.comment
  string cpu.status on-line

  cpu
  int cpu.sys_id 0
  string cpu.comment
  string cpu.status on-line

  cpu
  int cpu.sys_id 2
  string cpu.comment
  string cpu.status on-line

  ...
  ...

3. Configure the zone(s)

Since the v1280appserv zone is already created, we just need to connect the zone to the pool that we just created. Use zonecfg to update the zone configuration.
 % zonecfg -z v1280appserv
 zonecfg:v1280appserv> set pool=appserv-pool
 zonecfg:v1280appserv> verify
 zonecfg:v1280appserv> exit

If the zone is not created yet, follow the instructions of Zone creation for dummies, and specify the pool, when the zone is configured.

4. Reboot the zone

Simply reboot the zone, v1280appserv, so it binds to the newly created pool, when it comes back.
 % zlogin v1280appserv init 6
 % zoneadm list -cv
  ID NAME STATUS PATH
  0 global running /
  19 v1280appserv shutting_down /zones/z1
  22 v1280webserv running /zones/z2

 % zoneadm list -cv
  ID NAME STATUS PATH
  ...
  23 v1280appserv ready /zones/z1

 % zoneadm list -cv
  ID NAME STATUS PATH
  ...
  23 v1280appserv running /zones/z1

5. Connect & verify the resource utilization
 v1280appserv zone:

 v1280appserv:/% psrset
 user processor set 1: processors 0 1 2

 v1280appserv:/% psrinfo
 0 on-line since 01/19/2006 13:44:11
 1 on-line since 01/19/2006 13:44:12
 2 on-line since 01/19/2006 13:44:12

 v1280appserv:/%vmstat 2
  kthr memory page disk faults cpu
  r b w swap free re mf pi po fr de sr s0 s1 s3 -- in sy cs us sy id
  0 0 0 16964480 6000376 3 6 8 5 4 0 0 1 0 0 0 342 293 240 4 1 96
  0 0 0 15999272 5119352 0 25 4 0 0 0 0 0 2 0 0 875 2948 968 62 2 36
  0 0 0 15994448 5114792 23 105 0 0 0 0 0 13 2 0 0 620 1666 433 51 1 48
  0 0 0 15982504 5102680 33 182 0 0 0 0 0 0 6 0 0 702 2246 767 49 2 50
  0 0 0 15976104 5096336 0 14 0 0 0 0 0 0 0 0 0 575 1376 461 32 1 67
  0 0 0 15969896 5090152 0 8 0 0 0 0 0 0 0 0 0 472 1067 569 18 1 82
  0 0 0 15963296 5083672 0 38 0 0 0 0 0 0 0 0 0 685 2440 731 38 2 60

 v1280webserv zone:

 v1280webserv:/% psrset
 v1280webserv:/% psrinfo
 3 on-line since 01/19/2006 13:44:12

 v1280webserv:/%vmstat 2
  kthr memory page disk faults cpu
  r b w swap free re mf pi po fr de sr s0 s1 s3 -- in sy cs us sy id
  0 0 0 16964480 6000376 1 2 4 0 0 0 0 1 0 0 0 22 110 102 4 1 95
  0 0 0 16032976 5152368 0 21 8 0 0 0 0 0 1 0 0 99 1013 1239 13 4 83
  0 0 0 16024560 5143968 0 1 0 0 0 0 0 0 2 0 0 69 915 816 12 3 85
  0 0 0 16022272 5141744 0 1 0 0 0 0 0 0 2 0 0 41 738 715 7 2 90
  0 0 0 16011216 5130992 0 7 0 0 0 0 0 0 3 0 0 92 936 976 11 4 85
  0 0 0 16004560 5124480 0 4 0 0 0 0 0 0 3 0 0 44 768 726 6 2 92
  0 0 0 15999272 5119352 0 1 0 0 0 0 0 0 2 0 0 132 1196 1387 19 4 76

 Global Zone:

  PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP
  19844 giri 1007M 908M cpu2 59 0 0:04:49 16% siebmtshmw/154
  19859 giri 1007M 908M sleep 59 0 0:04:48 16% siebmtshmw/141
  19870 giri 999M 900M cpu0 59 0 0:04:38 16% siebmtshmw/145
  19906 giri 291M 127M run 29 10 0:01:27 4.3% webservd/417
  19907 giri 249M 85M run 59 0 0:00:22 1.2% webservd/158
  19976 giri 103M 63M sleep 32 0 0:00:01 1.1% siebmtshmw/7

 ZONEID NPROC SIZE RSS MEMORY TIME CPU ZONE
  23 54 4382M 3626M 45% 0:15:59 50% v1280appserv
  22 40 771M 320M 4.0% 0:05:40 5.5% v1280webserv
  0 37 355M 80M 1.0% 1:02:45 0.2% global

It is that simple.

Troubleshooting:

If you encounter the following error, double check your configuration.
        pooladm: configuration at '/etc/pooladm.conf' cannot be instantiated on current system
It is very likely that you configured some resource that is either not available or beyond its limits, on the system.

For more examples, see:
  1. [URL updated 05/28/08] Brendan Gregg's Zones documentation
  2. Sun's HOW-TO Guide: Solaris Containers: Consolidating Servers and Applications

Technorati tags
| | |


Friday, February 17, 2006
 
Solaris 10: Zone creation for dummies

About Zones

In its simple form, a zone is a virtual operating system environment created within a single instance of the Solaris operating system. Efficient resource utilization is the main goal of this technology.

Solaris 10's zone partitioning technology can be used to create local zones that behave like virtual servers. All local zones are controlled from the system's global zone. Processes running in a zone are completely isolated from the rest of the system. This isolation prevents processes that are running in one zone from monitoring or affecting processes that are running in other zones. Note that processes running in a local zone can be monitored from global zone; but the processes running in a global zone or even in another local zone cannot be monitored from a local zone.

As of now, the upper limit for the number of zones that can be created/run on a system is 8192; of course, depending on the resource availability, a single system may or may not run all the configured zones effectively.

Global Zone

When we install Solaris 10, a global zone gets installed automatically; and the core operating system runs under global zone. To list all the configured zones, we can use zoneadm command:
 % zoneadm list -v
ID NAME STATUS PATH
0 global running /

Global zone is the only one:
Steps to create a Local Zone

Prerequisites:
Basic Zone creation steps, with examples:
  1. Check the disk space & network configuration
     % df -h /
     Filesystem size used avail capacity Mounted on
     /dev/dsk/c1t1d0s0 29G 22G 7.1G 76% /

     % ifconfig -a
     lo0: flags=2001000849 mtu 8232 index 1
      inet 127.0.0.1 netmask ff000000
     eri0: flags=1000843 mtu 1500 index 2
      inet 192.168.74.217 netmask fffffe00 broadcast 192.168.75.255

  2. Since there is more than 5G free space, I've decided to install a local zone under /zones.
     % mkdir /zones

  3. Next step is to define/create the zone root. This is the path to zone's root directory that is relative to the global zone's root directory. Zone root must be owned by root user with the mode 700. This will be used in setting the zonepath property, during the zone creation process
     % cd /zones
     % mkdir appserver
     % chmod 700 appserver

     % ls -l
     total 2
     drwx------ 2 root root 512 Feb 17 12:46 appserver

  4. Create & configure a new 'sparse root' local zone, with root privileges
     % zonecfg -z appserv
     appserv: No such zone configured
     Use 'create' to begin configuring a new zone.
     zonecfg:appserv> create
     zonecfg:appserv> set zonepath=/zones/appserver
     zonecfg:appserv> set autoboot=true
     zonecfg:appserv> add net
     zonecfg:appserv:net> set physical=eri0
     zonecfg:appserv:net> set address=192.168.175.126
     zonecfg:appserv:net> end
     zonecfg:appserv> add fs
     zonecfg:appserv:fs> set dir=/repo2
     zonecfg:appserv:fs> set special=/dev/dsk/c2t40d1s6
     zonecfg:appserv:fs> set raw=/dev/rdsk/c2t40d1s6
     zonecfg:appserv:fs> set type=ufs
     zonecfg:appserv:fs> set options noforcedirectio
     zonecfg:appserv:fs> end
     zonecfg:appserv> add inherit-pkg-dir
     zonecfg:appserv:inherit-pkg-dir> set dir=/opt/csw
     zonecfg:appserv:inherit-pkg-dir> end
     zonecfg:appserv> info
     zonepath: /zones/appserver
     autoboot: true
     pool:
     inherit-pkg-dir:
      dir: /lib
     inherit-pkg-dir:
      dir: /platform
     inherit-pkg-dir:
      dir: /sbin
     inherit-pkg-dir:
      dir: /usr
     inherit-pkg-dir:
      dir: /opt/csw
     net:
      address: 192.168.175.126
      physical: eri0
     zonecfg:appserv> verify
     zonecfg:appserv> commit
     zonecfg:appserv> exit

    Sparse Root Zone Vs Whole Root Zone(Updated 05/07/2008)

    In a Sparse Root Zone, the directories /usr, /sbin, /lib and /platform will be mounted as loopback file systems. That is, although all those directories appear as normal directories under the sparse root zone, they will be mounted as read-only file systems. Any change to those directories in the global zone can be seen from the sparse root zone.

    However if you need the ability to write into any of those directories listed above, you may need to configure a Whole Root Zone. For example, softwares like ClearCase need write permissions to /usr directory. In that case configuring a Whole Root Zone is the way to go. The steps for creating and configuring a new 'Whole Root' local zone are as follows:
     % zonecfg -z appserv
     appserv: No such zone configured
     Use 'create' to begin configuring a new zone.
     zonecfg:appserv> create
     zonecfg:appserv> set zonepath=/zones/appserver
     zonecfg:appserv> set autoboot=true
     zonecfg:appserv> add net
     zonecfg:appserv:net> set physical=eri0
     zonecfg:appserv:net> set address=192.168.175.126
     zonecfg:appserv:net> end
     zonecfg:appserv> add inherit-pkg-dir
     zonecfg:appserv:inherit-pkg-dir> set dir=/opt/csw
     zonecfg:appserv:inherit-pkg-dir> end
     zonecfg:appserv> remove inherit-pkg-dir dir=/usr
     zonecfg:appserv> remove inherit-pkg-dir dir=/sbin
     zonecfg:appserv> remove inherit-pkg-dir dir=/lib
     zonecfg:appserv> remove inherit-pkg-dir dir=/platform
     zonecfg:appserv> info
     zonepath: /zones/appserver
     autoboot: true
     pool:
     inherit-pkg-dir:
      dir: /opt/csw
     net:
      address: 192.168.175.126
      physical: eri0
     zonecfg:appserv> verify
     zonecfg:appserv> commit
     zonecfg:appserv> exit

    Brief explanation of the properties that I added:

    zonepath=/zones/appserver
    Local zone's root directory, relative to global zone's root directory. ie., local zone will have all the bin, lib, usr, dev, net, etc, var, opt etc., directories physically under /zones/appserver directory

    autoboot=true
    boot this zone automatically when the global zone is booted

    physical=eri0
    eri0 card is used for the physical interface

    address=192.168.175.126
    192.168.175.126 is the IP address. It must have all necessary DNS entries

    [Added 08/25/08] The whole add fs section adds the file system to the zone. In this example, the file system that is being exported to the zone is an existing UFS file system.

    set dir=/repo2
    /repo2 is the mount point in the local zone

    set special=/dev/dsk/c2t40d1s6
    set raw=/dev/rdsk/c2t40d1s6

    Grant access to the block (/dev/dsk/c2t40d1s6) and raw (/dev/rdsk/c2t40d1s6) devices so the file system can be mounted in the non-global zone. Make sure the block device is not mounted anywhere right before installing the non-global zone. Otherwise, the zone installation may fail with ERROR: file system check </usr/lib/fs/ufs/fsck> of </dev/rdsk/c2t40d1s6> failed: exit status <33>: run fsck manually. In that case, unmount the file system that is being exported, uninstall the partially installed zone (zoneadm -z <zone> uninstall) then install the zone from the scratch (no need to re-configure the zone, just do a re-install).

    set type=ufs
    The file system is of type UFS

    set options noforcedirectio
    Mount the file system with the option noforcedirectio[/Added 08/25/08]

    dir=/opt/csw
    read-only path, will be lofs'd (loop back mounted) from global zone. Note: it works for sparse root zone only -- whole root zone cannot have any shared file systems

    zonecfg commands verify and commit, verifies and commits the zone configuration for the zone, respectively. Note that it is not necessary to commit the zone configuration; it will be done automatically when we exit from zonecfg tool. info displays information about the current configuration

  5. Check the state of the newly created/configured zone
     % zoneadm list -cv
      ID NAME STATUS PATH
      0 global running /
      - appserv configured /zones/appserver

  6. Next step is to install the configured zone. It takes a while to install the necessary packages
     % zoneadm -z appserv install
     /zones must not be group writable.
     could not verify zonepath /zones/appserver because of the above errors.
     zoneadm: zone appserv failed to verify

     % ls -ld /zones
     drwxrwxr-x 3 root root 512 Feb 17 12:46 /zones
    Since /zones must not be group writable, let's change the mode to 700.
     % chmod 700 /zones

     % ls -ld /zones
     drwx------ 3 root root 512 Feb 17 12:46 /zones

     % zoneadm -z appserv install
     Preparing to install zone .
     Creating list of files to copy from the global zone.
     Copying <2658> files to the zone.
     Initializing zone product registry.
     Determining zone package initialization order.
     Preparing to initialize <1128> packages on the zone.
     Initialized <1128> packages on zone.
     Zone is initialized.
     Installation of these packages generated errors:
     Installation of <2> packages was skipped.
     Installation of these packages generated warnings: <CSWbdb3 CSWtcpwrap
      CSWreadline CSWlibnet CSWlibpcap CSWjpeg CSWzlib CSWcommon CSWpkgget SMCethr CSWxpm
      SMClsof SMClibgcc SMCossld OpenSSH SMCtar SUNWj3dmx CSWexpat CSWftype2 CSWfconfig
      CSWiconv CSWggettext CSWlibatk CSWpango CSWpng CSWtiff CSWgtk2 CSWpcre CSWlibmm
      CSWgsed CSWlibtool CSWncurses CSWunixodbc CSWoldap CSWt1lib CSWlibxml2 CSWbzip2
      CSWlibidn CSWphp>
     The file contains a log of the zone installation.

  7. Verify the state of the appserv zone, one more time
     % zoneadm list -cv
      ID NAME STATUS PATH
      0 global running /
      - appserv installed /zones/appserver

  8. Boot up the appserv zone. Let's note down the ifconfig output to see how it changes after the local zone boots up. Also observe that there is no answer from the server yet, since it is not up
     % ping 192.168.175.126
     no answer from 192.168.175.126

     % ifconfig -a
     lo0: flags=2001000849 mtu 8232 index 1
      inet 127.0.0.1 netmask ff000000
     eri0: flags=1000843 mtu 1500 index 2
      inet 192.168.74.217 netmask fffffe00 broadcast 192.168.75.255
      ether 0:3:ba:2d:0:84

     % zoneadm -z appserv boot
     zoneadm: zone 'appserv': WARNING: eri0:1: no matching subnet found in netmasks(4) for 192.168.175.126;
     using default of 255.255.0.0.

     % zoneadm list -cv
      ID NAME STATUS PATH
      0 global running /
      1 appserv running /zones/appserver

     % ping 192.168.175.126
     192.168.175.126 is alive

     % ifconfig -a
     lo0: flags=2001000849 mtu 8232 index 1
      inet 127.0.0.1 netmask ff000000
     lo0:1: flags=2001000849 mtu 8232 index 1
      zone appserv
      inet 127.0.0.1 netmask ff000000
     eri0: flags=1000843 mtu 1500 index 2
      inet 192.168.74.217 netmask fffffe00 broadcast 192.168.75.255
      ether 0:3:ba:2d:0:84
     eri0:1: flags=1000843 mtu 1500 index 2
      zone appserv
      inet 192.168.175.126 netmask ffff0000 broadcast 192.168.255.255
    Observe that the zone appserv has it's own virtual instance of lo0, the system's loopback interface and the zone's IP address is also being served by the eri0 network interface

  9. Login to the Zone {console} and performing the internal zone configuration. zlogin utility can be used to enter a zone. The first time we log in to the console, we get a chance to answer a series of questions for the desired zone configuraton. -C option of zlogin can be used to log in to the Zone console.
     % zlogin -C -e [ appserv
     [Connected to zone 'appserv' console]

     Select a Language

      0. English
      1. es
      2. fr

     Please make a choice (0 - 2), or press h or ? for help: 0

     Select a Locale

      0. English (C - 7-bit ASCII)
      1. Canada (English) (UTF-8)
      2. Canada-English (ISO8859-1)
      3. U.S.A. (UTF-8)
      4. U.S.A. (en_US.ISO8859-1)
      5. U.S.A. (en_US.ISO8859-15)
      6. Go Back to Previous Screen

     Please make a choice (0 - 6), or press h or ? for help: 0

     ...

      Enter the host name which identifies this system on the network. The name
      must be unique within your domain; creating a duplicate host name will cause
      problems on the network after you install Solaris.

      A host name must have at least one character; it can contain letters,
      digits, and minus signs (-).

      Host name for eri0:1 appserv v440appserv

     ...
     ...

     System identification is completed.
     ...

     rebooting system due to change(s) in /etc/default/init

     [NOTICE: Zone rebooting]

     SunOS Release 5.11 Version snv_23 64-bit
     Copyright 1983-2005 Sun Microsystems, Inc. All rights reserved.
     Use is subject to license terms.
     Hostname: v440appserv

     v440appserv console login: root
     Password:
     Feb 17 15:15:30 v440appserv login: ROOT LOGIN /dev/console
     Sun Microsystems Inc. SunOS 5.11 snv_23 October 2007

     %

That is all there is in the creation of a local zone. Now simply login to the newly created zone, just like connecting to any other system in the network.

[New 08/27/2008] Mounting file systems in a non-global zone

Sometimes it might be necessary to export file systems or create new file systems when the zone is already running. This section's focus is on exporting block devices and the raw devices in such situations i.e., when the local zone is already configured.

Exporting the Raw Device(s) to a non-global zone

If the file system does not exist on the device, raw devices can be exported as they are, so the file system can be created inside the non-global zone using the normal newfs command.

The following example shows how to export the raw device to a non-global zone when the zone is already configured.

# zonecfg -z appserv
zonecfg:appserv> add device
zonecfg:appserv:device> set match=/dev/rdsk/c5t0d0s6
zonecfg:appserv:device> end
zonecfg:appserv> verify
zonecfg:appserv> commit
zonecfg:appserv> exit


In this example /dev/rdsk/c5t0d0s6 is being exported.

After the zonecfg step, reboot the non-global zone to make the raw device visible inside the non-global zone. After the reboot, check the existence of the raw device.

# hostname
v440appserv

# ls -l /dev/rdsk/c5t0d0s6
crw-r----- 1 root sys 118, 126 Aug 27 14:33 /dev/rdsk/c5t0d0s6


Now that the raw device is accessible within the non-global zone, we can use the regular Solaris commands to create any file system like UFS.

eg.,
# newfs -v c5t0d0s6
newfs: construct a new file system /dev/rdsk/c5t0d0s6: (y/n)? y
mkfs -F ufs /dev/rdsk/c5t0d0s6 1140260864 -1 -1 8192 1024 251 1 120 8192 t 0 -1 8 128 n
Warning: 4096 sector(s) in last cylinder unallocated
/dev/rdsk/c5t0d0s6: 1140260864 sectors in 185590 cylinders of 48 tracks, 128 sectors
556768.0MB in 11600 cyl groups (16 c/g, 48.00MB/g, 5824 i/g)
super-block backups (for fsck -F ufs -o b=#) at:
32, 98464, 196896, 295328, 393760, 492192, 590624, 689056, 787488, 885920,
Initializing cylinder groups:
...............................................................................
...............................................................................
.........................................................................
super-block backups for last 10 cylinder groups at:
1139344160, 1139442592, 1139541024, 1139639456, 1139737888, 1139836320,
1139934752, 1140033184, 1140131616, 1140230048


Exporting the Block Device(s) to a non-global zone

If the file system exists on the device, block devices can be exported as they are, so the file system can be mounted inside the non-global zone using the normal Solaris command, mount.

The following example shows how to export the block device to a non-global zone when the zone is already configured.

# zonecfg -z appserv
zonecfg:appserv> add device
zonecfg:appserv:device> set match=/dev/dsk/c5t0d0s6
zonecfg:appserv:device> end
zonecfg:appserv> verify
zonecfg:appserv> commit
zonecfg:appserv> exit


In this example /dev/dsk/c5t0d0s6 is being exported.

After the zonecfg step, reboot the non-global zone to make the block device visible inside the non-global zone. After the reboot, check the existence of the block device; and mount the file system within the non-global zone.

# hostname
v440appserv

# ls -l /dev/dsk/c5t0d0s6
brw-r----- 1 root sys 118, 126 Aug 27 14:40 /dev/dsk/c5t0d0s6

# fstyp /dev/dsk/c5t0d0s6
ufs

# mount /dev/dsk/c5t0d0s6 /mnt

# df -h /mnt
Filesystem size used avail capacity Mounted on
/dev/dsk/c5t0d0s6 535G 64M 530G 1% /mnt


Mounting a file system from the global zone into the non-global zone

Sometimes it is desirable to have the flexibility of mounting a file system in the global zone or non-global zone on-demand. In such situations, rather than exporting the file systems or block devices into the non-global zone, create the file system in the global zone and mount the file system directly from the global zone into the non-global zone. Make sure to unmount that file system in the global zone if mounted, before attempting to mount it in the non-global zone.

eg.,
In the non-global zone:
# mkdir /repo1


In the global zone:
# df -h /repo1
/dev/dsk/c2t40d0s6 134G 64M 133G 1% /repo1

# umount /repo1

# ls -ld /zones/appserv/root/repo1
drwxr-xr-x 2 root root 512 Aug 27 14:45 /zones/appserv/root/repo1

# mount /dev/dsk/c2t40d0s6 /zones/appserv/root/repo1


Now go back to the non-global zone and check the mounted file systems.

# hostname
v440appserv

# df -h /repo1
Filesystem size used avail capacity Mounted on
/repo1 134G 64M 133G 1% /repo1


To unmount the file system from the non-global zone, run the following command from the global zone.
# umount /zones/appserv/root/repo1


Removing the file system from the non-global zone

eg.,
Earlier in the zone creation step, the block device /dev/dsk/c2t40d1s6 was exported and mounted on the mount point /repo2 inside the non-global zone. To remove the file system completely from the non-global zone, run the following in the global zone.
# zonecfg -z appserv
zonecfg:appserv> remove fs dir=/repo2
zonecfg:appserv> verify
zonecfg:appserv> commit
zonecfg:appserv> exit


Reboot the non-global zone for this setting to take effect.
[New: 08/27/2008]

Shutting down and booting up the local zones (Updated 01/15/2008)
  1. To bring down the local zone:
     % zlogin appserv shutdown -i 0

  2. To boot up the local zone:
     % zoneadm -z appserv boot

Just for the sake of completeness, the following steps show how to remove a local zone.

Steps to delete a Local Zone
  1. Shutdown the local zone
     % zoneadm -z appserv halt

     % zoneadm list -cv
      ID NAME STATUS PATH
      0 global running /
      - appserv installed /zones/appserver

  2. Uninstall the local zone -- remove the root file system
     % zoneadm -z appserv uninstall
     Are you sure you want to uninstall zone appserv (y/[n])? y

      zoneadm list -cv
      ID NAME STATUS PATH
      0 global running /
      - appserv configured /zones/appserver

  3. Delete the configured local zone
     % zonecfg -z appserv delete
     Are you sure you want to delete zone appserv (y/[n])? y

      zoneadm list -cv
      ID NAME STATUS PATH
      0 global running /


[New: 07/14/2009]
Cloning a Non-Global Zone

The following instructions are for cloning a non-global zone on the same system. The example shown below clones the siebeldb zone. After the cloning process, a brand new zone oraclebi emerges as a replica of siebeldb zone.

eg.,
# zoneadm list -cv
ID NAME STATUS PATH BRAND IP
0 global running / native shared
- siebeldb installed /zones/dbserver native excl

  1. Export the configuration of the zone that you want to clone/copy

    # zonecfg -z siebeldb export > /tmp/siebeldb.config.cfg


  2. Change the configuration of the new zone that differ from the existing one -- for example, IP address, data set names, network interface etc. To make these changes, edit /tmp/siebeldb.config.cfg

  3. Create the zone root directory for the new zone being created

    # mkdir /zones3/oraclebi
    # chmod 700 /zones3/oraclebi
    # ls -ld /zones3/oraclebi
    drwx------ 2 root root 512 Mar 12 15:41 /zones3/oraclebi

  4. Create a new (empty, non-configured) zone in the usual manner with the edited configuration file as an input
    # zonecfg -z oraclebi -f /tmp/siebeldb.config.cfg

    # zoneadm list -cv
    ID NAME STATUS PATH BRAND IP
    0 global running / native shared
    - siebeldb installed /zones/dbserver native excl
    - oraclebi configured /zones3/oraclebi native excl

  5. Ensure that the zone you intend to clone/copy is not running
    # zoneadm -z siebeldb halt

  6. Clone the existing zone
    # zoneadm -z oraclebi clone siebeldb
    Cloning zonepath /zones/dbserver...

    This step takes at least 5 minutes to clone the whole zone. Larger zones may take longer to complete the cloning process.

  7. Boot the newly created zone
    # zoneadm -z oraclebi boot

    Bring up the halted zone (the source zone) as well, if wish.

  8. Login to the console of the new zone to configure IP, networking, etc., and you are done.
    # zlogin -C oraclebi


[New: 07/15/2009]
Migrating a Non-Global Zone from One Host to Another

Keywords: Solaris, Non-Global Zone, Migration, Attach, Detach

The following instructions demonstrate how to migrate the non-global zone, orabi to another server with examples.
# zoneadm list -cv
ID NAME STATUS PATH BRAND IP
0 global running / native shared
4 siebeldb running /zones/dbserver native excl
- orabi installed /zones3/orabi native shared

  1. Halt the zone to be migrated, if running
    # zoneadm -z orabi halt

  2. Detach the zone. Once detached, it will be in the configured state
    # zoneadm -z orabi detach

    # zoneadm list -cv
    ID NAME STATUS PATH BRAND IP
    0 global running / native shared
    4 siebeldb running /zones/dbserver native excl
    - orabi configured /zones3/orabi native shared

  3. Move the zonepath for the zone to be migrated from the old host to the new host.

    Do the following on the old host:
    # cd /zones3
    # tar -Ecf orabi.tar orabi
    # compress orabi.tar

    # sftp newhost
    Connecting to newhost...
    sftp> cd /zones3
    sftp> put orabi.tar.Z
    Uploading orabi.tar.Z to /zones3/orabi.tar.Z
    sftp> quit

    On the newhost:
    # cd /zones3
    # uncompress orabi.tar.Z
    # tar xf orabi.tar

  4. On the new host, configure the zone.

    Create the equivalent zone orabi on the new host -- use the zonecfg command with the -a option and the zonepath on the new host. Make any required adjustments to the configuration and commit the configuration.
    # zonecfg -z orabi
    orabi: No such zone configured
    Use 'create' to begin configuring a new zone.
    zonecfg:orabi> create -a /zones3/orabi
    zonecfg:orabi> info
    zonename: orabi
    zonepath: /zones3/orabi
    brand: native
    autoboot: false
    bootargs:
    pool:
    limitpriv: all,!sys_suser_compat,!sys_res_config,!sys_net_config,!sys_linkdir,!sys_devices,!sys_config,!proc_zone,!dtrace_kernel,!sys_ip_config
    scheduling-class:
    ip-type: shared
    inherit-pkg-dir:
    dir: /lib
    inherit-pkg-dir:
    dir: /platform
    inherit-pkg-dir:
    dir: /sbin
    inherit-pkg-dir:
    dir: /usr
    net:
    address: IPaddress
    physical: nxge1
    defrouter not specified
    zonecfg:orabi> set capped-memory
    zonecfg:orabi:capped-memory> set physical=8G
    zonecfg:orabi:capped-memory> end
    zonecfg:orabi> commit
    zonecfg:orabi> exit

  5. Attach the zone on the new host with a validation check and update the zone to match a host running later versions of the dependent packages
    # ls -ld /zones3
    drwxrwxrwx 5 root root 512 Jul 15 12:30 /zones3
    # chmod g-w,o-w /zones3
    # ls -ld /zones3
    drwxr-xr-x 5 root root 512 Jul 15 12:30 /zones3

    # zoneadm -z orabi attach -u
    Getting the list of files to remove
    Removing 1740 files
    Remove 607 of 607 packages
    Installing 1878 files
    Add 627 of 627 packages
    Updating editable files
    The file within the zone contains a log of the zone update.

    # zoneadm list -cv
    ID NAME STATUS PATH BRAND IP
    0 global running / native shared
    - orabi installed /zones3/orabi native shared

    Note:
    It is possible to force the attach operation without performing the validation. You can do so with the help of -F option
    # zoneadm -z orabi attach -F

    Be careful when using this option because it could lead to an incorrect configuration; and an incorrect configuration could result in undefined behavior


[New: 07/19/2009]
Tip: How to find out whether connected to the primary OS instance or the virtual instance?

If the command zonename returns global, then you are connected to the OS instance that was booted from the physical hardware. If you see any string other than global, you might have connected to the virtual OS instance.

Alternatively try running prstat -Z or zoneadm list -cv commands. If you see exactly one non-zero Zone ID, it is an indication that you are connected to a non-global zone.

Suggested reading:
Technorati tags
| |


Tuesday, February 14, 2006
 
Guitar: Major Basic Chords

Chords are the basis of all music, and are the foundation of guitar. 3 or more different notes or pitches sounding {almost} simultaneously, over a period of time, can be termed as a chord. On a guitar, a chord can be played by playing 3 or more strings.

Just like any new skill, learning guitar chords takes some time. Usually a beginner {guitarist} learns playing a guitar with major basic chords. These are the easiest chords to play, requiring the least amount of effort/fingers. The most common major chords are: C, A, G, E and D -- easy to remember as the word "CAGED". These chords usually have one or more open strings, a string that sounds, but we don't put any finger on it.

C-A-G-E-D major basic chords were shown in the following chord diagrams (courtesy: learn-guitar-online.com):

The black dots in the chord diagram(s) tells us what fret and string to place the fingers. The number inside the dot tells us which finger to use. Fingers are numbered as follows - index: 1, middle: 2, ring: 3 & little finger: 4. The "X" in the chord diagram tells us that the string should not be played. The "O" under the chord diagram indicates that it is an open string.

Technorati Tags:
|



2004-2019 

This page is powered by Blogger. Isn't yours?