I am using a S3 compatible storage with my provider and using the GUI I have no issue accessing the service.
When I try to use the powershell and use Select-CloudFolder -Path “nasbackup” it tries to access https://nasbackup.s3provider.net which fails because the DNS name does not exist - it should access https://s3provider.net/nasbackup (as the GUI does) - this even happens when I say Set-CloudOption -PathStyle path
[reply=“Rainer Gottschall;d222”] Can you post the call to Select-CloudFolder with values for any variables if you are using them? Please replace any revealing bucket/path names with temporary names if needed). Thanks.
$s3=Get-CloudS3Connection -Key "xxxxxxxxxxxxx" -Secret "yyyyyyy" -EndPoint "cloudstore.test.net:8082"
Set-CloudOption -PathStyle path
$s3|Select-CloudFolder -Path "nasbackup"
Select-CloudFolder : The remote name could not be resolved: 'nasbackup.cloudstore.test.net'
At line:1 char:5
+ $s3|Select-CloudFolder -Path "nasbackup"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Select-CloudFolder], LightWebException
+ FullyQualifiedErrorId : CloudBerryLab.Base.HttpUtil.Light.LightWebException,CloudBerryLab.Explorer.PSSnapIn.Comm
ands.SelectCloudFolder
[reply=“Rainer Gottschall;582”]
Seems like you need to add ’ -SignatureVersion 2’ to your Get-CloudS3Connection string as per our PowerShell snap-in guide on our site because you use S3-Compatible storage service.