1

ワークフローで PowerShell を使用し、次のようなインライン スクリプトを使用して、他のホストからクラスターをリモートでインストールしようとすると、次のようになります。

workflow CreateClusterCL1 {
  $password = "xxx" | ConvertTo-SecureString -asPlainText -Force
  $username = "xxxx"
  $credential = New-Object System.Management.Automation.PSCredential($username,$password)
  inlinescript {
    New-Cluster -Name xxx-CL1 -StaticAddress xxx -Node xxx-01, xxx-02, xxx-03, xxx-04 -NoStorage -Force
  } -PSComputerName xxx-01.xx.loc -PSCredential $credential 
}

次のエラーが表示されます。

CategoryInfo          : **PermissionDenied**: (:) [New-Cluster], ClusterCmdletException
    + FullyQualifiedErrorId : **UnauthorizedAccess,**Microsoft.FailoverClusters.PowerShell.NewClusterCommand
    + PSComputerName        : [xxxx-01.xxxx]
New-Cluster : There was an error adding node 'xxx-03' to the cluster
    You do not have administrative privileges on the server 'xxx-03.xxx.LOC'.
    Attempted to perform an unauthorized operation.
At CreateClusterCL1:8 char:8

何か案が?

4

0 に答える 0