Powershell commands for configuring HPC Head Nodes
-
23 Ocak 2012 Pazartesi 11:20
Hi,
I am trying to automate the configuration of head node in Windows HPC thorugh powershell cmdlets which is the first step after installation of HPC Pack as head node. Configuration basically involves the following steps 1) configure your network 2) Provide Installation credential 3)Configure the naming of nodes 4) Create a node template.
I can able to find HPC power shell commands for 1. Confguring the network - Setup-HPCNetwork, 2. Create a node template - New-HpcNodeTemplate . But I am unable to find the HPC Powershell commands for [Provide installation credentials] and [ Configure the naming of nodes].
I have tried out using Set-HPCJobCrential, Set-HPCTestCredential, Set-HPCSOACrential but none of them helped to pass this [Provide installation credentials] step.
If anybody familiar with this kindly assist.
Thanks & Regards
Aravindakumar.V
Aravindakumar.V
Tüm Yanıtlar
-
23 Ocak 2012 Pazartesi 16:21
Hi Aravindakumar,
Please try:
Set-HpcClusterProperty [-InstallCredential <PSCredential>] [-Scheduler <String>] [<CommonParameters>]
Regards,
Łukasz -
23 Ocak 2012 Pazartesi 23:33Thanks, how about naming of nodes ?
Aravindakumar.V -
23 Ocak 2012 Pazartesi 23:37Set-HpcClusterProperty -NodeNamingSeries
-
24 Ocak 2012 Salı 05:18
Thanks , it worked..
Aravindakumar.V- Yanıt Olarak İşaretleyen Aravindakumar1 24 Ocak 2012 Salı 05:19
-
29 Ocak 2012 Pazar 02:52
Hi Aravindakumar.V,
This is an exmaple to set install credential and naming series,
# Create Install credential
$instuser="abc"
$instpwd="xyz"
$pass=Convertto-SecureString $instpwd -asplaintext -force
$mycred=New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $instuser,$pass
Set-HpcClusterProperty -InstallCredential $mycred# Set node naming series
Set-HpcClusterProperty -NodeNamingSeries "HPC-%1000%"