Powershell commands for configuring HPC Head Nodes

已答覆 Powershell commands for configuring HPC Head Nodes

  • lunes, 23 de enero de 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

Todas las respuestas

  • lunes, 23 de enero de 2012 16:21
     
     

    Hi Aravindakumar,

    Please try:

    Set-HpcClusterProperty [-InstallCredential <PSCredential>] [-Scheduler <String>] [<CommonParameters>]

    Regards,
    Łukasz

  • lunes, 23 de enero de 2012 23:33
     
     
    Thanks, how about naming of nodes ?
    Aravindakumar.V
  • lunes, 23 de enero de 2012 23:37
     
     
    Set-HpcClusterProperty -NodeNamingSeries
  • martes, 24 de enero de 2012 5:18
     
     Respondida
    Thanks , it worked..
    Aravindakumar.V
    • Marcado como respuesta Aravindakumar1 martes, 24 de enero de 2012 5:19
    •  
  • domingo, 29 de enero de 2012 2: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%"