I want to create a folder in the shared top directory of FSx using SSM's PowerShell command.

0

I would like to run powershell commands on a specified EC2 instance using AWS-RunPowerShellScript in Systems Manager's Run Command. I want to create a folder in the shared top directory of FSx, so I carried out the following command.

$path = FSx network drive path
New-Item -Path "$path\D$\folder-name" -ItemType directory

However, access is denied.

I get an error message "Unable to connect to remote server" even after executing the following commands.

$name = FSx name
Invoke-Command -Credential $domainCredential -ComputerName $name -ScriptBlock { New-Item -Path "\D$\folder-name" -ItemType directory }

I would like to know what I should do.

gefragt vor 2 Jahren742 Aufrufe
2 Antworten
0

Hello! FSx provides you with a Powershell management endpoint to perform commands. Please take a look at the following documentation which explains how to connect to the FSx Powershell management endpoint which you can use to run commands. Please make sure you are using the FSx powershell endpoint name instead of the regular FSx name. If you are already using the FSx powershell endpoint name as shown in the documentation screenshots, please let us know.

https://docs.aws.amazon.com/fsx/latest/WindowsGuide/remote-pwrshell.html#using-rps

AWS
SUPPORT-TECHNIKER
beantwortet vor 2 Jahren
0

Hello!

From the context of an SSM run command, New-Item without credentials will be unauthenticated. That being said, New-Item does support -Credential as a parameter, please try your command again with credentials.

$path = FSx network drive path
New-Item -Path "$path\D$\folder-name" -ItemType directory -Credential $domainCredential

At this time, the FSx PowerShell management endpoint does not support New-Item as a powershell command. For a list of supported commands, please consider invoking a remote session and using Get-Command.

References:

AWS
SUPPORT-TECHNIKER
RJ-D
beantwortet vor 2 Jahren

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen