Code Monkey home page Code Monkey logo

Comments (4)

jaromirk avatar jaromirk commented on May 13, 2024

you have to create s2d cluster with this command and manually create pool and tiers

#TP5
Enable-ClusterS2D -CimSession $ClusterName -AutoConfig:0 -Confirm:$false -SkipEligibilityChecks

#TP5 fix
Invoke-Command -ComputerName $servers -ScriptBlock {Get-ScheduledTask "SpaceManagerTask" | Disable-ScheduledTask}

#register storage provider
Get-StorageProvider | Register-StorageSubsystem -ComputerName $ClusterName

#create pool
$phydisk = Get-StorageSubSystem -FriendlyName *$ClusterName | Get-PhysicalDisk -CanPool $true
Write-Host "Number of physical disks found:" $phydisk.count -ForegroundColor Cyan

$pool=New-StoragePool -FriendlyName DirectPool -PhysicalDisks $phydisk -StorageSubSystemFriendlyName *$ClusterName
$pool | get-physicaldisk | where Size -le 900GB | Set-PhysicalDisk -MediaType SSD
$pool | get-physicaldisk | where Size -ge 900GB | Set-PhysicalDisk -MediaType HDD

#Create Tiers
$Perf = New-StorageTier -FriendlyName Performance -MediaType SSD -ResiliencySettingName Mirror -StoragePoolFriendlyName $pool.friendlyname -PhysicalDiskRedundancy 2
$Cap = New-StorageTier -FriendlyName Capacity -MediaType HDD -ResiliencySettingName Parity -StoragePoolFriendlyName $pool.friendlyname -PhysicalDiskRedundancy 2

#create volumes
1..4 | ForEach-Object {
New-Volume -StoragePoolFriendlyName $pool.friendlyname -FriendlyName MultiResiliencyDisk$_ -FileSystem CSVFS_ReFS -StorageTiers $perf,$cap -StorageTierSizes 1TB,10TB
}

from mslab.

jaromirk avatar jaromirk commented on May 13, 2024

Take a look here https://github.com/Microsoft/ws2016lab/blob/master/Scenarios/S2D%20Hyperconverged%20TP5/s2d_hyperconverged_cluster_TP5.ps1 . I published whole script a minute ago.

from mslab.

TolliLF avatar TolliLF commented on May 13, 2024

Line 146 - I’d consider using Get-Clusternode in case they don’t call their nodes the same as you.

Tolli Lowell-Forker – Senior PM
Cloud Platform Engineering Center (CPEC)
Enterprise Cloud Group - CAT Team
425.421.1380 | My Calendar [HTMLhttps://outlook.office365.com/owa/calendar/[email protected]/85335a745a694a57b6246a90013f4de212348976503993390238/calendar.html] [ICShttps://outlook.office365.com/owa/calendar/[email protected]/85335a745a694a57b6246a90013f4de212348976503993390238/calendar.ics]
[email protected]:[email protected]

From: Jaromir Kaspar [mailto:[email protected]]
Sent: Tuesday, June 21, 2016 1:31 PM
To: Microsoft/ws2016lab [email protected]
Subject: Re: [Microsoft/ws2016lab] Problems on setting up the Hyperconverged S2D with Nano Servers (#4)

Take a look here https://github.com/Microsoft/ws2016lab/blob/master/Scenarios/S2D%20Hyperconverged%20TP5/s2d_hyperconverged_cluster_TP5.ps1 . I published whole script a minute ago.


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHubhttps://github.com//issues/4#issuecomment-227562248, or mute the threadhttps://github.com/notifications/unsubscribe/AQLlBO_S52va_VHt4--DNHLfKf5APezAks5qOEoNgaJpZM4I6huM.

from mslab.

TGC-GS avatar TGC-GS commented on May 13, 2024

Thank you for your help. First Response helped me out, the enable-clusters2d didn't work for me until you posted your solution. And it's very gentle from you to make a whole script :)

from mslab.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.