Powershell commands for configuring HPC Head Nodes
-
lundi 23 janvier 2012 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
Toutes les réponses
-
lundi 23 janvier 2012 16:21
Hi Aravindakumar,
Please try:
Set-HpcClusterProperty [-InstallCredential <PSCredential>] [-Scheduler <String>] [<CommonParameters>]
Regards,
Łukasz -
lundi 23 janvier 2012 23:33Thanks, how about naming of nodes ?
Aravindakumar.V -
lundi 23 janvier 2012 23:37Set-HpcClusterProperty -NodeNamingSeries
-
mardi 24 janvier 2012 05:18
Thanks , it worked..
Aravindakumar.V- Marqué comme réponse Aravindakumar1 mardi 24 janvier 2012 05:19
-
dimanche 29 janvier 2012 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%"