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.

feita há 2 anos742 visualizações
2 Respostas
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
ENGENHEIRO DE SUPORTE
respondido há 2 anos
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
ENGENHEIRO DE SUPORTE
RJ-D
respondido há 2 anos

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas