S3Proxy implements the S3 API and proxies requests, allowing use of different backends and middlewares.
Questions tagged [s3proxy]
11 questions
6
votes
2 answers
AWS S3 Java Embedded Mock for Integration Tests
After searching the internet for a good solution to an embedded Java AWS S3 mock it seemed that S3Ninja and S3Proxy seemed to be the most popular solutions.
However there doesn't seem to be an easy way to fire these up programmatically. After giving…

ptimson
- 5,533
- 8
- 35
- 53
2
votes
1 answer
Boto3 - how to connect to S3 via proxy?
I'm using a container that simulate a S3 server running on http://127.0.0.1:4569 (with no authorization or credentials needed)
and I'm trying to simply connect and print a list of all the bucket names using python and boto3
here's my…

Louis W.
- 81
- 1
- 3
- 9
1
vote
0 answers
openstack-swift with OVH returns 401 Unauthorized
I'm using a swift bucket on OVH
The CLI tool swift -A $OS_AUTH_URL -U $OS_USERNAME -K $OS_PASSWORD list -l foto-condivise works smoothly.
My config is:
s3proxy:
image: andrewgaul/s3proxy
ports:
- 127.0.0.1:8084:80
environment:
…

lrkwz
- 6,105
- 3
- 36
- 59
1
vote
1 answer
Is it possible to configure s3proxy to respond on different url than {host}:{port}?
I would like to make s3proxy to respond on url like {host}:{port}/s3 instead of just {host}:{port}. Is it possble to reconfigure default endpoint somehow?
I tried to set property like so s3proxy.endpoint={host}:{port}/s3 however I got en…

Alina Grosu
- 253
- 3
- 8
0
votes
1 answer
Selenium ChromeDriver: How to set Proxy ip without restart driver? ( I'm answering my own question)
We recently needed to implement a headless browser (used Selenium). It was required to send requests from different Ip addresses without restarting the driver, but after searching the Internet for information, I did not find a way to do this without…

Anton Slastuhin
- 1
- 1
0
votes
0 answers
ubuntu after rotating 3000 of addr interface goes of for 15 seconds
I have ~2000 ipv6 addresses on 1 interface.
While rotating them, I delete old ones and add new ones
for i in $(cat ip.list);do ip -6 addr del $i dev enp1s0f0;done
for i in $(cat ip.list);do ip -6 addr add $i dev enp1s0f0;done
after that, all…

sam
- 1
- 2
0
votes
0 answers
Creating Blob Store on Nexus Repository Manager with S3 Proxy
I'm dealing with the free version of Nexus Repository Manager that only supports S3 Bucket creation. However, I have an Azure Storage Account and I have to create blobs on this account.
I've deployed gaul's S3Proxy with the given configuration:…

Joci Ivanics
- 31
- 1
- 3
0
votes
0 answers
How to make Zenko-CloudServer notice about pre-existing objects in AWS S3 / Azure Storage
Per official documentation, pre-existing AWS S3 objects and Azure blobs can not be accessed by Zenko-CloudServer. Since this is annoying the question is:
Is there a way to populate bucket's metadata manually in Zenko so it can notice the existence…

Fernando Prieto
- 520
- 1
- 6
- 19
0
votes
1 answer
'mvn package' build errors out with
I'm trying to run a 'mvn package' and get the same error on multiple systems. I'm not sure if this is an error from my lack of knowledge in maven, a configuration issue or an actual Java bug. Has anyone run in to something similar or know a…

Fabiola
- 1
0
votes
1 answer
403 with hadoop-aws and s3proxy
I'm trying to use a s3proxy with Hadoop 3.1.2 but I'm getting a 403 error whereas with hadoop 2.7 it seems to work. Is that a regression or a misconfig on my side ?
s3proxy…

ticapix
- 1,534
- 1
- 11
- 15
-1
votes
1 answer
Is there a way to enable s3proxy trace logs
We are using s3proxy and facing issues so to get more info we are trying to check if we can enable trace logs in s3proxy

CoderAkki
- 7
- 4