43 questions
-4
votes
0
answers
149
views
AWS Storage Gateway - Tapes - Retrieved Status [closed]
I have inherited a storage gateway that is no longer accessible, VM not running etc.
I have 3 tapes in AVAILABLE and 1 that was archived.
I setup a new storage gateway to an EC2 instance and retrieved ...
0
votes
0
answers
60
views
Is it impossible to overwrite a 0byte file on NFS?
I have set up NFS using AWS Storage Gateway and File Share on a Mac environment. When using a specific program to create 0byte files on this NFS, if a file with the same name already exists, the ...
0
votes
1
answer
93
views
react.js, useEffect() that can beturned into a variable?
I currently have
Amplify to authenticate into my s3 bucket
storage to get the data
js to clean the data
apex-charts-react to visualize my data
I want to start by saying: I am not a front end web ...
1
vote
1
answer
956
views
when i try to create storage gateway in AS using terraform, i face "error: retrieving activation key from ip address making http request timeout"
Please refer my script below, this worked fine earlier and now it times out when retrieving activation key. All the resources will be created except gateway.
Security group code is deleted as i am ...
1
vote
1
answer
1k
views
Can we link storage gateway in one account to s3 bucket in another account?
Is it possible to link storage gateway (s3 file) in aws which is on one account to link it to the s3 bucket present in another account ? Please share some insights.
I have tried finding it but no ...
-1
votes
1
answer
75
views
AWS Storage Gateway and vSANs [closed]
I'm learning about AWS Storage Gateway appliances, and I can't seem to find the answer to my question, it may be my lack of storage appliance knowledge or I'm not looking in the right place, but hope ...
0
votes
1
answer
205
views
Terraform: aws_storagegateway_cached_iscsi_volume.volume_size_in_bytes cannot create drives more than 1GB
I am creating an AWS Volume Storage Gateway. I can create the Gateway, Cache and Upload Buffer. However, I cannot create a volume larger than 1GB. It looks like an overflow problem.
...
0
votes
1
answer
84
views
Why when restoring an archive object from glacier in storage gateway it does not appear the error that AWS shows in their blog?
We are following this blog [1] to automate the restoration of archived objects through aws storage gateway. But as we commented in the blog post, we do not find the log with the type: ...
-3
votes
1
answer
784
views
Connecting on-premise to AWS [closed]
Can anyone tell the difference between AWS DataSync, database migration service (DMS), storage gateway, direct connect and site-to-site VPN connect? As all these are used to connect with on-premises ...
0
votes
1
answer
372
views
How to automate the creation of cache disks for storage gateway with terraform?
I'm automating the creation of a storage gateway in terraform following [1], to follow the best practices of gitops of having every important infrastucture as code. And i have to manually allocate the ...
0
votes
0
answers
94
views
How to migrate backup to AWS cloud ?(AWS Storage Gateway)
I am trying to create an application to migrate on-premise tape backup to the AWS cloud in an online way.
I went through the training where snowball service device as an offline mode of transportation ...
7
votes
1
answer
11k
views
AWS FSx vs S3 File Gateway
let's suppose I have the need to have a NAS-equivalent share on AWS that will replace my on-prem NAS server. I see that both solutions, FSx and S3 File Gateway, allow to have a SMB protocol interface. ...
0
votes
1
answer
1k
views
Error: error creating Storage gateway SMB file Share: InvalidGatewayRequestExeption
I tried to run following terraform code o create test smb share but got error
see code
provider "aws" {
region = "us-east-1"
}
resource "aws_storagegateway_smb_file_share&...
0
votes
1
answer
212
views
List file shares on AWS Storage Gateway with boto3
I am trying to list all fileshares on a specific Storage Gateway like so:
import boto3
sg = boto3.client('storagegateway', 'us-east-1')
aws = sg.list_file_shares(
GatewayARN = "arn:aws:...
1
vote
1
answer
151
views
how to filter on list_gateways() aws boto3
got following code and it shows all my storage gateways. I need to get info on only 1 gateway
import boto3
sg = boto3.client('storagegateway', 'us-east-1')
sg.list(gateways)
print (sg.list_gateways)
...