SlideShare a Scribd company logo
Express-Guide
                                       ~to~
                                 Basic Setup of


                Solaris Zones
                       Native Zones & lx-Branded Zones
                                                by, ABK ~ http://www.twitter.com/aBionic


                                 ::Task Detail::

   ๎€Œ   Creating/Managing Solaris Zones
   ๎€Œ   mirroring an existing CentOS Box over a Zone
   ๎€Œ   setting up SVN service over a Zone
   ๎€Œ   setting CIFS over a Zone



                                 ::Background::

Solaris Zones are a part of Solaris Container Technology. Zones manage the
namespace isolation for containers implementing virtualization.

In Solaris 10, containers are zone using Resource Management Feature via Solaris
Resource Manager. There is no performance overhead to this approach.

Resources are used as a 'Dynamic resource Pool' managed between containers using
a 'Fair Share Scheduler'.

Broadly there are two types of zones:
   ๎€Œ Native Zone
     These are basic stripped down native Solaris O.S. Instances.
     Native zones are further of two types where
       โ—ฆ 'Small Zones' (also known as Sparse Root Zone) have several system
         directories shared with Solaris O.S. or Global Zone in non-writable mode
       โ—ฆ 'Big Zones' (also known as Whole Root Zone) have all independent
         directories

   ๎€Œ lx-Branded Zone
     these are zones installed from installer of O.S., currently only linux branded
     zones are available also called lx-zones.
::Execution Method::

         (a.) Creating native {small,big} and lx-branded zones

๎€Œ Setting up Resource Pool to be used by zones
  โ—ฆ Enabling Resource Pool features
     โ–ช #pooladm -e

  โ—ฆ Saving current resource pool
    โ–ช #pooladm -s

  โ—ฆ List current Pools
    โ–ช #pooladm
    โ–ช {generally only 'pool_default' is present on fresh zone}

  โ—ฆ Configuring 'default_pool' to enable Fair Share              Scheduler
    over it
    โ–ช #poolcfg     -c    'modify pool   pool_default              (string
       pool.scheduler="FSS")'
    โ–ช #pooladm โ€“c

  โ—ฆ Priority Controller moving all processes and resources under
    Fair Share Scheduler
    โ–ช #priocntl -s -c FSS -i class TS
    โ–ช #priocntl -s -c FSS -i pid 1


๎€Œ Configuring a Solaris Zone
  โ—ฆ This lists the current zones
    โ–ช #zoneadm list -cv

  โ—ฆ Configuring a new Native Zone
    โ–ช registering a new Zone
      โ€ข #zonecfg -z newZoneName

  โ—ฆ regarding 3 different types of zones follow respective command
    โ–ช for creating a native small-zone {with shared directories}
       โ€ข zonecfg:newZoneName>create
    โ–ช for creating a native big-zone {with independent directories}
       โ€ข zonecfg:newZoneName>create -b
    โ–ช for creating a lx-branded zone
       โ€ข zonecfg:lxZoneName>create -t SUNWlx
โ—ฆ assigning it a location on HDD to be installed
  โ–ช zonecfg:newZoneName>set
     zonepath=/export/home/zones/newZoneName

โ—ฆ Adding a Network Interface Resource to it
  โ–ช zonecfg:newZoneName>add net
  โ–ช zonecfg:newZoneName:net>set address=192.168.16.61
  โ–ช zonecfg:newZoneName:net>set physical=eth0
  โ–ช zonecfg:newZoneName:net>end

โ—ฆ Assign a Resource Pool (should be already existing) to it
  โ–ช zonecfg:newZoneName>set pool=pool_default

โ—ฆ Adding a resource controller to this Zone
  โ–ช zonecfg:newZoneName>add rctl
  โ–ช zonecfg:newZoneName:rctl>set name=zone.cpu-shares
  โ–ช zonecfg:newZoneName:rctl>
    add value (priv=privileged,limit=1,action=none)
  โ–ช zonecfg:newZoneName:rctl>end

โ—ฆ Giving a CD-ROM access (required if installing lx-zone from ISO or CD)
  โ–ช zonecfg:newZoneName>add fs
  โ–ช zonecfg:newZoneName:fs>set dir=/cdrom
  โ–ช zonecfg:newZoneName:fs>set special=/cdrom
  โ–ช zonecfg:newZoneName:fs>set typr=lofs
  โ–ช zonecfg:newZoneName>set options=[nodevices]
  โ–ช zonecfg:newZoneName>end

โ—ฆ Verify, Save and Exit
  โ–ช zonecfg:newZoneName>verify
  โ–ช zonecfg:newZoneName>commit
  โ–ช zonecfg:newZoneName>exit

โ—ฆ Creating the HDD location for Zone
  โ–ช #mkdir -p /export/home/zones/newZoneName

โ—ฆ Granting required permissions to location
  โ–ช #chmod 700 /export/home/zones/newZoneName

โ—ฆ Confirming the registration of Zone Configuration
  โ–ช #zoneadm list -cv
โ—ฆ It should show a listing for currently created zone like
     โ–ช newZoneName configured at /export/home/zones/newZoneName, it is
         native and shared (small-zone)

๎€Œ Installing the already configured zone
  โ—ฆ Installing the zone if it's a Native {small or big} zone
     โ–ช #zoneadm -z newZoneName install

   โ—ฆ if it's a lx-brand zone with O.S. TarBall, automatically creating ZFS
     โ–ช #zoneadm -z newZoneName install -d /tmp/os.tgz

   โ—ฆ if it's a lx-branded zone with O.S. TarBall, not creating ZFS
     โ–ช #zoneadm -z newZoneName install -x nodataset -d /tmp/os.tgz

   โ—ฆ if no archive path is given then default is Disc Drive, but if you are
     installing from Disc Drive, you need to install VOLFS like:
     โ–ช #svcadm enable svc:/system/filesystem/volfs:default
     โ–ช #svcs | grep volfs

   โ—ฆ If its installed without any error, just check its status using
     โ–ช #zoneadm list -cv

   โ—ฆ it should show a listing for currently created zone like newZoneName
     installed /export/home/zones/newZoneName native shared


๎€Œ Using the installed Zone
  โ—ฆ Now either make it ready to boot, or directly boot which will make it
     ready itself
     โ–ช #zoneadm -z newZoneName ready
        โ€ข It should show a listing for currently created zone like
           โ—ฆ newZoneName         ready     /export/home/zones/newZoneName
               native shared
           โ—ฆ #zoneadm -z newZoneName boot

   โ—ฆ It should show a listing for currently created zone like
     โ–ช newZoneName running /export/home/zones/newZoneName
         native shared

   โ—ฆ To login
     โ–ช #zlogin newZoneName
     โ–ช Now you are inside the Zone, running 'uname -a' should present you
        with newZoneName
โ—ฆ To login into Zone Console like remote connect
    โ–ช #zlogin -C newZoneName

  โ—ฆ To exit the zone
    โ–ช #exit

  โ—ฆ To halt the zone simply use
    โ–ช #zoneadm -z newZoneName halt

  โ—ฆ it should show a listing for currently created zone like
    โ–ช newZoneName running /export/home/zones/newZoneName
        native shared

  โ—ฆ To reboot the zone simply use
    โ–ช #zoneadm -z newZoneName reboot

  โ—ฆ To uninstall the zone
    โ–ช #zoneadm -z newZoneName uninstall -F


           (b.) Mirroring an existing CentOS Box over a Zone

๎€Œ There are two ways to achieve this
  โ—ฆ TarBall the entire distro you want to port to Zone and use that TarBall to
    install the Zone.

  โ—ฆ Suppose, you already have an lx-branded zone and use the same. Then
    you need to use utility like RSync to Sync the files from Source Machine
    to lx-Zone.

๎€Œ You can also add packages like svn, gcc, make, netsnmp, openssl,
  CoolStack's ( apache2, mysql, php, perl, python, ruby, squid) to lx-zone and
  they work great over Zone.



                (c.) Setting up SVN service over a Zone

๎€Œ Users connect to svn mirror servers, the WebDAV SVN module serves
  content from the local system, and sends commits to the main server. Then
  main server pushes commit to mirrors using 'svnsync' over a protected link
  only writable by main server.
  โ—ฆ Install Collabnet SVN client & server binaries {available at
'http://www.collab.net/downloads/subversion/solaris.html'}

    โ—ฆ Create a symlink collabnet modules a
      โ–ช #ln     -s    /opt/CollabNet_Subversion/modules/mod_dav_svn.so
         /etc/httpd/modules/mod_dav_svn.so
      โ–ช #
         ln   -s   /opt/CollabNet_Subversion/modules/mod_authz_svn.so
         /etc/httpd/modules/mod_authz_svn.so

    โ—ฆ Add below lines to 'httpd.conf' under Apache2 directory as
      โ–ช LoadModule dav_svn_module /etc/httpd/modules/mod_dav_svn.so
       LoadModule authz_svn_module /etc/httpd/modules/mod_authz_svn.so
       <Location /someproject>
       DAV svn
       SVNPath /repos/svn/repos/someproject
       AuthzSVNAccessFile /repos/svn/access/someproject/svn_access.conf
       AuthType Basic
       AuthName "Active Directory LDAP Authentication"
       AuthBasicProvider ldap
       AuthzLDAPAuthoritative off
       AuthLDAPBindDN user@adserver.thoughtworks.com
       AuthLDAPBindPassword somePassword
       AuthLDAPURL "ldap://adserver.company.com:389/ou=Principal,dc=
dcString1,dc=dcStrin2?SAMAccountName?sub?(&(objectClass=user))"
       require vaild-user
       SVNPathAuthz off
       </Location>

    โ—ฆ Reload httpd service
    โ—ฆ
    โ—ฆ Add following lines to '/repos/svn/access/someproject/svn_access.conf'
      โ–ช can_write_group=aduserA, aduserB,aduserC
         read_only_group=aduserD,aduserE,aduserF
         no_access_group=aduserG,aduserH,aduserJ
         [repository:/]
         @can_write_group=rw
         @read_only_group=r
         @no_access_group=

    โ—ฆ Create a repository as follows:
      โ–ช svnadmin create /repos/svn/repos/someproject
      โ–ช change permissions as follows
      โ–ช chmod -R g+w /repos/svn/repos/someproject
      โ–ช chown -R apache.apache /repos/svn/repos/someproject

    โ—ฆ Similarly, you can setup mirror server with the configuration given at
      Link Above.
(d.) Setting CIFS over a Zone

๎€Œ Initial reading disclosed its not possible over local zones, only global zone
  could support CIFS.

๎€Œ So just did practical with setting up SAMBA server on Solaris Zones;
  implemented SWAT (Samba Web Admin Tool) for easy configuration.
  โ—ฆ for Solaris 10, SAMBA came up real easy to configure
     โ–ช #svcs samba wins swat
     โ–ช #svcadm enable samba
     โ–ช #svcadm enable wins
     โ–ช #svcadm enable swat

   โ—ฆ Simply browsing http://samba_Zone_IPaddress:901/ presents with a nice
     SWAT GUI to configure SAMBA service on that zone.
     To get start with, you need to
     โ–ช > select 'Shares', add new share with proper configuration
     โ–ช > select 'Users', to add Users
     โ–ช > Restart Services from UI itself
     โ–ช > now try accessing this share from Windows as normal
        Windows Share using User created




                        ::Tools/Technology Used::

๎€Œ Solaris Zones: http://www.solarisinternals.com/wiki/index.php/Zones
๎€Œ CoolStack Software Bundles: {now superseded by WebStack} ~
  http://hub.opensolaris.org/bin/view/Project+webstack/sunwebstack
๎€Œ Rsync: http://en.wikipedia.org/wiki/Rsync
๎€Œ SVN: http://subversion.apache.org/
๎€Œ Apache: http://www.apache.org/
๎€Œ CIFS: http://msdn.microsoft.com/en-us/library/aa302188.aspx
๎€Œ Samba: http://www.samba.org/
๎€Œ SWAT: http://linux.die.net/man/8/swat



                                ::Inference::

๎€Œ Solaris Zones is a highly under-used and over-capable technology.
๎€Œ Due to its minimal overhead architecture on Virtualization, its the best
  option according to me for Virtualization of Linux Boxes.

๎€Œ There is still a great scope left to be developed in this technology.



                       ::Troubleshooting/Updates::

๎€Œ Problem: The Apache mod_dav and mod_dav_svn module was failing to
  integrate with SVN implementation.
  Solution:
  Initially I was using CoolStack's Software Bundle of Apache+PHP+MySQL
  due to ease of use on Native-Small Zone, but found out that actually it's
  implementation raised the incompatibility issue. So, created a Native Big-
  Zone and used standard Apache release, and it worked.
Ad

More Related Content

What's hot (20)

Failsafe Mechanism for Yahoo Homepage
Failsafe Mechanism for Yahoo HomepageFailsafe Mechanism for Yahoo Homepage
Failsafe Mechanism for Yahoo Homepage
Kit Chan
ย 
Docker advance topic
Docker advance topicDocker advance topic
Docker advance topic
Kalkey
ย 
Under the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, Docker
Under the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, DockerUnder the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, Docker
Under the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, Docker
Docker, Inc.
ย 
Installation Openstack Swift
Installation Openstack SwiftInstallation Openstack Swift
Installation Openstack Swift
ymtech
ย 
Whatโ€™s new in Swarm 1.1
Whatโ€™s new in Swarm 1.1Whatโ€™s new in Swarm 1.1
Whatโ€™s new in Swarm 1.1
k z
ย 
Deep dive in Docker Overlay Networks
Deep dive in Docker Overlay NetworksDeep dive in Docker Overlay Networks
Deep dive in Docker Overlay Networks
Laurent Bernaille
ย 
Docker advance1
Docker advance1Docker advance1
Docker advance1
Gourav Varma
ย 
Docking postgres
Docking postgresDocking postgres
Docking postgres
rycamor
ย 
Docker Networking & Swarm Mode Introduction
Docker Networking & Swarm Mode IntroductionDocker Networking & Swarm Mode Introduction
Docker Networking & Swarm Mode Introduction
Phi Huynh
ย 
Deep Dive in Docker Overlay Networks
Deep Dive in Docker Overlay NetworksDeep Dive in Docker Overlay Networks
Deep Dive in Docker Overlay Networks
Laurent Bernaille
ย 
Running High Performance & Fault-tolerant Elasticsearch Clusters on Docker
Running High Performance & Fault-tolerant Elasticsearch Clusters on DockerRunning High Performance & Fault-tolerant Elasticsearch Clusters on Docker
Running High Performance & Fault-tolerant Elasticsearch Clusters on Docker
Sematext Group, Inc.
ย 
Introductory Overview to Managing AWS with Terraform
Introductory Overview to Managing AWS with TerraformIntroductory Overview to Managing AWS with Terraform
Introductory Overview to Managing AWS with Terraform
Michael Heyns
ย 
JDO 2019: Container orchestration with Docker Swarm - Jakub Hajek
JDO 2019: Container orchestration with Docker Swarm - Jakub HajekJDO 2019: Container orchestration with Docker Swarm - Jakub Hajek
JDO 2019: Container orchestration with Docker Swarm - Jakub Hajek
PROIDEA
ย 
New Docker Features for Orchestration and Containers
New Docker Features for Orchestration and ContainersNew Docker Features for Orchestration and Containers
New Docker Features for Orchestration and Containers
Jeff Anderson
ย 
Docker up and running
Docker up and runningDocker up and running
Docker up and running
Victor S. Recio
ย 
Automating complex infrastructures with Puppet
Automating complex infrastructures with PuppetAutomating complex infrastructures with Puppet
Automating complex infrastructures with Puppet
Kris Buytaert
ย 
Automated Java Deployments With Rpm
Automated Java Deployments With RpmAutomated Java Deployments With Rpm
Automated Java Deployments With Rpm
Martin Jackson
ย 
Percona Live 2012PPT๏ผš introduction-to-mysql-replication
Percona Live 2012PPT๏ผš introduction-to-mysql-replicationPercona Live 2012PPT๏ผš introduction-to-mysql-replication
Percona Live 2012PPT๏ผš introduction-to-mysql-replication
mysqlops
ย 
Deeper dive in Docker Overlay Networks
Deeper dive in Docker Overlay NetworksDeeper dive in Docker Overlay Networks
Deeper dive in Docker Overlay Networks
Laurent Bernaille
ย 
Infrastructure Deployment with Docker & Ansible
Infrastructure Deployment with Docker & AnsibleInfrastructure Deployment with Docker & Ansible
Infrastructure Deployment with Docker & Ansible
Robert Reiz
ย 
Failsafe Mechanism for Yahoo Homepage
Failsafe Mechanism for Yahoo HomepageFailsafe Mechanism for Yahoo Homepage
Failsafe Mechanism for Yahoo Homepage
Kit Chan
ย 
Docker advance topic
Docker advance topicDocker advance topic
Docker advance topic
Kalkey
ย 
Under the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, Docker
Under the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, DockerUnder the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, Docker
Under the Hood with Docker Swarm Mode - Drew Erny and Nishant Totla, Docker
Docker, Inc.
ย 
Installation Openstack Swift
Installation Openstack SwiftInstallation Openstack Swift
Installation Openstack Swift
ymtech
ย 
Whatโ€™s new in Swarm 1.1
Whatโ€™s new in Swarm 1.1Whatโ€™s new in Swarm 1.1
Whatโ€™s new in Swarm 1.1
k z
ย 
Deep dive in Docker Overlay Networks
Deep dive in Docker Overlay NetworksDeep dive in Docker Overlay Networks
Deep dive in Docker Overlay Networks
Laurent Bernaille
ย 
Docker advance1
Docker advance1Docker advance1
Docker advance1
Gourav Varma
ย 
Docking postgres
Docking postgresDocking postgres
Docking postgres
rycamor
ย 
Docker Networking & Swarm Mode Introduction
Docker Networking & Swarm Mode IntroductionDocker Networking & Swarm Mode Introduction
Docker Networking & Swarm Mode Introduction
Phi Huynh
ย 
Deep Dive in Docker Overlay Networks
Deep Dive in Docker Overlay NetworksDeep Dive in Docker Overlay Networks
Deep Dive in Docker Overlay Networks
Laurent Bernaille
ย 
Running High Performance & Fault-tolerant Elasticsearch Clusters on Docker
Running High Performance & Fault-tolerant Elasticsearch Clusters on DockerRunning High Performance & Fault-tolerant Elasticsearch Clusters on Docker
Running High Performance & Fault-tolerant Elasticsearch Clusters on Docker
Sematext Group, Inc.
ย 
Introductory Overview to Managing AWS with Terraform
Introductory Overview to Managing AWS with TerraformIntroductory Overview to Managing AWS with Terraform
Introductory Overview to Managing AWS with Terraform
Michael Heyns
ย 
JDO 2019: Container orchestration with Docker Swarm - Jakub Hajek
JDO 2019: Container orchestration with Docker Swarm - Jakub HajekJDO 2019: Container orchestration with Docker Swarm - Jakub Hajek
JDO 2019: Container orchestration with Docker Swarm - Jakub Hajek
PROIDEA
ย 
New Docker Features for Orchestration and Containers
New Docker Features for Orchestration and ContainersNew Docker Features for Orchestration and Containers
New Docker Features for Orchestration and Containers
Jeff Anderson
ย 
Docker up and running
Docker up and runningDocker up and running
Docker up and running
Victor S. Recio
ย 
Automating complex infrastructures with Puppet
Automating complex infrastructures with PuppetAutomating complex infrastructures with Puppet
Automating complex infrastructures with Puppet
Kris Buytaert
ย 
Automated Java Deployments With Rpm
Automated Java Deployments With RpmAutomated Java Deployments With Rpm
Automated Java Deployments With Rpm
Martin Jackson
ย 
Percona Live 2012PPT๏ผš introduction-to-mysql-replication
Percona Live 2012PPT๏ผš introduction-to-mysql-replicationPercona Live 2012PPT๏ผš introduction-to-mysql-replication
Percona Live 2012PPT๏ผš introduction-to-mysql-replication
mysqlops
ย 
Deeper dive in Docker Overlay Networks
Deeper dive in Docker Overlay NetworksDeeper dive in Docker Overlay Networks
Deeper dive in Docker Overlay Networks
Laurent Bernaille
ย 
Infrastructure Deployment with Docker & Ansible
Infrastructure Deployment with Docker & AnsibleInfrastructure Deployment with Docker & Ansible
Infrastructure Deployment with Docker & Ansible
Robert Reiz
ย 

Viewers also liked (7)

Wlan
WlanWlan
Wlan
sanjeeviniindia1186
ย 
Lecture 19 dynamic web - java - part 1
Lecture 19   dynamic web - java - part 1Lecture 19   dynamic web - java - part 1
Lecture 19 dynamic web - java - part 1
ะ”. ะ“ะฐะฝะฐะฐ
ย 
Syslog Centralization Logging with Windows ~ A techXpress Guide
Syslog Centralization Logging with Windows ~ A techXpress GuideSyslog Centralization Logging with Windows ~ A techXpress Guide
Syslog Centralization Logging with Windows ~ A techXpress Guide
Abhishek Kumar
ย 
Insecurity-In-Security version.2 (2011)
Insecurity-In-Security version.2 (2011)Insecurity-In-Security version.2 (2011)
Insecurity-In-Security version.2 (2011)
Abhishek Kumar
ย 
Insecurity-In-Security version.1 (2010)
Insecurity-In-Security version.1 (2010)Insecurity-In-Security version.1 (2010)
Insecurity-In-Security version.1 (2010)
Abhishek Kumar
ย 
Ethernet Bonding for Multiple NICs on Linux ~ A techXpress Guide
Ethernet Bonding for Multiple NICs on Linux ~ A techXpress GuideEthernet Bonding for Multiple NICs on Linux ~ A techXpress Guide
Ethernet Bonding for Multiple NICs on Linux ~ A techXpress Guide
Abhishek Kumar
ย 
DevOps with Sec-ops
DevOps with Sec-opsDevOps with Sec-ops
DevOps with Sec-ops
Abhishek Kumar
ย 
Syslog Centralization Logging with Windows ~ A techXpress Guide
Syslog Centralization Logging with Windows ~ A techXpress GuideSyslog Centralization Logging with Windows ~ A techXpress Guide
Syslog Centralization Logging with Windows ~ A techXpress Guide
Abhishek Kumar
ย 
Insecurity-In-Security version.2 (2011)
Insecurity-In-Security version.2 (2011)Insecurity-In-Security version.2 (2011)
Insecurity-In-Security version.2 (2011)
Abhishek Kumar
ย 
Insecurity-In-Security version.1 (2010)
Insecurity-In-Security version.1 (2010)Insecurity-In-Security version.1 (2010)
Insecurity-In-Security version.1 (2010)
Abhishek Kumar
ย 
Ethernet Bonding for Multiple NICs on Linux ~ A techXpress Guide
Ethernet Bonding for Multiple NICs on Linux ~ A techXpress GuideEthernet Bonding for Multiple NICs on Linux ~ A techXpress Guide
Ethernet Bonding for Multiple NICs on Linux ~ A techXpress Guide
Abhishek Kumar
ย 
DevOps with Sec-ops
DevOps with Sec-opsDevOps with Sec-ops
DevOps with Sec-ops
Abhishek Kumar
ย 
Ad

Similar to Solaris Zones (native & lxbranded) ~ A techXpress Guide (20)

An Express Guide ~ Zabbix for IT Monitoring
An Express Guide ~ Zabbix for IT Monitoring An Express Guide ~ Zabbix for IT Monitoring
An Express Guide ~ Zabbix for IT Monitoring
Abhishek Kumar
ย 
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
Kasun Gajasinghe
ย 
WSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster NodesWSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2
ย 
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Osama Mustafa
ย 
Sharded cluster tutorial
Sharded cluster tutorialSharded cluster tutorial
Sharded cluster tutorial
Antonios Giannopoulos
ย 
MongoDB - Sharded Cluster Tutorial
MongoDB - Sharded Cluster TutorialMongoDB - Sharded Cluster Tutorial
MongoDB - Sharded Cluster Tutorial
Jason Terpko
ย 
MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017
MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017
MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017
Antonios Giannopoulos
ย 
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
Alessandro Arrichiello
ย 
Terraform Cosmos DB
Terraform Cosmos DBTerraform Cosmos DB
Terraform Cosmos DB
Moisรฉs Elรญas Araya
ย 
Docker and friends at Linux Days 2014 in Prague
Docker and friends at Linux Days 2014 in PragueDocker and friends at Linux Days 2014 in Prague
Docker and friends at Linux Days 2014 in Prague
tomasbart
ย 
Docker container management
Docker container managementDocker container management
Docker container management
Karol Kreft
ย 
Add and configure lu ns in solaris
Add and configure lu ns in solarisAdd and configure lu ns in solaris
Add and configure lu ns in solaris
Amrita Dey
ย 
Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)
Ben Hall
ย 
Oracle goldengate and RAC12c
Oracle goldengate and RAC12cOracle goldengate and RAC12c
Oracle goldengate and RAC12c
Siraj Ahmed
ย 
Ubic-public
Ubic-publicUbic-public
Ubic-public
Vyacheslav Matyukhin
ย 
Ubic
UbicUbic
Ubic
Vyacheslav Matyukhin
ย 
OpenStack Tokyo Meeup - Gluster Storage Day
OpenStack Tokyo Meeup - Gluster Storage DayOpenStack Tokyo Meeup - Gluster Storage Day
OpenStack Tokyo Meeup - Gluster Storage Day
Dan Radez
ย 
The age of orchestration: from Docker basics to cluster management
The age of orchestration: from Docker basics to cluster managementThe age of orchestration: from Docker basics to cluster management
The age of orchestration: from Docker basics to cluster management
Nicola Paolucci
ย 
Start tracking your ruby infrastructure
Start tracking your ruby infrastructureStart tracking your ruby infrastructure
Start tracking your ruby infrastructure
Sergiy Kukunin
ย 
Real World Experience of Running Docker in Development and Production
Real World Experience of Running Docker in Development and ProductionReal World Experience of Running Docker in Development and Production
Real World Experience of Running Docker in Development and Production
Ben Hall
ย 
An Express Guide ~ Zabbix for IT Monitoring
An Express Guide ~ Zabbix for IT Monitoring An Express Guide ~ Zabbix for IT Monitoring
An Express Guide ~ Zabbix for IT Monitoring
Abhishek Kumar
ย 
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
[WSO2] Deployment Synchronizer for Deployment Artifact Synchronization Betwee...
Kasun Gajasinghe
ย 
WSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster NodesWSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2 Dep Sync for Artifact Synchronization of Cluster Nodes
WSO2
ย 
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Step by Step to Install oracle grid 11.2.0.3 on solaris 11.1
Osama Mustafa
ย 
MongoDB - Sharded Cluster Tutorial
MongoDB - Sharded Cluster TutorialMongoDB - Sharded Cluster Tutorial
MongoDB - Sharded Cluster Tutorial
Jason Terpko
ย 
MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017
MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017
MongoDB โ€“ Sharded cluster tutorial - Percona Europe 2017
Antonios Giannopoulos
ย 
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
[Devconf.cz][2017] Understanding OpenShift Security Context Constraints
Alessandro Arrichiello
ย 
Docker and friends at Linux Days 2014 in Prague
Docker and friends at Linux Days 2014 in PragueDocker and friends at Linux Days 2014 in Prague
Docker and friends at Linux Days 2014 in Prague
tomasbart
ย 
Docker container management
Docker container managementDocker container management
Docker container management
Karol Kreft
ย 
Add and configure lu ns in solaris
Add and configure lu ns in solarisAdd and configure lu ns in solaris
Add and configure lu ns in solaris
Amrita Dey
ย 
Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)Running Docker in Development & Production (#ndcoslo 2015)
Running Docker in Development & Production (#ndcoslo 2015)
Ben Hall
ย 
Oracle goldengate and RAC12c
Oracle goldengate and RAC12cOracle goldengate and RAC12c
Oracle goldengate and RAC12c
Siraj Ahmed
ย 
OpenStack Tokyo Meeup - Gluster Storage Day
OpenStack Tokyo Meeup - Gluster Storage DayOpenStack Tokyo Meeup - Gluster Storage Day
OpenStack Tokyo Meeup - Gluster Storage Day
Dan Radez
ย 
The age of orchestration: from Docker basics to cluster management
The age of orchestration: from Docker basics to cluster managementThe age of orchestration: from Docker basics to cluster management
The age of orchestration: from Docker basics to cluster management
Nicola Paolucci
ย 
Start tracking your ruby infrastructure
Start tracking your ruby infrastructureStart tracking your ruby infrastructure
Start tracking your ruby infrastructure
Sergiy Kukunin
ย 
Real World Experience of Running Docker in Development and Production
Real World Experience of Running Docker in Development and ProductionReal World Experience of Running Docker in Development and Production
Real World Experience of Running Docker in Development and Production
Ben Hall
ย 
Ad

More from Abhishek Kumar (11)

DevOps?!@
DevOps?!@DevOps?!@
DevOps?!@
Abhishek Kumar
ย 
xml-motor ~ What,Why,How
xml-motor ~ What,Why,Howxml-motor ~ What,Why,How
xml-motor ~ What,Why,How
Abhishek Kumar
ย 
XML-Motor
XML-MotorXML-Motor
XML-Motor
Abhishek Kumar
ย 
Squid for Load-Balancing & Cache-Proxy ~ A techXpress Guide
Squid for Load-Balancing & Cache-Proxy ~ A techXpress GuideSquid for Load-Balancing & Cache-Proxy ~ A techXpress Guide
Squid for Load-Balancing & Cache-Proxy ~ A techXpress Guide
Abhishek Kumar
ย 
An Express Guide ~ "dummynet" for tweaking network latencies & bandwidth
An Express Guide ~ "dummynet" for tweaking network latencies & bandwidthAn Express Guide ~ "dummynet" for tweaking network latencies & bandwidth
An Express Guide ~ "dummynet" for tweaking network latencies & bandwidth
Abhishek Kumar
ย 
An Express Guide ~ Cacti for IT Infrastructure Monitoring & Graphing
An Express Guide ~ Cacti for IT Infrastructure Monitoring & GraphingAn Express Guide ~ Cacti for IT Infrastructure Monitoring & Graphing
An Express Guide ~ Cacti for IT Infrastructure Monitoring & Graphing
Abhishek Kumar
ย 
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAn Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
Abhishek Kumar
ย 
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Abhishek Kumar
ย 
XSS Defeating Concept - Part 2
XSS Defeating Concept - Part 2XSS Defeating Concept - Part 2
XSS Defeating Concept - Part 2
Abhishek Kumar
ย 
XSS Defeating Trick ~=ABK=~ WhitePaper
XSS Defeating Trick ~=ABK=~ WhitePaperXSS Defeating Trick ~=ABK=~ WhitePaper
XSS Defeating Trick ~=ABK=~ WhitePaper
Abhishek Kumar
ย 
FreeSWITCH on RedHat, Fedora, CentOS
FreeSWITCH on RedHat, Fedora, CentOSFreeSWITCH on RedHat, Fedora, CentOS
FreeSWITCH on RedHat, Fedora, CentOS
Abhishek Kumar
ย 
xml-motor ~ What,Why,How
xml-motor ~ What,Why,Howxml-motor ~ What,Why,How
xml-motor ~ What,Why,How
Abhishek Kumar
ย 
Squid for Load-Balancing & Cache-Proxy ~ A techXpress Guide
Squid for Load-Balancing & Cache-Proxy ~ A techXpress GuideSquid for Load-Balancing & Cache-Proxy ~ A techXpress Guide
Squid for Load-Balancing & Cache-Proxy ~ A techXpress Guide
Abhishek Kumar
ย 
An Express Guide ~ "dummynet" for tweaking network latencies & bandwidth
An Express Guide ~ "dummynet" for tweaking network latencies & bandwidthAn Express Guide ~ "dummynet" for tweaking network latencies & bandwidth
An Express Guide ~ "dummynet" for tweaking network latencies & bandwidth
Abhishek Kumar
ย 
An Express Guide ~ Cacti for IT Infrastructure Monitoring & Graphing
An Express Guide ~ Cacti for IT Infrastructure Monitoring & GraphingAn Express Guide ~ Cacti for IT Infrastructure Monitoring & Graphing
An Express Guide ~ Cacti for IT Infrastructure Monitoring & Graphing
Abhishek Kumar
ย 
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource MonitoringAn Express Guide ~ SNMP for Secure Rremote Resource Monitoring
An Express Guide ~ SNMP for Secure Rremote Resource Monitoring
Abhishek Kumar
ย 
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Presentation on "XSS Defeating Concept in (secure)SiteHoster" : 'nullcon-2011'
Abhishek Kumar
ย 
XSS Defeating Concept - Part 2
XSS Defeating Concept - Part 2XSS Defeating Concept - Part 2
XSS Defeating Concept - Part 2
Abhishek Kumar
ย 
XSS Defeating Trick ~=ABK=~ WhitePaper
XSS Defeating Trick ~=ABK=~ WhitePaperXSS Defeating Trick ~=ABK=~ WhitePaper
XSS Defeating Trick ~=ABK=~ WhitePaper
Abhishek Kumar
ย 
FreeSWITCH on RedHat, Fedora, CentOS
FreeSWITCH on RedHat, Fedora, CentOSFreeSWITCH on RedHat, Fedora, CentOS
FreeSWITCH on RedHat, Fedora, CentOS
Abhishek Kumar
ย 

Recently uploaded (20)

ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
ย 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
ย 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
ย 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
ย 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
ย 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
ย 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
ย 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
ย 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
ย 
AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
ย 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
ย 
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
ย 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
ย 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
ย 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
ย 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
ย 
How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?How Can I use the AI Hype in my Business Context?
How Can I use the AI Hype in my Business Context?
Daniel Lehner
ย 
AI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global TrendsAI and Data Privacy in 2025: Global Trends
AI and Data Privacy in 2025: Global Trends
InData Labs
ย 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
ย 
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdfComplete Guide to Advanced Logistics Management Software in Riyadh.pdf
Complete Guide to Advanced Logistics Management Software in Riyadh.pdf
Software Company
ย 
Quantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur MorganQuantum Computing Quick Research Guide by Arthur Morgan
Quantum Computing Quick Research Guide by Arthur Morgan
Arthur Morgan
ย 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
ย 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
ย 
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdfSAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
SAP Modernization: Maximizing the Value of Your SAP S/4HANA Migration.pdf
Precisely
ย 
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptxIncreasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Increasing Retail Store Efficiency How can Planograms Save Time and Money.pptx
Anoop Ashok
ย 
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdfThe Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
The Evolution of Meme Coins A New Era for Digital Currency ppt.pdf
Abi john
ย 
2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx2025-05-Q4-2024-Investor-Presentation.pptx
2025-05-Q4-2024-Investor-Presentation.pptx
Samuele Fogagnolo
ย 
Role of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered ManufacturingRole of Data Annotation Services in AI-Powered Manufacturing
Role of Data Annotation Services in AI-Powered Manufacturing
Andrew Leo
ย 
AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...
AI Changes Everything โ€“ Talk at Cardiff Metropolitan University, 29th April 2...
Alan Dix
ย 
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc Webinar: Consumer Expectations vs Corporate Realities on Data Broker...
TrustArc
ย 
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy ConsumptionDrupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Drupalcamp Finland โ€“ Measuring Front-end Energy Consumption
Exove
ย 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
ย 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
ย 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
ย 
Rusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond SparkRusty Waters: Elevating Lakehouses Beyond Spark
Rusty Waters: Elevating Lakehouses Beyond Spark
carlyakerly1
ย 

Solaris Zones (native & lxbranded) ~ A techXpress Guide

  • 1. Express-Guide ~to~ Basic Setup of Solaris Zones Native Zones & lx-Branded Zones by, ABK ~ http://www.twitter.com/aBionic ::Task Detail:: ๎€Œ Creating/Managing Solaris Zones ๎€Œ mirroring an existing CentOS Box over a Zone ๎€Œ setting up SVN service over a Zone ๎€Œ setting CIFS over a Zone ::Background:: Solaris Zones are a part of Solaris Container Technology. Zones manage the namespace isolation for containers implementing virtualization. In Solaris 10, containers are zone using Resource Management Feature via Solaris Resource Manager. There is no performance overhead to this approach. Resources are used as a 'Dynamic resource Pool' managed between containers using a 'Fair Share Scheduler'. Broadly there are two types of zones: ๎€Œ Native Zone These are basic stripped down native Solaris O.S. Instances. Native zones are further of two types where โ—ฆ 'Small Zones' (also known as Sparse Root Zone) have several system directories shared with Solaris O.S. or Global Zone in non-writable mode โ—ฆ 'Big Zones' (also known as Whole Root Zone) have all independent directories ๎€Œ lx-Branded Zone these are zones installed from installer of O.S., currently only linux branded zones are available also called lx-zones.
  • 2. ::Execution Method:: (a.) Creating native {small,big} and lx-branded zones ๎€Œ Setting up Resource Pool to be used by zones โ—ฆ Enabling Resource Pool features โ–ช #pooladm -e โ—ฆ Saving current resource pool โ–ช #pooladm -s โ—ฆ List current Pools โ–ช #pooladm โ–ช {generally only 'pool_default' is present on fresh zone} โ—ฆ Configuring 'default_pool' to enable Fair Share Scheduler over it โ–ช #poolcfg -c 'modify pool pool_default (string pool.scheduler="FSS")' โ–ช #pooladm โ€“c โ—ฆ Priority Controller moving all processes and resources under Fair Share Scheduler โ–ช #priocntl -s -c FSS -i class TS โ–ช #priocntl -s -c FSS -i pid 1 ๎€Œ Configuring a Solaris Zone โ—ฆ This lists the current zones โ–ช #zoneadm list -cv โ—ฆ Configuring a new Native Zone โ–ช registering a new Zone โ€ข #zonecfg -z newZoneName โ—ฆ regarding 3 different types of zones follow respective command โ–ช for creating a native small-zone {with shared directories} โ€ข zonecfg:newZoneName>create โ–ช for creating a native big-zone {with independent directories} โ€ข zonecfg:newZoneName>create -b โ–ช for creating a lx-branded zone โ€ข zonecfg:lxZoneName>create -t SUNWlx
  • 3. โ—ฆ assigning it a location on HDD to be installed โ–ช zonecfg:newZoneName>set zonepath=/export/home/zones/newZoneName โ—ฆ Adding a Network Interface Resource to it โ–ช zonecfg:newZoneName>add net โ–ช zonecfg:newZoneName:net>set address=192.168.16.61 โ–ช zonecfg:newZoneName:net>set physical=eth0 โ–ช zonecfg:newZoneName:net>end โ—ฆ Assign a Resource Pool (should be already existing) to it โ–ช zonecfg:newZoneName>set pool=pool_default โ—ฆ Adding a resource controller to this Zone โ–ช zonecfg:newZoneName>add rctl โ–ช zonecfg:newZoneName:rctl>set name=zone.cpu-shares โ–ช zonecfg:newZoneName:rctl> add value (priv=privileged,limit=1,action=none) โ–ช zonecfg:newZoneName:rctl>end โ—ฆ Giving a CD-ROM access (required if installing lx-zone from ISO or CD) โ–ช zonecfg:newZoneName>add fs โ–ช zonecfg:newZoneName:fs>set dir=/cdrom โ–ช zonecfg:newZoneName:fs>set special=/cdrom โ–ช zonecfg:newZoneName:fs>set typr=lofs โ–ช zonecfg:newZoneName>set options=[nodevices] โ–ช zonecfg:newZoneName>end โ—ฆ Verify, Save and Exit โ–ช zonecfg:newZoneName>verify โ–ช zonecfg:newZoneName>commit โ–ช zonecfg:newZoneName>exit โ—ฆ Creating the HDD location for Zone โ–ช #mkdir -p /export/home/zones/newZoneName โ—ฆ Granting required permissions to location โ–ช #chmod 700 /export/home/zones/newZoneName โ—ฆ Confirming the registration of Zone Configuration โ–ช #zoneadm list -cv
  • 4. โ—ฆ It should show a listing for currently created zone like โ–ช newZoneName configured at /export/home/zones/newZoneName, it is native and shared (small-zone) ๎€Œ Installing the already configured zone โ—ฆ Installing the zone if it's a Native {small or big} zone โ–ช #zoneadm -z newZoneName install โ—ฆ if it's a lx-brand zone with O.S. TarBall, automatically creating ZFS โ–ช #zoneadm -z newZoneName install -d /tmp/os.tgz โ—ฆ if it's a lx-branded zone with O.S. TarBall, not creating ZFS โ–ช #zoneadm -z newZoneName install -x nodataset -d /tmp/os.tgz โ—ฆ if no archive path is given then default is Disc Drive, but if you are installing from Disc Drive, you need to install VOLFS like: โ–ช #svcadm enable svc:/system/filesystem/volfs:default โ–ช #svcs | grep volfs โ—ฆ If its installed without any error, just check its status using โ–ช #zoneadm list -cv โ—ฆ it should show a listing for currently created zone like newZoneName installed /export/home/zones/newZoneName native shared ๎€Œ Using the installed Zone โ—ฆ Now either make it ready to boot, or directly boot which will make it ready itself โ–ช #zoneadm -z newZoneName ready โ€ข It should show a listing for currently created zone like โ—ฆ newZoneName ready /export/home/zones/newZoneName native shared โ—ฆ #zoneadm -z newZoneName boot โ—ฆ It should show a listing for currently created zone like โ–ช newZoneName running /export/home/zones/newZoneName native shared โ—ฆ To login โ–ช #zlogin newZoneName โ–ช Now you are inside the Zone, running 'uname -a' should present you with newZoneName
  • 5. โ—ฆ To login into Zone Console like remote connect โ–ช #zlogin -C newZoneName โ—ฆ To exit the zone โ–ช #exit โ—ฆ To halt the zone simply use โ–ช #zoneadm -z newZoneName halt โ—ฆ it should show a listing for currently created zone like โ–ช newZoneName running /export/home/zones/newZoneName native shared โ—ฆ To reboot the zone simply use โ–ช #zoneadm -z newZoneName reboot โ—ฆ To uninstall the zone โ–ช #zoneadm -z newZoneName uninstall -F (b.) Mirroring an existing CentOS Box over a Zone ๎€Œ There are two ways to achieve this โ—ฆ TarBall the entire distro you want to port to Zone and use that TarBall to install the Zone. โ—ฆ Suppose, you already have an lx-branded zone and use the same. Then you need to use utility like RSync to Sync the files from Source Machine to lx-Zone. ๎€Œ You can also add packages like svn, gcc, make, netsnmp, openssl, CoolStack's ( apache2, mysql, php, perl, python, ruby, squid) to lx-zone and they work great over Zone. (c.) Setting up SVN service over a Zone ๎€Œ Users connect to svn mirror servers, the WebDAV SVN module serves content from the local system, and sends commits to the main server. Then main server pushes commit to mirrors using 'svnsync' over a protected link only writable by main server. โ—ฆ Install Collabnet SVN client & server binaries {available at
  • 6. 'http://www.collab.net/downloads/subversion/solaris.html'} โ—ฆ Create a symlink collabnet modules a โ–ช #ln -s /opt/CollabNet_Subversion/modules/mod_dav_svn.so /etc/httpd/modules/mod_dav_svn.so โ–ช # ln -s /opt/CollabNet_Subversion/modules/mod_authz_svn.so /etc/httpd/modules/mod_authz_svn.so โ—ฆ Add below lines to 'httpd.conf' under Apache2 directory as โ–ช LoadModule dav_svn_module /etc/httpd/modules/mod_dav_svn.so LoadModule authz_svn_module /etc/httpd/modules/mod_authz_svn.so <Location /someproject> DAV svn SVNPath /repos/svn/repos/someproject AuthzSVNAccessFile /repos/svn/access/someproject/svn_access.conf AuthType Basic AuthName "Active Directory LDAP Authentication" AuthBasicProvider ldap AuthzLDAPAuthoritative off AuthLDAPBindDN [email protected] AuthLDAPBindPassword somePassword AuthLDAPURL "ldap://adserver.company.com:389/ou=Principal,dc= dcString1,dc=dcStrin2?SAMAccountName?sub?(&(objectClass=user))" require vaild-user SVNPathAuthz off </Location> โ—ฆ Reload httpd service โ—ฆ โ—ฆ Add following lines to '/repos/svn/access/someproject/svn_access.conf' โ–ช can_write_group=aduserA, aduserB,aduserC read_only_group=aduserD,aduserE,aduserF no_access_group=aduserG,aduserH,aduserJ [repository:/] @can_write_group=rw @read_only_group=r @no_access_group= โ—ฆ Create a repository as follows: โ–ช svnadmin create /repos/svn/repos/someproject โ–ช change permissions as follows โ–ช chmod -R g+w /repos/svn/repos/someproject โ–ช chown -R apache.apache /repos/svn/repos/someproject โ—ฆ Similarly, you can setup mirror server with the configuration given at Link Above.
  • 7. (d.) Setting CIFS over a Zone ๎€Œ Initial reading disclosed its not possible over local zones, only global zone could support CIFS. ๎€Œ So just did practical with setting up SAMBA server on Solaris Zones; implemented SWAT (Samba Web Admin Tool) for easy configuration. โ—ฆ for Solaris 10, SAMBA came up real easy to configure โ–ช #svcs samba wins swat โ–ช #svcadm enable samba โ–ช #svcadm enable wins โ–ช #svcadm enable swat โ—ฆ Simply browsing http://samba_Zone_IPaddress:901/ presents with a nice SWAT GUI to configure SAMBA service on that zone. To get start with, you need to โ–ช > select 'Shares', add new share with proper configuration โ–ช > select 'Users', to add Users โ–ช > Restart Services from UI itself โ–ช > now try accessing this share from Windows as normal Windows Share using User created ::Tools/Technology Used:: ๎€Œ Solaris Zones: http://www.solarisinternals.com/wiki/index.php/Zones ๎€Œ CoolStack Software Bundles: {now superseded by WebStack} ~ http://hub.opensolaris.org/bin/view/Project+webstack/sunwebstack ๎€Œ Rsync: http://en.wikipedia.org/wiki/Rsync ๎€Œ SVN: http://subversion.apache.org/ ๎€Œ Apache: http://www.apache.org/ ๎€Œ CIFS: http://msdn.microsoft.com/en-us/library/aa302188.aspx ๎€Œ Samba: http://www.samba.org/ ๎€Œ SWAT: http://linux.die.net/man/8/swat ::Inference:: ๎€Œ Solaris Zones is a highly under-used and over-capable technology.
  • 8. ๎€Œ Due to its minimal overhead architecture on Virtualization, its the best option according to me for Virtualization of Linux Boxes. ๎€Œ There is still a great scope left to be developed in this technology. ::Troubleshooting/Updates:: ๎€Œ Problem: The Apache mod_dav and mod_dav_svn module was failing to integrate with SVN implementation. Solution: Initially I was using CoolStack's Software Bundle of Apache+PHP+MySQL due to ease of use on Native-Small Zone, but found out that actually it's implementation raised the incompatibility issue. So, created a Native Big- Zone and used standard Apache release, and it worked.