<?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>Cluster &#8211; Haikos Blog</title>
	<atom:link href="https://www.hertes.net/tag/cluster/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.hertes.net</link>
	<description>Blog von Haiko Hertes zu allen Themen rund um Microsoft, Cloud und Datacenter</description>
	<lastBuildDate>Mon, 02 Oct 2023 08:18:33 +0000</lastBuildDate>
	<language>de</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>CPU-Kompatibilität in Hyper-V-Cluster mittels PowerShell steuern</title>
		<link>https://www.hertes.net/2023/10/cpu-kompatibilitaet-in-hyper-v-cluster-mittels-powershell-steuern/</link>
					<comments>https://www.hertes.net/2023/10/cpu-kompatibilitaet-in-hyper-v-cluster-mittels-powershell-steuern/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Mon, 02 Oct 2023 16:00:00 +0000</pubDate>
				<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Failover-Cluster]]></category>
		<category><![CDATA[Kompatibilität]]></category>
		<category><![CDATA[Prozessor]]></category>
		<category><![CDATA[S2D]]></category>
		<category><![CDATA[Virtuelle Maschine]]></category>
		<category><![CDATA[VM]]></category>
		<guid isPermaLink="false">https://www.hertes.net/?p=4225</guid>

					<description><![CDATA[Zu einem bestehenden 2-Knoten S2D-Hyper-V-Failover-Cluster aus 2 exakt gleichen Hosts hatte ich vor kurzem einen dritten Knoten hinzugefügt. Es handelte sich hierbei um das selbe HP-Server-Modell. Bei den ersten Live-Migrationen traten jedoch Fehler auf und eine Analyse brachte zu Tage, dass die CPUs am dritten Knoten geringfügig andere sind. Für dieses Problem gibt es im Allgemeinen das Feature &#8222;Processor compatibility&#8220; in Hyper-V (Im Deutschen als &#8222;Prozessorkompatibilitätsmodus&#8220; bezeichnet, in der GUI heisst es dann &#8222;Zu einem physischen Computer mit einer anderen Prozessorversion migrieren&#8220; bzw. &#8222;Migrate to physical computer with a different processor version&#8220;). Dieses Feature kann man natürlich problemlos über die&#8230;]]></description>
										<content:encoded><![CDATA[
<p>Zu einem bestehenden 2-Knoten S2D-Hyper-V-Failover-Cluster aus 2 exakt gleichen Hosts hatte ich vor kurzem einen dritten Knoten hinzugefügt. Es handelte sich hierbei um das selbe HP-Server-Modell. Bei den ersten Live-Migrationen traten jedoch Fehler auf und eine Analyse brachte zu Tage, dass die CPUs am dritten Knoten geringfügig andere sind.</p>



<p>Für dieses Problem gibt es im Allgemeinen das Feature &#8222;Processor compatibility&#8220; in Hyper-V (Im Deutschen als &#8222;Prozessorkompatibilitätsmodus&#8220; bezeichnet, in der GUI heisst es dann &#8222;Zu einem physischen Computer mit einer anderen Prozessorversion migrieren&#8220; bzw. &#8222;Migrate to physical computer with a different processor version&#8220;). Dieses Feature kann man natürlich problemlos über die GUI ein- und ausschalten:</p>



<figure class="wp-block-image size-full"><a href="https://www.hertes.net/wp-content/uploads/2023/10/image.png"><img fetchpriority="high" decoding="async" width="872" height="266" src="https://www.hertes.net/wp-content/uploads/2023/10/image.png" alt="" class="wp-image-4226" srcset="https://www.hertes.net/wp-content/uploads/2023/10/image.png 872w, https://www.hertes.net/wp-content/uploads/2023/10/image-300x92.png 300w, https://www.hertes.net/wp-content/uploads/2023/10/image-768x234.png 768w" sizes="(max-width: 872px) 100vw, 872px" /></a></figure>



<p>Allerdings ergeben sich hier schnell 2 Herausforderungen:</p>



<ul class="wp-block-list">
<li>Das Feature lässt sich nur ändern, während die VM ausgeschaltet ist</li>



<li>In einem Cluster laufen schnell mal eine 2-stellige Anzahl VMs</li>
</ul>



<p>Das kann man natürlich wie so vieles sehr elegant per PowerShell lösen, also habe ich dafür ein passendes Skript geschrieben. Dieses kann entweder zum ein- oder ausschalten des Features benutzt werden und iteriert dabei über einen Cluster und behandelt dabei dann alle VMs im Cluster, bei denen das Feature noch nicht korrekt eingestellt ist, in dem die VMs bei Bedarf zuerst gestoppt, das Feature gesetzt und dann falls vorher laufend die VM wieder startet. Am Ende wird dann noch der Gesamtzustand ausgegeben.</p>



<p>Das Skript findet ihr auf meinem GitHub Repo, siehe hier:</p>



<p><a href="https://github.com/HaikoHertes/scripts/blob/master/HyperV/EnableOrDisableCPUCompatibilityOnHyperVCluster.ps1">scripts/HyperV/EnableOrDisableCPUCompatibilityOnHyperVCluster.ps1 at master · HaikoHertes/scripts (github.com)</a></p>



<p>Damit kann man nun also entweder bei unterschiedlicher Hardware die CPU-Kompatibilität für alle VMs erhöhen oder, nachdem man z.B. die CPUs überall auf den selben Stand gebracht hat, das Feature wieder deaktivieren.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2023/10/cpu-kompatibilitaet-in-hyper-v-cluster-mittels-powershell-steuern/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Windows Server: HowTo Video zum Aufbau eines Clusters f&#252;r Hyper-V</title>
		<link>https://www.hertes.net/2016/05/windows-server-howto-video-zum-aufbau-eines-clusters-fr-hyper-v/</link>
					<comments>https://www.hertes.net/2016/05/windows-server-howto-video-zum-aufbau-eines-clusters-fr-hyper-v/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Mon, 16 May 2016 20:47:00 +0000</pubDate>
				<category><![CDATA[Windows Server]]></category>
		<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Windows Server 2012 R2]]></category>
		<category><![CDATA[Windows Server 2016]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[HA]]></category>
		<category><![CDATA[High Availability]]></category>
		<category><![CDATA[Hochverfügbarkeit]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=3187</guid>

					<description><![CDATA[In einem weiteren YouTube-Video zeige ich euch, wie ihr einen Hyper-V Cluster mit dem Windows Server 2012 R2 oder 2016 aufbauen könnt. Das ist leichter als man denkt! Viel Spaß beim Anschauen. https://youtu.be/4bCeqfhoW0c]]></description>
										<content:encoded><![CDATA[<p>In einem weiteren YouTube-Video zeige ich euch, wie ihr einen Hyper-V Cluster mit dem Windows Server 2012 R2 oder 2016 aufbauen könnt. Das ist leichter als man denkt! Viel Spaß beim Anschauen.</p>
<p><a href="https://youtu.be/4bCeqfhoW0c"><img decoding="async" title="Hyper-V-Cluster_Deckblatt" style="border-top: 0px; border-right: 0px; background-image: none; border-bottom: 0px; float: none; padding-top: 0px; padding-left: 0px; margin-left: auto; border-left: 0px; display: block; padding-right: 0px; margin-right: auto" border="0" alt="Hyper-V-Cluster_Deckblatt" src="https://www.hertes.net/wp-content/uploads/2016/06/Hyper-V-Cluster_Deckblatt.jpg" width="646" height="366" /></a></p>
<p><a title="https://youtu.be/4bCeqfhoW0c" href="https://youtu.be/4bCeqfhoW0c">https://youtu.be/4bCeqfhoW0c</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2016/05/windows-server-howto-video-zum-aufbau-eines-clusters-fr-hyper-v/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Windows Server 2012 R2: Einrichten eines Failover-Clusters am Beispiel Hyper-V</title>
		<link>https://www.hertes.net/2014/03/windows-server-2012-r2-einrichten-eines-failover-clusters-am-beispiel-hyper-v/</link>
					<comments>https://www.hertes.net/2014/03/windows-server-2012-r2-einrichten-eines-failover-clusters-am-beispiel-hyper-v/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Tue, 11 Mar 2014 07:39:12 +0000</pubDate>
				<category><![CDATA[Windows Server 2012]]></category>
		<category><![CDATA[Windows Server 2012 R2]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[Failover]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=2234</guid>

					<description><![CDATA[Ein Failover-Cluster ist eine gute Sache: Er sorgt für Hochverfügbarkeit! Damit lassen sich diverse Dienste geclustert betreiben. Mehrere Server teilen sich eine Aufgabe und die dazugehörige Last. Fällt nun einer der beteiligten sogenannten “Knoten” aus, so übernehmen die verbliebenen die Aufgabe sofort automatisch. Damit lässt sich beispielsweise auch Hyper-V bzw. die darauf laufenden virtuellen Maschinen gegen einen Ausfall absichern. Für eine Minimal-Konfiguration werden benötigt: Ein Domänencontroller Zwei weitere Server als Mitglied der Domäne Zentraler Speicher Für den zentralen Speicher kämen die beiden SAN-Technologien iSCSI und FiberChannel in Frage. Optional geht seit Server 2012 auch SMB3.0 (“Scale Out File Server”). Für&#8230;]]></description>
										<content:encoded><![CDATA[<p>Ein Failover-Cluster ist eine gute Sache: Er sorgt für Hochverfügbarkeit! Damit lassen sich diverse Dienste geclustert betreiben. Mehrere Server teilen sich eine Aufgabe und die dazugehörige Last. Fällt nun einer der beteiligten sogenannten “Knoten” aus, so übernehmen die verbliebenen die Aufgabe sofort automatisch. Damit lässt sich beispielsweise auch Hyper-V bzw. die darauf laufenden virtuellen Maschinen gegen einen Ausfall absichern.</p>
<p>Für eine Minimal-Konfiguration werden benötigt:</p>
<ul>
<li>Ein Domänencontroller </li>
<li>Zwei weitere Server als Mitglied der Domäne </li>
<li>Zentraler Speicher </li>
</ul>
<p>Für den zentralen Speicher kämen die beiden SAN-Technologien iSCSI und FiberChannel in Frage. Optional geht seit Server 2012 auch SMB3.0 (“Scale Out File Server”). Für eine Testumgebung ist iSCSI sehr gut geeignet. Wie man ein iSCSI-Target einrichtet und den dazugehörigen Initiator nutzt habe ich in einem meiner letzten Blogartikel beschrieben (<a href="http://www.hertes.net/?p=2177" target="_blank">Windows Server 2012 R2: iSCSI Target und Initiator einrichten</a>).</p>
<p>Der Domänencontroller sowie die beiden Member-Server laufen unter Windows Server 2012 R2.</p>
<p>Es werden 2 iSCSI-Targets benötigt, eines mit min. 512MB Speicher, das zweite mit ausreichend Speicher für die vorgesehenen VMs und deren VHD(X)-Dateien, in meinem Fall 40GB. Die beiden Targets müssen bereits auf beiden Knoten eingebunden sein, die beiden Datenträger online geschaltet worden sein, initialisiert und formatiert (ohne Laufwerksbuchstaben).</p>
<p>Weiterhin muss das Netzwerk sauber konfiguriert sein. Für eine Testumgebung reicht es, wenn die beiden Hosts über genau eine Netzwerkverbindung verfügen. Dort muss das selbe Subnetz eingerichtet sein, ebenso ein passender DNS-Server und ein Gateway. Für Produktivzwecke empfehlen sich deutlich mehr Netzwerkverbindungen, z.B. eine dedizierte für den Heartbeat (Link zwischen den Knoten), eine für die Anbindung an das Storage, eine für die Verwaltung, eine für die Anbindung an das reguläre Netzwerk und so weiter und so fort.</p>
<p>Als nächstes muss auf allen künftigen Knoten das Feature “Failoverclustering” installiert werden. Dazu werden auch die Verwaltungstools angeboten, die zumindest auf einem System installiert sein müssen, um den Cluster einrichten zu können:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover1.png"><img decoding="async" title="failover1" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover1" src="https://www.hertes.net/wp-content/uploads/2014/03/failover1_thumb.png" width="644" height="138" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover2.png"><img loading="lazy" decoding="async" title="failover2" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover2" src="https://www.hertes.net/wp-content/uploads/2014/03/failover2_thumb.png" width="644" height="458" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover3.png"><img loading="lazy" decoding="async" title="failover3" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover3" src="https://www.hertes.net/wp-content/uploads/2014/03/failover3_thumb.png" width="465" height="484" /></a></p>
<p>Wenn die Installation auf beiden/allen künftigen Knoten abgeschlossen ist kann der “Failovercluster-Manager” gestartet werden, z.B. über “Tools” im Servermanager:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover4.png"><img loading="lazy" decoding="async" title="failover4" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover4" src="https://www.hertes.net/wp-content/uploads/2014/03/failover4_thumb.png" width="644" height="162" /></a></p>
<p>Dort wird durch einen Rechtsklick auf das Wort “Failovercluster-Manager” im Baum links mittels “Cluster erstellen…” der Prozess begonnen:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover5.png"><img loading="lazy" decoding="async" title="failover5" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover5" src="https://www.hertes.net/wp-content/uploads/2014/03/failover5_thumb.png" width="644" height="217" /></a></p>
<p>In den ersten Schritten sind die künftigen Knoten auszuwählen:</p>
<table cellspacing="0" cellpadding="0" width="99%" border="0">
<tbody>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover6.png"><img decoding="async" title="failover6" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover6" src="https://www.hertes.net/wp-content/uploads/2014/03/failover6_thumb.png" width="331" /></a></td>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover7.png"><img decoding="async" title="failover7" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover7" src="https://www.hertes.net/wp-content/uploads/2014/03/failover7_thumb.png" width="331" /></a></td>
</tr>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover8.png"><img decoding="async" title="failover8" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover8" src="https://www.hertes.net/wp-content/uploads/2014/03/failover8_thumb.png" width="331" /></a></td>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover9.png"><img decoding="async" title="failover9" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover9" src="https://www.hertes.net/wp-content/uploads/2014/03/failover9_thumb.png" width="331" /></a></td>
</tr>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover10.png"><img decoding="async" title="failover10" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover10" src="https://www.hertes.net/wp-content/uploads/2014/03/failover10_thumb.png" width="331" /></a></td>
<td valign="top" width="99%">&#160;</td>
</tr>
</tbody>
</table>
<p>Danach folgt eine Abfrage bezüglich des “Konfigurationsvalidierungstests”. Dabei werden die beteiligten Server “auf Herz und Nieren geprüft”. Dieser Test dauert ca. 10 Minuten. Man könnte ihn abschalten – verzichtet dann auber auf den Support durch Microsoft und wertvoll Hinweise zur Konfiguration. Nicht zuletzt kann der Test einem auch Fehler aufzeigen, die man bei der Vorbereitung übersehen hat. Ich würde ihn also immer laufen lassen…</p>
<table cellspacing="0" cellpadding="0" width="99" border="0">
<tbody>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover11.png"><img decoding="async" title="failover11" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover11" src="https://www.hertes.net/wp-content/uploads/2014/03/failover11_thumb.png" width="331" /></a></td>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover16.png"><img decoding="async" title="failover16" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover16" src="https://www.hertes.net/wp-content/uploads/2014/03/failover16_thumb.png" width="331" /></a></td>
</tr>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover13.png"><img decoding="async" title="failover13" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover13" src="https://www.hertes.net/wp-content/uploads/2014/03/failover13_thumb.png" width="331" /></a></td>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover14.png"><img decoding="async" title="failover14" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover14" src="https://www.hertes.net/wp-content/uploads/2014/03/failover14_thumb.png" width="331" /></a></td>
</tr>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover15.png"><img decoding="async" title="failover15" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover15" src="https://www.hertes.net/wp-content/uploads/2014/03/failover15_thumb.png" width="331" /></a></td>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover161.png"><img decoding="async" title="failover16" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover16" src="https://www.hertes.net/wp-content/uploads/2014/03/failover16_thumb1.png" width="331" /></a></td>
</tr>
</tbody>
</table>
<p>Am Ende des Tests wird einem das Ergebnis angeboten (“Bericht anzeigen”):</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover17.png"><img loading="lazy" decoding="async" title="failover17" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover17" src="https://www.hertes.net/wp-content/uploads/2014/03/failover17_thumb.png" width="644" height="314" /></a></p>
<p>In diesem Fall liegt nur eine Warnung vor: Es gibt nur eine Netzwerkverbindung!</p>
<p>Nun muss noch ein Name für den Cluster sowie eine entsprechende IP-Adresse bestimmt werden. Außerdem kann man auswählen, dass der gesamte verfügbare Speicher dem Cluster hinzugefügt werden soll:</p>
<table cellspacing="0" cellpadding="0" width="99%" border="0">
<tbody>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover18.png"><img decoding="async" title="failover18" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover18" src="https://www.hertes.net/wp-content/uploads/2014/03/failover18_thumb.png" width="331" /></a></td>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover19.png"><img decoding="async" title="failover19" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover19" src="https://www.hertes.net/wp-content/uploads/2014/03/failover19_thumb.png" width="331" /></a></td>
</tr>
<tr>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover20.png"><img decoding="async" title="failover20" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover20" src="https://www.hertes.net/wp-content/uploads/2014/03/failover20_thumb.png" width="331" /></a></td>
<td valign="top" width="49%"><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover21.png"><img decoding="async" title="failover21" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover21" src="https://www.hertes.net/wp-content/uploads/2014/03/failover21_thumb.png" width="331" /></a></td>
</tr>
</tbody>
</table>
<p>Danach beginnt die eigentliche Bildung des Clusters. Ist diese abgeschlossen, kann die Clusterkonfiguration verändert werden bzw. der Cluster mit Rollen ausgestattet werden. Dabei ist zum einen die Netzwerkkonfiguration zu prüfen: Wenn es einen dedizierten Link zwischen den Hosts geben soll, so ist bei dieser Netzwerkkonfiguration der Haken “Clients das Herstellen einer Verbindung…” zu entfernen. Weiterhin muss das zweite iSCSI-Target noch als “Cluster Shared Volume” (CSV) bzw. al “freigegebenes Clutservolume” hinzugefügt werden. Das sorgt dafür, dass dieses “Laufwerk” auf allen Clutserknoten unter C:\ClusterStorage eingebunden wird und dort genutzt werden kann (z.B. für die VMs und VHDs)</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover22.png"><img loading="lazy" decoding="async" title="failover22" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover22" src="https://www.hertes.net/wp-content/uploads/2014/03/failover22_thumb.png" width="644" height="437" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover23.png"><img loading="lazy" decoding="async" title="failover23" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover23" src="https://www.hertes.net/wp-content/uploads/2014/03/failover23_thumb.png" width="644" height="437" /></a></p>
<p>Abschließend können nun VMs im Cluster erzeugt werden. Dabei ist darauf zu achten, das alle relevanten Daten unter C:\ClusterStorage liegen!</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover24.png"><img loading="lazy" decoding="async" title="failover24" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover24" src="https://www.hertes.net/wp-content/uploads/2014/03/failover24_thumb.png" width="644" height="437" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover25.png"><img loading="lazy" decoding="async" title="failover25" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover25" src="https://www.hertes.net/wp-content/uploads/2014/03/failover25_thumb.png" width="398" height="484" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover26.png"><img loading="lazy" decoding="async" title="failover26" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover26" src="https://www.hertes.net/wp-content/uploads/2014/03/failover26_thumb.png" width="637" height="484" /></a></p>
<p><a href="https://www.hertes.net/wp-content/uploads/2014/03/failover27.png"><img loading="lazy" decoding="async" title="failover27" style="border-left-width: 0px; border-right-width: 0px; background-image: none; border-bottom-width: 0px; float: none; padding-top: 0px; padding-left: 0px; margin: 0px auto; display: block; padding-right: 0px; border-top-width: 0px" border="0" alt="failover27" src="https://www.hertes.net/wp-content/uploads/2014/03/failover27_thumb.png" width="637" height="484" /></a></p>
<p>Wenn die VM fertig konfiguriert ist und läuft, dann kann man ganz einfach die Funktionsfähigkeit des Clusters testen und einen einfachen Ausfall simulieren: Man zieht einfach das Netzwerkkabel aus dem Host heraus, auf dem die VM aktuell ausgeführt wird. Dann sollte sie in kurzer Zeit auf dem verbliebenen Host neu gestartet werden und dann kurz darauf wieder regulär zur Verfügung stehen!</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2014/03/windows-server-2012-r2-einrichten-eines-failover-clusters-am-beispiel-hyper-v/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>SCVMM2012: Keine IP-Einstellungen beim Erstellen eines Clusters</title>
		<link>https://www.hertes.net/2013/02/scvmm2012-keine-ip-einstellungen-beim-erstellen-eines-clusters/</link>
					<comments>https://www.hertes.net/2013/02/scvmm2012-keine-ip-einstellungen-beim-erstellen-eines-clusters/#respond</comments>
		
		<dc:creator><![CDATA[Haiko]]></dc:creator>
		<pubDate>Fri, 22 Feb 2013 10:19:18 +0000</pubDate>
				<category><![CDATA[System Center]]></category>
		<category><![CDATA[System Center Virtual Machine Manager]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[Hyper-V]]></category>
		<category><![CDATA[SCVMM]]></category>
		<guid isPermaLink="false">http://www.hertes.net/?p=1610</guid>

					<description><![CDATA[Beim Erstellen eines Clusters mit Hilfe vom System Center Virtual Machine Manager 2012 unter Server 2008 R2 auf Hyper-V-Hosts unter Server 2008 R2 hatte ich das &#8222;Phänomen&#8220;, dass der &#8222;Create Cluster Wizard&#8220; die Option für die Cluster-IP nicht anzeigte: &#160; Es fehlte einfach der Bereich &#8222;IP Adress&#8220;, dadurch lässt sich der Wizard auch nicht abschließen. Beim Überprüfen aller in Frage kommenden Faktoren, viel mir auf, dass die Netzwerkkarten der beiden Hyper-V-Hosts kein Gateway eingetragen hatten (IP + Subnetzmaske + DNS passten). Nachdem ich ein Gateway (welches die Hosts gar nicht erreichen können) auf beiden NICs eingetragen habe, zeigte der Wizard&#8230;]]></description>
										<content:encoded><![CDATA[<p>Beim Erstellen eines Clusters mit Hilfe vom System Center Virtual Machine Manager 2012 unter Server 2008 R2 auf Hyper-V-Hosts unter Server 2008 R2 hatte ich das &#8222;Phänomen&#8220;, dass der &#8222;Create Cluster Wizard&#8220; die Option für die Cluster-IP nicht anzeigte:</p>
<p><a href="https://www.hertes.net/wp-content/uploads/2013/02/scvmm_cluster_no_ip.png"><img loading="lazy" decoding="async" class="alignleft size-full wp-image-1611" title="scvmm_cluster_no_ip" src="https://www.hertes.net/wp-content/uploads/2013/02/scvmm_cluster_no_ip.png" alt="" width="804" height="601" srcset="https://www.hertes.net/wp-content/uploads/2013/02/scvmm_cluster_no_ip.png 804w, https://www.hertes.net/wp-content/uploads/2013/02/scvmm_cluster_no_ip-300x224.png 300w" sizes="auto, (max-width: 804px) 100vw, 804px" /></a></p>
<p>&nbsp;</p>
<p>Es fehlte einfach der Bereich &#8222;IP Adress&#8220;, dadurch lässt sich der Wizard auch nicht abschließen. Beim Überprüfen aller in Frage kommenden Faktoren, viel mir auf, dass die Netzwerkkarten der beiden Hyper-V-Hosts kein Gateway eingetragen hatten (IP + Subnetzmaske + DNS passten). Nachdem ich ein Gateway (welches die Hosts gar nicht erreichen können) auf beiden NICs eingetragen habe, zeigte der Wizard auch die entsprechende Einstellung an und erstellt den Cluster erfolgreich.</p>
<p>Im Nachgang habe ich das Ganze dann nochmal nachgestellt und den &#8222;klassischen&#8220; Cluster-Assistenten verwendet, der vom Windows Server mitgeliefert wird. Dieser zeigt eine Warnung bezüglich des Gateways, stört sich aber sonst nicht weitere daran und erstellt den Cluster problemlos.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.hertes.net/2013/02/scvmm2012-keine-ip-einstellungen-beim-erstellen-eines-clusters/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
