Note: Forums will be making significant UX changes to address key usability improvements surrounding search, discoverability and navigation. To learn more about these changes please visit the announcement which can be found HERE.
Powershell commands for configuring HPC Head Nodes

Jawab Powershell commands for configuring HPC Head Nodes

  • 23 Januari 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

Semua Balasan

  • 23 Januari 2012 16:21
     
     

    Hi Aravindakumar,

    Please try:

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

    Regards,
    Łukasz

  • 23 Januari 2012 23:33
     
     
    Thanks, how about naming of nodes ?
    Aravindakumar.V
  • 23 Januari 2012 23:37
     
     
    Set-HpcClusterProperty -NodeNamingSeries
  • 24 Januari 2012 5:18
     
     Jawab
    Thanks , it worked..
    Aravindakumar.V
    • Ditandai sebagai Jawaban oleh Aravindakumar1 24 Januari 2012 5:19
    •  
  • 29 Januari 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%"