OVH configuration

Hi,

I am a OVH S3 user.

Testing with what have been recommended on the site about user id and secret id,

I can’t run the test with duplicati, time out and no error message.

With winscp I can connect like a charm with parameters described.

With duplicati I spent hours and hours without success

it looks some of you run with OVH

I am using last duplicati version, in portainer

Can you tell me if some tips with duplicati exist, I guest I tried everything.

Can portainer block access? (I used the stack provided in the web duplicati site)
Thanks for your help and merry Xmas

Bucket mybuck

Directory buckusr

s3.gra.io.cloud.ovh.net With ssl

Hi @Jerem, welcome to the forum :waving_hand:

That is usually an indication of wrong host, wrong port, DNS issues, etc.

Could you try this inside the container:

ping s3.gra.io.cloud.ovh.net

Alternative is to try with another known host (use a random password) just to see you get “access denied”. You could try with s3.amazonaws.com.

If there is no access to a known working host, the most likely issue is a local configuration issue.

That is not the default, AFAIK, but it is possible to configure Docker with an internal or no network, which will prevent any outbound access.

Hi kenkendk,

First of all, thanks so much for your warm welcome, and your fast answer.
Again thanks

I fixed the problem, it was from firewall site. Rules were blocking 443 and 80 ports.
Duplicati is installed in NAS Asustore with portainer, everything were great in LAN but as OVH in on WAN it’s was blocked.
that said, Duplicati works like a charm with OVH, and I backuped and restored file with out problem.
I spent hours and hours on configuration stack for accessing to folder from container, basically because Asustore ADM “put” files in “User Homes” by default, which is bindded in the NAS, I have to move files to other directories to mount them in Portainer for Duplicati access.

Here’s the file, it would help maye others
”version: “2.1”
services:
duplicati:
image: lscr.io/linuxserver/duplicati:latest
container_name: duplicati
environment:

  • PUID=${PUID}
  • PGID=${PGID}
  • TZ=${TZ}
  • DUPLICATI__WEBSERVICE_PASSWORD=${DUPLICATI__WEBSERVICE_PASSWORD}
  • SETTINGS_ENCRYPTION_KEY=${SETTINGS_ENCRYPTION_KEY}
  • CLI_ARGS=${CLI_ARGS}
    volumes:
  • /volume1/duplicati-data:/config
  • /volume1/duplicati-data/backups:/backups
  • /volume1/doc_cyber:/doc_cyber:ro
  • /volume1/gerald_file:/gerald_file:ro
  • /volume1/sandrine_file:/sandrine_file:ro
  • /volume1/restore_path:/restore_path
    ports:
  • 8200:8200
    restart: unless-stopped”