<?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>Erik Bussink</title>
	<atom:link href="http://www.bussink.ch/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.bussink.ch</link>
	<description>Technology &#38; Rants since 1991</description>
	<lastBuildDate>Fri, 22 Mar 2013 01:11:36 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>vCenter SRM 5.1 database creation using Transact-SQL</title>
		<link>http://www.bussink.ch/?p=1074</link>
		<comments>http://www.bussink.ch/?p=1074#comments</comments>
		<pubDate>Fri, 08 Mar 2013 13:03:21 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[SRM]]></category>
		<category><![CDATA[Transact-SQL]]></category>
		<category><![CDATA[vCenter SRM]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=1074</guid>
		<description><![CDATA[I&#8217;ve created a simple Microsft SQL Server Transac [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve created a simple Microsft SQL Server Transact-SQL script to configure the database for vCenter Site Recovery Manager (SRM) 5.1 . This allows you to quickly create the database on the primary site and the recovery site.</p>
<p>I&#8217;m not too impressed by the description in the <a href="http://www.vmware.com/support/pubs/srm_pubs.html" target="_blank">Site Recovery Manager 5.1 Installation and Configuration</a> documentation on page 20 as seen below&#8230;</p>
<div class='et-box et-shadow'>
					<div class='et-box-content'>This information provides the general steps that you must perform to configure an SQL Server database for SRM to use. For specific instructions, see the SQL Server documentation.</p>
<p><strong>Procedure</strong></p>
<p>1 Select an authentication mode when you create the database instance.</p>
<p>Option &amp; Description</p>
<p>Windows authentication. The database user account must be the same user account that you use to run the SRM service.</p>
<p>SQL Authentication. Leave the default local system user.</p>
<p>2 If SQL Server is installed on the same host as SRM Server, you might need to deselect the Shared Memory network setting on the database server.</p>
<p>3 Create the SRM database user account.</p>
<p>4 Grant the SRM database user account the bulk insert, connect, and create table permissions.</p>
<p>5 Create the database schema. The SRM database schema must have the same name as the database user account.</p>
<p>6 Set the SRM database user as the owner of the SRM database schema. 7 Set the SRM database schema as the default schema for the SRM database user.</div></div>
<p>&nbsp;</p>
<p>My general rule when I create a SQL Server database is to have my user database on a separate disk from the operating system. This disk is formatted with 64K block size. SQL Server works with two specific IO request size 8K and 64K in general, so having 64K block size is optimum for SQL Server databases (See <a title="Disk Partition Alignment Best Practices for SQL Server" href="http://msdn.microsoft.com/en-us/library/dd758814(v=sql.100).aspx" target="_blank">Disk partition alignment Best Practice for SQL Server</a> ). I usually create a directory path for my SQL database D:\Microsoft SQL Server in which I will create the directories for the vCenter databases, vcenter-sso, vcenter-server, vcenter-update-manager and vcenter-srm.</p>
<div id="attachment_1079" class="wp-caption alignnone" style="width: 537px"><a href="http://www.bussink.ch/wp-content/uploads//2013/03/File_directories.jpg"><img class=" wp-image-1079    " alt="Microsoft SQL Server directory structure for User Databases" src="http://www.bussink.ch/wp-content/uploads//2013/03/File_directories.jpg" width="527" height="239" /></a><p class="wp-caption-text">Microsoft SQL Server directory structure for User Databases</p></div>
<p>&nbsp;</p>
<p>Now let&#8217;s insert the Transact-SQL script to create the vcenter-srm database. My database settings limits the database to grow past 2GB, and increases the database as it grows by blocks of 64MB. The initial size starts at 64MB.<br />
I recommend that you cut &amp; paste the following Transact-SQL script into the SQL Server Management Studio and then select the sections to execute them one after another.<br />
<code></code></p>
<p>&nbsp;</p>
<div>
<div align="left">[code]</div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">--  Transact-SQL script to simplify the creation of the vCenter SRM 5.1 database</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">-- this script as been created to run with a SQL Server 2008 R2 SP2 (10.50.4000)</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">--  it should run without much changes on SQL Server 2012</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">-- </span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">--  Erik Bussink, Date created 08/03/2013</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">--  Twitter @ErikBussink</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">--</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">-- Let's create the vcenter-srm database in the D:\Microsoft SQL Server\vcenter-srm\</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">USE</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[master]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">CREATE</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">DATABASE</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[vcenter-srm]</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">on</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">PRIMARY</span></div>
<div align="left"><span style="color: #808080; font-family: Courier New; font-size: small;">(</span><span style="color: #010101; font-family: Courier New; font-size: small;">NAME</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #ff0000; font-family: Courier New; font-size: small;">N'vcenter-srm'</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">FILENAME</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #ff0000; font-family: Courier New; font-size: small;">N'D:\Microsoft SQL Server\vcenter-srm\vcenter-srm.mdf'</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">SIZE</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">64MB</span> <span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">MAXSIZE</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">2048MB</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">FILEGROWTH</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">64MB</span><span style="color: #808080; font-family: Courier New; font-size: small;">)</span></div>
<div align="left"><span style="color: #ff00ff; font-family: Courier New; font-size: small;">LOG</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">ON</span></div>
<div align="left"><span style="color: #808080; font-family: Courier New; font-size: small;">(</span><span style="color: #010101; font-family: Courier New; font-size: small;">NAME</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #ff0000; font-family: Courier New; font-size: small;">N'vcenter-srm_log'</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">FILENAME</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #ff0000; font-family: Courier New; font-size: small;">N'D:\Microsoft SQL Server\vcenter-srm\vcenter-srm.ldf'</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">SIZE</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">32MB</span> <span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">MAXSIZE</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">1024MB</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">FILEGROWTH</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">32MB</span><span style="color: #808080; font-family: Courier New; font-size: small;">)</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">COLLATE</span> <span style="color: #010101; font-family: Courier New; font-size: small;">SQL_Latin1_General_CP1_CI_AS</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">-- Let's change some default settings for the [vcenter-srm] database</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">USE</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[vcenter-srm]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">ALTER</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">DATABASE</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[vcenter-srm]</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">SET</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">RECOVERY</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">SIMPLE</span> <span style="color: #808080; font-family: Courier New; font-size: small;">;</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">-- Let's create the vCenter SRM database account</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">USE</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[vcenter-srm]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">CREATE</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">LOGIN</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">WITH</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">PASSWORD</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #ff0000; font-family: Courier New; font-size: small;">'password'</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">DEFAULT_DATABASE</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[vcenter-srm]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">DEFAULT_LANGUAGE</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span><span style="color: #010101; font-family: Courier New; font-size: small;">[us_english]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">CHECK_POLICY</span><span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">OFF</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">CREATE</span> <span style="color: #ff00ff; font-family: Courier New; font-size: small;">USER</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">for</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">LOGIN</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">WITH</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">DEFAULT_SCHEMA</span><span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[dbo]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">CREATE</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">SCHEMA</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">AUTHORIZATION</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">ALTER</span> <span style="color: #ff00ff; font-family: Courier New; font-size: small;">USER</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">WITH</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">DEFAULT_SCHEMA</span><span style="color: #808080; font-family: Courier New; font-size: small;">=</span><span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;">--  Lets modify the [srmdb] account to have the required server right and user rights</span></div>
<div align="left"><span style="color: #008000; font-family: Courier New; font-size: small;"> </span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">USE</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[vcenter-srm]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">EXEC</span> <span style="color: #0000ff; font-family: Courier New; font-size: small;">master</span> <span style="color: #808080; font-family: Courier New; font-size: small;">..</span><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addsrvrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">@loginame</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #ff0000; font-family: Courier New; font-size: small;">N'srmdb'</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">@rolename</span> <span style="color: #808080; font-family: Courier New; font-size: small;">=</span> <span style="color: #ff0000; font-family: Courier New; font-size: small;">N'bulkadmin'</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[db_accessadmin]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[db_backupoperator]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[db_datareader]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[db_datawriter]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[db_ddladmin]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[db_owner]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<div align="left"><span style="color: #800000; font-family: Courier New; font-size: small;">sp_addrolemember</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[db_securityadmin]</span><span style="color: #808080; font-family: Courier New; font-size: small;">,</span> <span style="color: #010101; font-family: Courier New; font-size: small;">[srmdb]</span></div>
<div align="left"><span style="color: #0000ff; font-family: Courier New; font-size: small;">GO</span></div>
<p>[/code]</p>
<p>Once you have uploaded the script you can execute the script step by step, by selecting the paragraph you want to run, then executing just the selected code.</p>
</div>
<p>Create the vcenter-srm database</p>
<div id="attachment_1080" class="wp-caption alignnone" style="width: 565px"><a href="http://www.bussink.ch/wp-content/uploads//2013/03/Create-the-vcenter-srm-database.jpg"><img class=" wp-image-1080     " alt="Create the vcenter-srm database" src="http://www.bussink.ch/wp-content/uploads//2013/03/Create-the-vcenter-srm-database.jpg" width="555" height="223" /></a><p class="wp-caption-text">Create the vcenter-srm database</p></div>
<p>Modify the vcenter-srm database to put it in Single Recover mode</p>
<div id="attachment_1081" class="wp-caption alignnone" style="width: 564px"><a href="http://www.bussink.ch/wp-content/uploads//2013/03/Configure-vcenter-srm-database.jpg"><img class=" wp-image-1081   " alt="Configure vcenter-srm database" src="http://www.bussink.ch/wp-content/uploads//2013/03/Configure-vcenter-srm-database.jpg" width="554" height="164" /></a><p class="wp-caption-text">Configure vcenter-srm database</p></div>
<p>Create the srmdb user account &amp; schema &amp; change schema owner</p>
<div id="attachment_1082" class="wp-caption alignnone" style="width: 525px"><a href="http://www.bussink.ch/wp-content/uploads//2013/03/Create-srmdb-user.jpg"><img class=" wp-image-1082     " alt="Create srmdb user" src="http://www.bussink.ch/wp-content/uploads//2013/03/Create-srmdb-user.jpg" width="515" height="175" /></a><p class="wp-caption-text">Create srmdb user</p></div>
<p>Modify the srmdb user account with rights and</p>
<div id="attachment_1083" class="wp-caption alignnone" style="width: 533px"><a href="http://www.bussink.ch/wp-content/uploads//2013/03/Modify-srmdb-user.jpg"><img class=" wp-image-1083     " alt="Modify srmdb user" src="http://www.bussink.ch/wp-content/uploads//2013/03/Modify-srmdb-user.jpg" width="523" height="251" /></a><p class="wp-caption-text">Modify srmdb user</p></div>
<p>And now we can check the user account with the proper rights.</p>
<div id="attachment_1084" class="wp-caption alignnone" style="width: 531px"><a href="http://www.bussink.ch/wp-content/uploads//2013/03/Validate-srmdb-user-rights.jpg"><img class=" wp-image-1084     " alt="Validate srmdb user rights" src="http://www.bussink.ch/wp-content/uploads//2013/03/Validate-srmdb-user-rights.jpg" width="521" height="300" /></a><p class="wp-caption-text">Validate srmdb user rights</p></div>
<p>I hope that you can now see how a simple well written Transact-SQL script can save you time &amp; errors when creating the Primary and Recovery site&#8217;s databases.</p>
<p>I&#8217;ve created similar scripts to <a title="Create vCenter database quickly with Transact-SQL" href="http://www.bussink.ch/?p=317" target="_blank">Create vCenter Server databases with Transact-SQL</a>, and <a title="vCloud Director database creation using Transact-SQL" href="http://www.bussink.ch/?p=200" target="_blank">Create vCloud Director database with Transact-SQL</a> .</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=1074</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SQL Server Transact-SQL Line Numbering</title>
		<link>http://www.bussink.ch/?p=1063</link>
		<comments>http://www.bussink.ch/?p=1063#comments</comments>
		<pubDate>Fri, 08 Mar 2013 10:31:13 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Transact-SQL]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=1063</guid>
		<description><![CDATA[When you use Microsoft SQL Server on a regular basis wi [...]]]></description>
				<content:encoded><![CDATA[<p>When you use Microsoft SQL Server on a regular basis with Transact-SQL scripts, it is a sometimes useful to quickly find the proper line of code.</p>
<p>This is a quick tip on how to activate the Line Numbering when working with Transact-SQL.</p>
<div id="attachment_1064" class="wp-caption alignnone" style="width: 546px"><a href="http://www.bussink.ch/wp-content/uploads//2013/03/SQL-Server-Management-Studio-Add-Transact-SQL-Line-Numbers.jpg"><img class=" wp-image-1064   " alt="Activating Line Numbering for Transact-SQL" src="http://www.bussink.ch/wp-content/uploads//2013/03/SQL-Server-Management-Studio-Add-Transact-SQL-Line-Numbers.jpg" width="536" height="275" /></a><p class="wp-caption-text">Activating Line Numbering for Transact-SQL</p></div>
<p>I hope this will be helpful.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=1063</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2013 Homelab refresh</title>
		<link>http://www.bussink.ch/?p=1022</link>
		<comments>http://www.bussink.ch/?p=1022#comments</comments>
		<pubDate>Wed, 06 Feb 2013 19:54:04 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Dual-Gigabit]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[homelab]]></category>
		<category><![CDATA[mSATA]]></category>
		<category><![CDATA[Shuttle]]></category>
		<category><![CDATA[SSD]]></category>
		<category><![CDATA[Supermicro]]></category>
		<category><![CDATA[XH61V]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=1022</guid>
		<description><![CDATA[Preamble It&#8217;s now 2013, and it&#8217;s time to ha [...]]]></description>
				<content:encoded><![CDATA[<p><strong>Preamble</strong></p>
<p>It&#8217;s now 2013, and it&#8217;s time to have a peak at my homelab refresh for this year.</p>
<p>&nbsp;</p>
<p><strong>Background</strong></p>
<p>In the past three years, I&#8217;ve ran a very light homelab with VMware ESXi. I mainly used my workstation (<a title="X8DTH-6F" href="http://www.supermicro.com/products/motherboard/qpi/5500/x8dth-6f.cfm" target="_blank">Supermicro X8DTH-6F</a>) with Dual <a title="Intel Xeon 5520" href="http://ark.intel.com/products/40200/Intel-Xeon-Processor-E5520-8M-Cache-2_26-GHz-5_86-GTs-Intel-QPI" target="_blank">Xeon 5520</a> @2.26Ghz (8-Cores) and 72GB of RAM to run most of the virtual machines and for testing within VMware Workstation, and only ran domain controllers and 1 proxy VM on a small ESXi machine, a <a title="Shuttle XG41" href="http://us.shuttle.com/barebone/Models/XG41.html">Shuttle XG41</a>. This gives a lot of flexibilty to run nearly all the virtual machines on a large beefed up workstation. There are quiet a few posts on this topic on various vExpert websites (I highly recommend Eric Sloof&#8217;s <a title="A whitebox is for sissies - Real men use a Super Workstation" href="http://www.ntpro.nl/blog/archives/2077-A-whitebox-is-for-sissies-Real-men-use-a-Super-Workstation.html" target="_blank">Super-Workstation</a>).</p>
<p>I sometimes do play games (I&#8217;m married with a gamer), and when I do I have to ensure my virtual machines are powered down within VMware Workstation, as my system could and has crashed during games. Having corrupted VM is no fun.</p>
<p>&nbsp;</p>
<p><strong>Requirements</strong></p>
<p>What I want for 2013 in the homelab, is a flexible environment composed of a few quiet ESXi hosts with my larger workstation being able to add new loads or test specific VM configuration. For this I need a infrastructure that is small, quiet and stable. Here are the requirements for my 2013 homelab infrastructure</p>
<ol>
<li><strong>Wife Acceptance Factor</strong> (<a title="Wife Acceptance Factor" href="http://en.wikipedia.org/wiki/Wife_acceptance_factor" target="_blank">WAF</a>)</li>
<li><strong>Small</strong></li>
<li><strong>Quiet</strong></li>
<li><strong>Power Efficient</strong></li>
</ol>
<p>Having purchased a flat, I don&#8217;t have a technical room (nothing like my <a title="2006 Computer room" href="http://www.bussink.ch/?p=7" target="_blank">2006 computer room</a>) or a basement. So having a few ESXi hosts on 24 hours a day, requires a high Wife Acceptance Factor. The system have to be small &amp; quiet. In addition, if they are power efficient, it will make the utility bill easier.</p>
<p>&nbsp;</p>
<p><strong>Shuttle XH61V</strong></p>
<p>The<a title="Shuttle XH61V" href="http://us.shuttle.com/barebone/Models/XH61V.html" target="_blank"> Shuttle XH61V</a> is small black desktop based on the Intel H61 chipset. It comes in a 3.5L metal case with very quiet ventilators. You just need to purchase the Shuttle XH61V, a Intel 1155 Socket <a title="65W Processors list for Shuttle XH61V" href="http://global.shuttle.com/products/productsSupportListUS?productId=1628" target="_blank">65W processor</a>, two memory SODIMMs (laptop memory) and local storage. Assembly can be done in less than 30 minutes.</p>
<div id="attachment_1027" class="wp-caption alignnone" style="width: 310px"><a href="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_large.jpg"><img class="size-medium wp-image-1027" alt="Shuttle XH61V" src="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_large-300x131.jpg" width="300" height="131" /></a><p class="wp-caption-text">Shuttle XH61V</p></div>
<p>The Shuttle XH61V comes with two NICs and support for a mSATA (Bootable) connector, a PCIe x1 slot, and two 2.5&#8243; Devices. The Shuttle XH61V comes with two gigabit network cards. They are Realtek 8168 cards. These work flawlessly, but they do not support Jumbo frames.</p>
<div id="attachment_1028" class="wp-caption alignnone" style="width: 380px"><a href="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_back.jpg"><img class="size-full wp-image-1028" alt="Shuttle XH61V Back" src="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_back.jpg" width="370" height="146" /></a><p class="wp-caption-text">Shuttle XH61V Back</p></div>
<p>For storage, I decided to boot from a mSATA device, and to keep a Intel SSD for a fast upper-tier local storage, and one large Hybrid 2.5&#8243; Harddisk for main storage. I do have a <a title="Synology DS1010+" href="http://www.synology.com/us/products/DS1010+/index.php" target="_blank">Synology DS1010+</a> on the network that is the centralized NFS storage, but I want some fast local storage for specific virtual machines. It&#8217;s still early 2013, so I have not yet upgraded my older Synology or created a new powerful &amp; quiet <a title="Nexenta Community Edition" href="http://www.nexentastor.org/projects/1/wiki/CommunityEdition" target="_blank">Nexenta Community Edition</a> home server. On the next image you can see that two Shuttle XH61V take less space than a Synology DS1010+</p>
<div id="attachment_1033" class="wp-caption alignnone" style="width: 310px"><a href="http://www.bussink.ch/wp-content/uploads//2013/02/2_XH61V_with_DS1010.jpg"><img class="size-medium wp-image-1033" alt="Two Shuttle HX61V with Synology DS1010+" src="http://www.bussink.ch/wp-content/uploads//2013/02/2_XH61V_with_DS1010-300x121.jpg" width="300" height="121" /></a><p class="wp-caption-text">Two Shuttle HX61V with Synology DS1010+</p></div>
<p>&nbsp;</p>
<p><strong>VMware ESXi installation</strong></p>
<p>Installing VMware ESXi is done quickly as all the devices drivers are on the ESXi 5.1 VMware-VMvisor-Installer-5.1.0-799733.x86_64.iso install cdrom.</p>
<div id="attachment_1025" class="wp-caption alignnone" style="width: 588px"><a href="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_esxi_summary.jpg"><img class=" wp-image-1025  " alt="ESXi 5.1 on XH61V" src="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_esxi_summary.jpg" width="578" height="402" /></a><p class="wp-caption-text">ESXi 5.1 on XH61V</p></div>
<p>Here is the Hardware Status for the Shuttle XH61V</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_hardware_status.jpg"><img class="alignnone size-medium wp-image-1032" alt="ESXi XH61V Hardware Status" src="http://www.bussink.ch/wp-content/uploads//2013/02/xh61v_hardware_status-187x300.jpg" width="187" height="300" /></a></p>
<p>Here is a screenshot of my vSphere 5.1 homelab cluster.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2013/02/ESXi_cluster.jpg"><img class="alignnone  wp-image-1037" alt="vSphere 5.1 Cluster" src="http://www.bussink.ch/wp-content/uploads//2013/02/ESXi_cluster.jpg" width="572" height="438" /></a></p>
<p>&nbsp;</p>
<p><strong>Bill of Materials (BOM)</strong></p>
<p>Here is my bill of materials (BOM) for my ESXi nodes.</p>
<ul>
<li>Shuttle <a title="HX61V" href="http://us.shuttle.com/barebone/Models/XH61V.html" target="_blank">XH61V</a></li>
<li>Intel Core <a title="Intel Core i7-3770S" href="http://ark.intel.com/products/65524/Intel-Core-i7-3770S-Processor-8M-Cache-up-to-3_90-GHz" target="_blank"> i7-3770S</a> CPU @3.1Ghz</li>
<li>Two Kingston 8GB DDR3 SO-DIMM <a title="Kingston Value RAM Notebook" href="http://www.kingston.com/us/memory/valueram/notebook" target="_blank">KVR1333D3S9/8G</a></li>
<li>Local Storage SSD Kingston Now 64GB <a title="Kingston SSDnow" href="http://www.kingston.com/us/ssd/s" target="_blank">SMS100S2/64G</a> mSATA  (Boot device)</li>
<li>Local Storage <a title="Intel SSD 335 Series" href="http://www.intel.com/content/www/us/en/solid-state-drives/solid-state-drives-335-series.html" target="_blank">Intel SSD 335 240GB </a></li>
<li>Local Storage <a title="Seagate Momentus XT Hybrid" href="http://www.seagate.com/internal-hard-drives/laptop-hard-drives/momentus-xt-hybrid/" target="_blank">Seagate Momentus XT 750GB</a></li>
</ul>
<p>Planned upgrade: I hope to get new<a title="Intel SSD 525" href="http://www.intel.com/content/www/us/en/solid-state-drives/solid-state-drives-525-series.html" target="_blank"> Intel SSD 525 mSATA</a> boot devices to replace the older Kingston SSDnow when they become available.</p>
<p>&nbsp;</p>
<p><strong>Performance &amp; Efficiency</strong></p>
<p>In my bill of materials, I selected the most powerful Intel Core i7 processor that I could fit in the Shuttle XH61V. Because I&#8217;m running virtual appliances and virtual machines like vCenter Operations Manager, SQL Databases, Splunk. There are some less expensive Core i3 (3M Cache), Core i5 (6M Cache) or Core i7 (8M Cache) processor that would work great.</p>
<p>What is impressive, is that the Shuttle XH61V comes with a 90W power adapter. We are far from the 300W mini-boxes/XPC or even the HP MicroServer with their 150W power adapters. Only the <strong>Intel NUC</strong> comes lower with a 65W power adapter and a single gigabit network (<a href="https://twitter.com/alexgalbraith" target="_blank">@AlexGalbraith</a> has a great series of post on running <a title="Nanolab running vSphere on Intel NUC" href="http://www.tekhead.org/blog/2013/01/nanolab-running-vmware-vsphere-on-intel-nuc-part-1/" target="_blank">ESXi on his Intel NUC</a> ).</p>
<p>Just for info, the Intel Core i7-3770S has a cpubenchmark.net score of <a href="http://cpubenchmark.net/cpu.php?cpu=Intel+Core+i7-3770S+%40+3.10GHz&amp;id=897" target="_blank">9312</a>. Which is really good for a small box that uses 90W.</p>
<p>The Shuttle XH61V is also <strong>very quiet.</strong>.. it&#8217;s barely a few decibels above the noise of a very quiet room. To tell you the thru&#8230; the WAF is really working, as my wife is now sleeping with two running XH61V at less than 2 meters away. And she does not notice them&#8230; <img src='http://www.bussink.ch/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p><strong>Pricing</strong></p>
<p>The pricing for a Shuttle XH61V with 16GB memory and a local boot device (32GB mSATA) can be kept to a about $350 on newegg. What will increase the price is the performance of the LGA 1155 Socket 65W processor ( Core i3-2130 from $130 to Core  i7-3770S at $300) and what additional local storage you want to put in.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2013/02/ESXi_Management_Cluster.jpg"><img class="alignnone  wp-image-1039" alt="vSphere 5.1 Cluster XH61V" src="http://www.bussink.ch/wp-content/uploads//2013/02/ESXi_Management_Cluster-1024x725.jpg" width="574" height="406" /></a></p>
<p>The sizing of the homelab in early 2013 is so far from the end of 2006 when I moved out of my first flat, when I had a <a title="Moving out after 11 years..." href="http://www.bussink.ch/?p=7">dedicated Computer room</a>.</p>
<p>&nbsp;</p>
<p><strong>Update 18/03/2012. </strong>DirectPath I/O Configuration for Shuttle XH61v BIOS 1.04</p>
<div id="attachment_1111" class="wp-caption alignnone" style="width: 500px"><a href="http://www.bussink.ch/wp-content/uploads//2013/02/xh61b_directpath_io_config.jpg"><img class=" wp-image-1111 " alt="XH61v DirectPath I/O Configuration" src="http://www.bussink.ch/wp-content/uploads//2013/02/xh61b_directpath_io_config.jpg" width="490" height="490" /></a><p class="wp-caption-text">XH61v DirectPath I/O Configuration</p></div>
<p>&nbsp;</p>
<p><strong>Update 22/03/2013.</strong>  mSATA SSD Upgrade</p>
<p>I&#8217;ve decided to replace the Intel 525 30GB mSATA SSD that is used for booting ESXi and to store the Host Cache with a larger Intel 525 120GB mSATA SSD. This device will give me more space to store the Host Cache and will be used as a small Tier for the Temp scratch disk of my SQL virtual machine.</p>
<p>The <a href="http://www.intel.co.uk/content/www/us/en/solid-state-drives/solid-state-drives-525-series.html" target="_blank">&#8216;published&#8217; performance</a> for the Intel 525 120GB mSATA are</p>
<div>
<table width="100%" border="1" cellspacing="0" cellpadding="1">
<tbody>
<tr>
<th><b>Capacity<br />
</b></th>
<th><b>Sequential<br />
Read/Write (up to)</b></th>
<th><b>Random 4KB<br />
Read/Write (up to)</b></th>
<th><b>Form Factor</b></th>
</tr>
<tr>
<td>30 GB</td>
<td width="294">SATA 6 Gb/s       500 MB/s / 275 MB/s</td>
<td width="312"> 5,000 IOPS / 80,000 IOPS</td>
<td width="234">mSATA</td>
</tr>
<tr>
<td>60 GB</td>
<td width="294">SATA 6 Gb/s       550 MB/s / 475 MB/s</td>
<td width="312">15,000 IOPS / 80,000 IOPS</td>
<td width="234">mSATA</td>
</tr>
<tr>
<td width="90">120 GB</td>
<td width="294">SATA 6 Gb/s       550 MB/s / 500 MB/s</td>
<td width="312">25,000 IOPS / 80,000 IOPS</td>
<td width="234">mSATA</td>
</tr>
<tr>
<td width="90">180 GB</td>
<td width="294">SATA 6 Gb/s       550 MB/s / 520 MB/s</td>
<td width="312">50,000 IOPS / 80,000 IOPS</td>
<td width="234">mSATA</td>
</tr>
<tr>
<td width="90">240 GB</td>
<td width="294">SATA 6 Gb/s       550 MB/s / 520 MB/s</td>
<td width="312">50,000 IOPS / 80,000 IOPS</td>
<td width="234">mSATA</td>
</tr>
<tr>
<td colspan="4"> <a href="http://ark.intel.com/products/family/56572/Intel-SSD-500-Family" target="_blank">Show More Detailed Product Specifications &gt;</a></td>
</tr>
</tbody>
</table>
</div>
<div>
<div data-component="contentwithimage" data-component-id="6">
<p>&nbsp;</p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=1022</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>vCenter Infrastructure Navigator 2.0 integrated with vSphere Web Client</title>
		<link>http://www.bussink.ch/?p=976</link>
		<comments>http://www.bussink.ch/?p=976#comments</comments>
		<pubDate>Sat, 01 Dec 2012 01:09:15 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[vCenter Infrastructure Navigator]]></category>
		<category><![CDATA[vSphere Web Client]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=976</guid>
		<description><![CDATA[Looking back at the screenshot of the vSphere Web Clien [...]]]></description>
				<content:encoded><![CDATA[<p>Looking back at the screenshot of the vSphere Web Client, we see that the vCenter Infrastructure Navigator 2.0 has identified 27 Known Application Services.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/12/vSphere-Web-Client-and-VIN2-VCOPS56.png"><img class="alignnone  wp-image-977" title="vSphere Web Client Interface" src="http://www.bussink.ch/wp-content/uploads//2012/12/vSphere-Web-Client-and-VIN2-VCOPS56.png" alt="" width="614" height="512" /></a></p>
<p>If we want to see how the vCenter 5.1 communicates with other infrastructure elements in the virtual environment, there are two ways to look at it. First from the vCenter 5.1 VM we see that there are a few dependencies.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/12/vcenter51.jpg"><img class="alignnone  wp-image-981" title="vCenter 5.1 with Navigation pane" src="http://www.bussink.ch/wp-content/uploads//2012/12/vcenter51.jpg" alt="" width="513" height="405" /></a></p>
<p>When examining the <strong>Show Dependencies</strong> we get the Map view. Here is only a element of the Map View as it scales to over 47 dependencies.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/12/VIN-Map-View.jpg"><img class="alignnone  wp-image-982" title="VIN Map View" src="http://www.bussink.ch/wp-content/uploads//2012/12/VIN-Map-View.jpg" alt="" width="519" height="567" /></a></p>
<p>But you can also see the <strong>Table View</strong>, where we see <strong>incoming dependencie</strong>s and <strong>outgoing dependencies</strong>.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/12/VIN-Table-View.jpg"><img class="alignnone  wp-image-983" title="VIN Table View" src="http://www.bussink.ch/wp-content/uploads//2012/12/VIN-Table-View.jpg" alt="" width="616" height="304" /></a></p>
<p>&nbsp;</p>
<p>I know this functionality of incoming and outgoing dependencies will be very useful to some of my clients.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=976</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vCenter Operations Manager 5.6 integrated with vSphere Web Client</title>
		<link>http://www.bussink.ch/?p=968</link>
		<comments>http://www.bussink.ch/?p=968#comments</comments>
		<pubDate>Fri, 30 Nov 2012 22:55:43 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[vCenter Infrastructure Navigator]]></category>
		<category><![CDATA[vCenter Operations Manager]]></category>
		<category><![CDATA[vSphere Web Client]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=968</guid>
		<description><![CDATA[Today VMware released vCenter Operations Manager 5.6 an [...]]]></description>
				<content:encoded><![CDATA[<p>Today VMware released vCenter Operations Manager 5.6 and vCenter Infrastructure Navigator 2.0. These products are now very tightly integrated with the vCenter 5.1 and plug into the vSphere Web Client.</p>
<p>In the screenshot below, you see two new floating windows with the proper information for the element you are managing.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/11/vSphere-Web-Client-and-VIN2-VCOPS56.png"><img class="alignnone  wp-image-969" title="vCenter Operations Manager &amp; vCenter Infastructure Navigator" src="http://www.bussink.ch/wp-content/uploads//2012/11/vSphere-Web-Client-and-VIN2-VCOPS56.png" alt="" width="614" height="512" /></a></p>
<p>In this case, I&#8217;m looking at a my pVDC_1 Cluster, and vCenter Infrastructure Navigator has identified 27 known applications, while vCenter Operations Manager 5.6 is telling me that the health of my Cluster could be better.</p>
<p>In addition, within vSphere Web Client, you can move the floating information panes around to better suit your needs and see what&#8217;s important. Or to take advantage of a screensize.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=968</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vCNS Edge Gateway re-sizing Compact/Large/X-Large</title>
		<link>http://www.bussink.ch/?p=951</link>
		<comments>http://www.bussink.ch/?p=951#comments</comments>
		<pubDate>Fri, 30 Nov 2012 22:47:10 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[vCloud Director]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=951</guid>
		<description><![CDATA[With the release of the vCloud Director 5.1, a series o [...]]]></description>
				<content:encoded><![CDATA[<p>With the release of the vCloud Director 5.1, a series of networking enhancements to how Organization vDC communicate have been made. This gives Organizations (Tenants) a lot more choice in creating their vApps and even allows connectivity with other Organizations (Tenants).</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS_51.jpg"><img class="alignnone  wp-image-952" title="vCloud Director 5.1 networking model vs vCloud Director 1.5 model" src="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS_51.jpg" alt="" width="468" height="296" /></a></p>
<p>vCloud Network and Security (vCNS) now provides a Gateway which was previously known as the vShield Edge Gateway. In previous releases of vCloud Director, the vCNS Gateway providing network services and security was not visible to the Organization (Tenant) in vCloud Director. The newer vCNS Gateway has become a first-class entity and is available thru the vCloud Director user interface.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-EdgeGateway.jpg"><img class="alignnone  wp-image-954" title="vCNS Edge Gateway Actions win vCloud Director" src="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-EdgeGateway.jpg" alt="" width="558" height="155" /></a></p>
<p>The vCNS Gateway has new capabilities, and now provides up to 10 interfaces to external networks. These interfaces can have IP addresses assigned, they can rate control the limit the bandwidth  to external networks.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-Changes.jpg"><img class="alignnone  wp-image-964" title="vCNS Changes" src="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-Changes.jpg" alt="" width="480" height="235" /></a></p>
<p>The vCNS Gateway provides DHCP service, Firewall rules with 5-tuples, NAT using both Source (SNAT) and Destination (DNAT) rules, Static Routing, VPN Endpoint with support for multiple subnets (spoke design) and Load Balancing services.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-EdgeGateway-Services.jpg"><img class="alignnone  wp-image-955" title="vCNS EdgeGateway Services" src="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-EdgeGateway-Services.jpg" alt="" width="597" height="146" /></a></p>
<p>The vCNS Gateway (when used with the vCNS Advanced license) even provides High-Availability. This means a 2nd instance of the Edge Gateway is deployed and it&#8217;s settings are synchronized with the first one.</p>
<p>When deploying a vCNS Edge Gateway, you can select between two versions, the &#8220;Compact&#8221; and the &#8220;Full&#8221;. The &#8220;Full&#8221; version can provide higher throughput than it&#8217;s smaller brother, but it also consumes more resources. The &#8220;Full&#8221; is also referenced as the &#8220;Large&#8221; version from within the vShield Manager 5.1 appliance.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-EdgeGateway-Compact-or-Full.jpg"><img class="alignnone  wp-image-957" title="vCNS EdgeGateway Compact or Full" src="http://www.bussink.ch/wp-content/uploads//2012/11/vCNS-EdgeGateway-Compact-or-Full.jpg" alt="" width="618" height="263" /></a></p>
<p>And there is even a larger version of the Edge Gateway, the &#8220;X-Large&#8221; version. This version is not visible from within vCloud Director user interface. So how could a vCloud Director Administrator change the size of a vCNS EdgeGateway ? Well he can using the vShield Manager 5.1 user interface.</p>
<ol>
<li>Compact resources: 1 vCPU and 256MB of memory</li>
<li>Full/Large resources: 2 vCPU and 1GB of memory</li>
<li>X-Large resources: 2 vCPU and 8GB of memory</li>
</ol>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/11/vSM-Changing-EdgeGateway-Size.jpg"><img class="alignnone  wp-image-960" title="vSM Changing EdgeGateway Size" src="http://www.bussink.ch/wp-content/uploads//2012/11/vSM-Changing-EdgeGateway-Size.jpg" alt="" width="612" height="153" /></a></p>
<p>Converting the EdgeGateway to Compact, Large or X-Large is very easy. Select the size, and it will re-deploy a new vCNS EdgeGateway.</p>
<p><a href="http://www.bussink.ch/?attachment_id=961" rel="attachment wp-att-961"><img class="alignnone size-full wp-image-961" title="vse Redeploying-edge-5-0" src="http://www.bussink.ch/wp-content/uploads//2012/11/vse-Redeploying-edge-5-0.jpg" alt="" width="200" height="107" /></a></p>
<p>It first renames the old vCNS EdgeGateway to Redeploying-edge-5-0, then it instanciates the new vCNS EdgeGateway, start the new instance, transfers the settings and switches over, and removes the older version.</p>
<p>Because the X-Large Edge Gateway consumes some serious resources (2 vCPU and 8GB of memory), it seems fair that this operation is not available within vCloud Director, but requires the validation and modification to be done by the vShield Manager Administrator.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=951</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some vCenter Operations Manager 5.x tweaks</title>
		<link>http://www.bussink.ch/?p=925</link>
		<comments>http://www.bussink.ch/?p=925#comments</comments>
		<pubDate>Tue, 30 Oct 2012 21:23:47 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[vCenter Operations Manager 5]]></category>
		<category><![CDATA[vCOPS]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=925</guid>
		<description><![CDATA[Web Interface Timeout Issues I often use the Web Interf [...]]]></description>
				<content:encoded><![CDATA[<p><strong>Web Interface Timeout Issues</strong></p>
<p>I often use the Web Interface of vCenter Operations Manager to check the infrastructure. Because while the client module exist for the vSphere Client, I don&#8217;t find it as optimized in the display and the pane jumping. One of the smaller annoying parts of using vC Ops via the Web Interface is the quick timeout of the user authentication. This can been tweaked by making a small change on the User Interface virtual machine.</p>
<p>Simply edit the <strong><code>/usr/lib/vmware-vcops/tomcat/webapps/vcops-vsphere/WEB-INF/web.xml</code></strong>  file, near the top you will find the following section</p>
<p><span style="font-size: small;"><span style="font-size: small;">&lt;session-config&gt;</span><br />
&lt;session-timeout&gt;<em>value</em>&lt;/session-timeout&gt;<br />
&lt;/session-config&gt;</span></p>
<p>You can increase the time to 60, 90 or 120 minutes or set the time to infinite with a &#8216;-1&#8242; value.</p>
<p>Once modified, just restart the vCenter Operations Manager Admin interface with the command</p>
<p><strong><code>vcops-admin restart</code></strong></p>
<p>This is referenced in the <a title="VMware KB kb.vmware.com/kb/2015135" href="http://kb.vmware.com/kb/2015135" target="_blank">VMware KB Article 2015135</a>.</p>
<p>&nbsp;</p>
<p><strong> Log Files Location</strong></p>
<p>With the release of vCenter Operations Manager 5.0. and later, the log files have been moved to their own partition, so that if there are lots of logs, they do not file the system partition of the two virtual machines in the vApp.</p>
<p>The logs have been moved to /data/vcops/logs</p>
<div>
<ul>
<li><span style="font-size: small;">catalina-web.log</span></li>
<li><span style="font-size: small;">localhost-web.log</span></li>
<li><span style="font-size: small;">manager-web.log</span></li>
<li><span style="font-size: small;">host-manager-web.log</span></li>
</ul>
<p>This is referenced in the <a title="VMware KB 2032786" href="http://kb.vmware.com/kb/2032786" target="_blank">VMware KB Article 2032786</a>.</p>
<p>&nbsp;</p>
<p><strong>Adding Storage for vCenter Operations Manager</strong></p>
<p>Things have changed a lot since the first version of the vCenter Operations Manager 1.0. The data stored on both virtual machine that forms the vApp is now using the <strong>Logical Volume Manager</strong>, so adding more space to the Analytics VM or the User Interface VM, is very easy. Simply add a new Disk (Thick Provision Eager Zeroed for performance) to the virtual machines. On restart the new disk will be added the the data_vg (data volume group).</p>
<p>Let&#8217;s just check the Analytics VM before adding a new disk<br />
<pre><code>
localhost:~ # &lt;strong&gt;lvdisplay&lt;/strong&gt;
--- Logical volume ---
LV Name /dev/data_vg/data
VG Name data_vg
LV UUID aTXaIF-ZhHn-uUhg-0F6o-qHjy-9sI8-Q0QmlN
LV Write Access read/write
LV Status available
# open 1
LV Size 400.00 GB
Current LE 102399
Segments 1
Allocation inherit
Read ahead sectors auto
- currently set to 1024
Block device 253:0</code></pre></p>
<p>localhost:~ # <strong>lvs</strong><br />
LV VG Attr LSize Origin Snap% Move Log Copy% Convert<br />
data data_vg -wi-ao 400.00G</p>
<p>localhost:/data # <strong>df -k</strong><br />
Filesystem           1K-blocks      Used Available Use% Mounted on<br />
/dev/sda3              8111996   2177068   5522864  29% /<br />
udev                   3580976       100   3580876   1% /dev<br />
tmpfs                  3580976         0   3580976   0% /dev/shm<br />
/dev/sda1               132206     18149    107231  15% /boot<br />
/dev/mapper/data_vg-data<br />
412845232 100011536 291862384  26% /data</p>
<p>When I power-down the Analytics VM, I added a 16GB hard disk to the VM, after restart we clearly see the new size.</p>
<p><pre><code>
localhost:~ # &lt;strong&gt;lvdisplay&lt;/strong&gt;
--- Logical volume ---
LV Name                /dev/data_vg/data
VG Name                data_vg
LV UUID                aTXaIF-ZhHn-uUhg-0F6o-qHjy-9sI8-Q0QmlN
LV Write Access        read/write
LV Status              available
# open                 1
LV Size                415.99 GB
Current LE             106494
Segments               2
Allocation             inherit
Read ahead sectors     auto
- currently set to     1024
Block device           253:0</code></pre></p>
<p>localhost:~ # <strong>lvs</strong><br />
LV   VG      Attr   LSize   Origin Snap%  Move Log Copy%  Convert<br />
data data_vg -wi-ao 415.99G</p>
<p>localhost:~ # <strong>df -k</strong><br />
Filesystem 1K-blocks Used Available Use% Mounted on<br />
/dev/sda3 8111996 2177952 5521980 29% /<br />
udev 3580976 104 3580872 1% /dev<br />
tmpfs 3580976 0 3580976 0% /dev/shm<br />
/dev/sda1 132206 18149 107231 15% /boot<br />
/dev/mapper/data_vg-data<br />
429355112 100014632 307530516 25% /data</p>
<p>This is referenced in the <a title="VMware KB 2016022" href="http://kb.vmware.com/kb/2016022" target="_blank">VMware KB Article 2016022</a>.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=925</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visio 2013 and Visio Stencils issue (Fixed)</title>
		<link>http://www.bussink.ch/?p=919</link>
		<comments>http://www.bussink.ch/?p=919#comments</comments>
		<pubDate>Wed, 24 Oct 2012 23:13:09 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Visio]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=919</guid>
		<description><![CDATA[[Update 10/30/2012 Thanks to Maxm] I use Visio a lot to [...]]]></description>
				<content:encoded><![CDATA[<p><strong>[Update 10/30/2012 Thanks to Maxm]</strong></p>
<p>I use Visio a lot to create diagrams for my customers and colleagues. But when I tried to import Cisco Stencils I retrieved from the <a title="Cisco Visio Stencils" href="http://www.cisco.com/en/US/products/hw/prod_cat_visios.html" target="_blank">Cisco website</a>, or HP Proliant Stencils from <a title="VisioCafe HP" href="http://www.visiocafe.com/hp.htm" target="_blank">VisioCafe</a> with the Visio 2013 RTM, you get the following error message.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/10/visio2013-error-attempting-to-open-a-file-visio-stencils.png"><img class="alignnone  wp-image-920" title="Visio 2013 Error Attempting to Open a File Visio Stencils" src="http://www.bussink.ch/wp-content/uploads//2012/10/visio2013-error-attempting-to-open-a-file-visio-stencils.png" alt="" width="627" height="246" /></a></p>
<p>There is a setting in Visio 2013 in the Options, Trust Center, File Block Settings that should enable you to allow Visio 203-2010 Stencils to be opened (HP, Cisco, EMC)<br />
But unfortunately something is wrong… the Option at the bottom cannot be changed from “Do not open selected file types”</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/10/visio2013-trust-center-file-block-settings.png"><img class="alignnone  wp-image-921" title="Visio 2013 Trust Center File Block Settings immutable option" src="http://www.bussink.ch/wp-content/uploads//2012/10/visio2013-trust-center-file-block-settings.png" alt="" width="644" height="464" /></a></p>
<p>So think hard before upgrading to Visio 2013 if you need to use Stencils.</p>
<p>I’ll communicate again on the topic if I find a solution or if Microsoft respond to my ’Send a Frown’</p>
<p>Thanks to <strong>Maxm</strong> and his reply I found the problem. The trick is to untick the boxes to be able to open Stencils. Seems backwards to me, but that&#8217;s Microsoft for you.</p>
<div id="attachment_948" class="wp-caption alignnone" style="width: 714px"><a href="http://www.bussink.ch/wp-content/uploads//2012/10/visio2013-untick-boxes.png"><img class=" wp-image-948 " title="Visio 2013 Untick Boxes in File Block Settings" src="http://www.bussink.ch/wp-content/uploads//2012/10/visio2013-untick-boxes.png" alt="" width="704" height="281" /></a><p class="wp-caption-text">Visio 2013 Untick Boxes in File Block Settings</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=919</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Upgrading vCenter Operations Manager to 5.0.2</title>
		<link>http://www.bussink.ch/?p=893</link>
		<comments>http://www.bussink.ch/?p=893#comments</comments>
		<pubDate>Fri, 06 Jul 2012 10:58:33 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vCenter Operations Manager]]></category>
		<category><![CDATA[vCOPS]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=893</guid>
		<description><![CDATA[Yesterday, VMware released version 5.0.2 of the vCenter [...]]]></description>
				<content:encoded><![CDATA[<p>Yesterday, VMware released version 5.0.2 of the vCenter Operations Manager. Here are the <a title="vcops 5.0.2 release notes" href="https://www.vmware.com/support/vcops/doc/vcops-502-release-notes.html" target="_blank">release notes</a> for version 5.0.2.  Reading the release notes, I&#8217;m looking forward to the New Text Widget in the Enterprise version of the product.</p>
<p>Here are the three key benefits put forward by VMware</p>
<ul>
<li>Actionable intelligence to automated manual operations processes</li>
<li>Visibility accross infrastructure and applications for rapid problem resolution</li>
<li>Proactively ensures optimal resource utilization and virtual and cloud infrastructure performance</li>
</ul>
<p>So if you are running version 5.0.0 or 5.0.1, you can easely upgrade to the latest version using the <strong>VMware-vcops-5.0.2-770497.pak</strong> (386MB) file.</p>
<p>First you need to download the VMware-vcops-5.0.2-770497.pak file from the VMware Portal</p>
<div id="attachment_894" class="wp-caption alignnone" style="width: 536px"><a href="http://www.bussink.ch/?attachment_id=894" rel="attachment wp-att-894"><img class=" wp-image-894 " title="vCenter Operations Manager 5.0.2 PAK download" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-Download-pak.png" alt="" width="526" height="368" /></a><p class="wp-caption-text">vCenter Operations Manager 5.0.2 PAK download</p></div>
<p>At this point I highly recommend that you make a clone of your vCenter Operations Manager 5 servers, in case the upgrade fails. Once the upgrade is started there is no way to turn back or to downgrade back to 5.0.0/5.0.1</p>
<p>You then need to connect to the vCenter Operations Manager Administration panel.  https://vcops.domainname/admin/</p>
<div id="attachment_895" class="wp-caption alignnone" style="width: 572px"><a href="http://www.bussink.ch/?attachment_id=895" rel="attachment wp-att-895"><img class=" wp-image-895 " title="Connect to the vCenter Operations Manager Administration" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-connect-to-admin.png" alt="" width="562" height="279" /></a><p class="wp-caption-text">Connect to the vCenter Operations Manager Administration</p></div>
<p>From the Update Tab, you can select the path to the VMware-vcops-5.0.2-770497.pak file.</p>
<div id="attachment_896" class="wp-caption alignnone" style="width: 571px"><a href="http://www.bussink.ch/?attachment_id=896" rel="attachment wp-att-896"><img class=" wp-image-896 " title="Select update package VMware-vcops-5.0.2-770497.pak" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-Update-Package.png" alt="" width="561" height="253" /></a><p class="wp-caption-text">Select update package VMware-vcops-5.0.2-770497.pak</p></div>
<p>When you start the update you get the warning box to remind you to make a backup of your vCenter Operations Manager environment.</p>
<div id="attachment_897" class="wp-caption alignnone" style="width: 557px"><a href="http://www.bussink.ch/?attachment_id=897" rel="attachment wp-att-897"><img class=" wp-image-897 " title="One Way Ticket, so Backup" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-One-Way-Ticket-so-Backup.png" alt="" width="547" height="271" /></a><p class="wp-caption-text">One Way Ticket, so Backup</p></div>
<p>It starts uploading the .pak file</p>
<div id="attachment_898" class="wp-caption alignnone" style="width: 523px"><a href="http://www.bussink.ch/?attachment_id=898" rel="attachment wp-att-898"><img class=" wp-image-898   " title="uploading..." src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-Uploading-patch.png" alt="" width="513" height="320" /></a><p class="wp-caption-text">uploading&#8230;</p></div>
<p>You get to accept the EULA once more.</p>
<div id="attachment_899" class="wp-caption alignnone" style="width: 510px"><a href="http://www.bussink.ch/?attachment_id=899" rel="attachment wp-att-899"><img class=" wp-image-899   " title="EULA" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-EULA.png" alt="" width="500" height="262" /></a><p class="wp-caption-text">EULA</p></div>
<p>Final warning message before starting the upgrade process.</p>
<div id="attachment_900" class="wp-caption alignnone" style="width: 308px"><a href="http://www.bussink.ch/?attachment_id=900" rel="attachment wp-att-900"><img class="size-full wp-image-900" title="Warning Message" src="http://www.bussink.ch/wp-content/uploads//2012/07/VCOps-warning-message.png" alt="" width="298" height="139" /></a><p class="wp-caption-text">Warning Message</p></div>
<p>The upgrade process has started on my vCenter Operations Manager 5.0.1</p>
<div id="attachment_901" class="wp-caption alignnone" style="width: 517px"><a href="http://www.bussink.ch/?attachment_id=901" rel="attachment wp-att-901"><img class=" wp-image-901  " title="Updating from 5.0.1 to 5.0.2" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOPs-Updating-from-5.0.1-to-5.0.2.png" alt="" width="507" height="242" /></a><p class="wp-caption-text">Updating from 5.0.1 to 5.0.2</p></div>
<p>Once the upgrade process is done, it will log you out of the Administration portal and you will see a</p>
<div id="attachment_902" class="wp-caption alignnone" style="width: 557px"><a href="http://www.bussink.ch/?attachment_id=902" rel="attachment wp-att-902"><img class=" wp-image-902    " title="Data Migration in Progress message" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-Data-Migration-in-Progress.png" alt="" width="547" height="61" /></a><p class="wp-caption-text">Data Migration in Progress message</p></div>
<p>You can relog into the vCenter Operations Manager Administration web portal to follow more closely what it&#8217;s doing from the Update tab.</p>
<div id="attachment_903" class="wp-caption alignnone" style="width: 585px"><a href="http://www.bussink.ch/?attachment_id=903" rel="attachment wp-att-903"><img class=" wp-image-903    " title="Updating checks and processes" src="http://www.bussink.ch/wp-content/uploads//2012/07/vCOps-updating-1.png" alt="" width="575" height="341" /></a><p class="wp-caption-text">Updating checks and processes</p></div>
<p>The full update details will show something like this:</p>
<div class='et-box et-shadow'>
					<div class='et-box-content'><pre><pre>vCenter Operations Manager Administration
Version 5.0.2, Build 770497
Update
----------------------------------------------------------------------
UPDATE STATUS
----------------------------------------------------------------------
Update attempted on Fri Jul  6 08:38:46 UTC 2012
Downloading update .............................................. done
Checking EULA Acceptance ........................................ done
Checking disk space on &#039;/&#039; in UI VM ............................. done
Checking disk space on &#039;/&#039; in Analytics VM ...................... done
Checking disk space on &#039;/data&#039; in UI VM ......................... done
Checking disk space on &#039;/data&#039; in Analytics VM .................. done
Extracting package .............................................. done
Validating update files ......................................... done
Preparing update environment .................................... done
Stopping administration service ................................. done
Installing update ............................................... done
Starting administration service ................................. done
Stopping core services .......................................... done
Installing update ............................................... done
Upgrading CapacityIQ database ................................... done
Upgrading database .............................................. done
Deleting stale VM entities from database ........................ done
Starting core services .......................................... done
Update operation ................................................ done
Starting administration service ................................. done
Starting core services .......................................... done
</pre></pre></div></div>
<p>After which your vCenter Operations Manager will be running version 5.0.2</p>
<div id="attachment_907" class="wp-caption alignnone" style="width: 577px"><a href="http://www.bussink.ch/?attachment_id=907" rel="attachment wp-att-907"><img class=" wp-image-907  " title="vCenter Operations Manager 5.0.2 Status Tab" src="http://www.bussink.ch/wp-content/uploads//2012/07/VCOps-5.0.2-Status-Tab.png" alt="" width="567" height="301" /></a><p class="wp-caption-text">vCenter Operations Manager 5.0.2 Status Tab</p></div>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=893</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrading the Nexenta storage in the vLab</title>
		<link>http://www.bussink.ch/?p=886</link>
		<comments>http://www.bussink.ch/?p=886#comments</comments>
		<pubDate>Fri, 29 Jun 2012 22:45:17 +0000</pubDate>
		<dc:creator>erik</dc:creator>
				<category><![CDATA[Nexenta]]></category>

		<guid isPermaLink="false">http://www.bussink.ch/?p=886</guid>
		<description><![CDATA[First, I&#8217;m sorry I have been so quiet on the web, [...]]]></description>
				<content:encoded><![CDATA[<p>First, I&#8217;m sorry I have been so quiet on the web, bu I&#8217;ve just come back from 15 days of medical leave due to a Bursitus in my elbow, which made it extremely hard to write anything with a cast. But that did not stop me from swapping disks in Nexenta Storage server.</p>
<p>I&#8217;ve been running a ZFS Pool with 8x Hitachi Deskstar SATA 1TB HDS7210KLA330 for over 1200 days, and out of the 8 disk, not one has failed me. With 8x 1TB SATA Disk in mirror as seen in my previous <a title="Nexenta storage for the vLab" href="http://www.bussink.ch/?p=759" target="_blank">Nexenta storage for the vLab</a> article, I used to have 3.14TB Usable space. But I needed more, and I wanted to replace these 3 years old disk. I slowly swapped one disk per mirror at a time. Each disk resilver took just more than 8 hours.</p>
<p>I have now finished the complete replacement with 8x Seagate Barracuda ST3000DM001-9YN166 (3TB) disk. My current ZFS Pool is now as follows</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/07/01-New-ZPOOL-Status-after-final-resilver.png"><img class="alignnone size-full wp-image-887" title="zpool status after final resilver" src="http://www.bussink.ch/wp-content/uploads//2012/07/01-New-ZPOOL-Status-after-final-resilver.png" alt="zpool status after final resilver" width="529" height="391" /></a></p>
<p>After the migration, the ZFS Pool is now of 10.9TB of Usable space.</p>
<p><a href="http://www.bussink.ch/wp-content/uploads//2012/07/02-tank-volume.png"><img class="alignnone  wp-image-888" title="Nexenta GUI tank Volume" src="http://www.bussink.ch/wp-content/uploads//2012/07/02-tank-volume.png" alt="Nexenta GUI tank Volume" width="769" height="366" /></a></p>
<p>This should give me quite a lot of space for new virtual machines. I will run some more performance test in a few days add them to this article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bussink.ch/?feed=rss2&#038;p=886</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
