<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>asnaedae @ home &#187; solaris</title>
	<atom:link href="http://dubdubdub.co.uk/tag/solaris/feed" rel="self" type="application/rss+xml" />
	<link>http://dubdubdub.co.uk</link>
	<description>random musings from a twisted mind</description>
	<lastBuildDate>Thu, 26 Apr 2012 15:43:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>interesting benefits of solaris</title>
		<link>http://dubdubdub.co.uk/2008/10/interesting-benefits-of-solaris</link>
		<comments>http://dubdubdub.co.uk/2008/10/interesting-benefits-of-solaris#comments</comments>
		<pubDate>Sat, 25 Oct 2008 05:59:22 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://dubdubdub.co.uk/?p=863</guid>
		<description><![CDATA[well this is slightly surprising, but in a very good way, and does lead to some interesting suggestions on how to best to improve matters, but look at the following graph of FAST ESP query latency: Notice that the average &#8230; <a href="http://dubdubdub.co.uk/2008/10/interesting-benefits-of-solaris">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dubdubdub.co.uk/2008/10/interesting-benefits-of-solaris/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>solaris zone utilisation via SNMP</title>
		<link>http://dubdubdub.co.uk/2008/09/solaris-zone-utilisation-via-snmp</link>
		<comments>http://dubdubdub.co.uk/2008/09/solaris-zone-utilisation-via-snmp#comments</comments>
		<pubDate>Mon, 08 Sep 2008 18:15:21 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[snmp]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[computers]]></category>

		<guid isPermaLink="false">http://dubdubdub.co.uk/wordpress/?p=725</guid>
		<description><![CDATA[It&#8217;s been a bug-bear for a long time for me that the CPU metrics when querying a Solaris 10 host are global and not zone specific (which of course makes sense, just makes it harder to track zone utilisation). So &#8230; <a href="http://dubdubdub.co.uk/2008/09/solaris-zone-utilisation-via-snmp">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dubdubdub.co.uk/2008/09/solaris-zone-utilisation-via-snmp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memcached in Solaris</title>
		<link>http://dubdubdub.co.uk/2008/01/node-636</link>
		<comments>http://dubdubdub.co.uk/2008/01/node-636#comments</comments>
		<pubDate>Tue, 08 Jan 2008 22:07:52 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[<p>Oh, so OpenSolaris is going to come with memcached pre-configured/installed - which is pretty nice; now just for the integration into other things . . .</p>
<blockquote cite="http://blogs.sun.com/trond/entry/memcached_in_solaris"><a href="http://blogs.sun.com/trond/entry/memcached_in_solaris">Memcached in Solaris</a>
</blockquote>
 <a href="http://dubdubdub.co.uk/2008/01/node-636">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dubdubdub.co.uk/2008/01/node-636/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zones</title>
		<link>http://dubdubdub.co.uk/2007/07/node-334</link>
		<comments>http://dubdubdub.co.uk/2007/07/node-334#comments</comments>
		<pubDate>Wed, 11 Jul 2007 20:22:44 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Configure the zone you want, this is just a basic configuration (suited to a name server - that inherits the global zones /var/named)

<code>
# zonecfg -z solzone
solzone: No such zone configured
Use 'create' to begin configuring a new zone.
zonecfg:solzone> create
zonecfg:solzone> set zonepath=/u01/zones/solzone
zonecfg:solzone> set autoboot=true
zonecfg:solzone> add net
zonecfg:solzone:net> set address=10.10.10.20/24
zonecfg:solzone:net> set physical=bge0 zonecfg:solzone:net> end
zonecfg:solzone> add fs
zonecfg:solzone:fs> set type=lofs
zonecfg:solzone:fs> set special=/u01/zonedata/solzone
zonecfg:solzone:fs> set dir=/u01
zonecfg:solzone:fs> end
zonecfg:solzone> add inherit-pkg-dir
zonecfg:solzone:inherit-pkg-dir> set dir=/var/named
zonecfg:solzone:inherit-pkg-dir> end
zonecfg:solzone> add attr
zonecfg:solzone:attr> set name=comment
zonecfg:solzone:attr> set type=string
zonecfg:solzone:attr> set value="test solaris zone"
zonecfg:solzone:attr> end 
zonecfg:solzone> verify
zonecfg:solzone> commit
zonecfg:solzone> exit
</code>
And now install and boot the zone

<code>
# zoneadm -z solzone install
# zoneadm -z solzone boot  
</code> <a href="http://dubdubdub.co.uk/2007/07/node-334">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dubdubdub.co.uk/2007/07/node-334/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>db2 gotcha on solaris 10</title>
		<link>http://dubdubdub.co.uk/2007/07/node-328</link>
		<comments>http://dubdubdub.co.uk/2007/07/node-328#comments</comments>
		<pubDate>Wed, 11 Jul 2007 00:39:53 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hmm, nice little error when trying to start db2 on solaris 10, stating that it was unable to start up the database and i should check my SHM settings!

Arrgh!

prctl reported correct project settings, so tried truss:-
<code>
# truss -f db2start
truss: cannot trace set-id or unreadable object file: db2start
</code>

Cue alarm bells, proven by trusty "ls":

<code> 
-rwsr-xr-x    1 root    root 238584 Jul 10 12:28 db2start
</code>

Add root to the user.db2inst1 project with a quick projmod -a -U root user.db2inst1 and try again.

 <a href="http://dubdubdub.co.uk/2007/07/node-328">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://dubdubdub.co.uk/2007/07/node-328/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

