tech:aws_cloud_s3fs
Ceci est une ancienne révision du document !
Table des matières
AWS Cloud S3FS
Voir :
S3 Alternatives
Voir :
- MinIO
- Scality-s3
- riakcs
- Zenko (multi-cloud)
Voir aussi :
- Ceph
- IPFS
- /etc/systemd/system/mnt-shared.mount
[Unit] Description=Partage S3 [Mount] What=bucketname Where=/mnt/shared Type=fuse.s3fs Options=_netdev,noatime,noexec,nosuid,nodev,allow_other,iam_role=auto,umask=0000,endpoint=eu-central-1,url=http://s3-eu-central-1.amazonaws.com Environment= "http_proxy=" "https_proxy=" # If supported by the version of systemd. Really necessary ? #LazyUnmount=True [Install] WantedBy=multi-user.target
- /etc/systemd/system/mnt-shared.automount
[Unit] Description=Automount Partage S3 Requires=network-online.target After=network-online.service [Automount] Where=/mnt/shared TimeoutIdleSec=10 [Install] WantedBy=multi-user.target
systemctl daemon-reload
systemctl disable mnt-shared.mount
systemctl enable mnt-shared.automount
Debug
systemctl status /mnt/shared journalctl -u /mnt/shared
killall s3fs killall -9 s3fs umount -l /mnt/shared systemctl stop mnt-shared.mount systemctl stop mnt-shared.automount s3fs bucketname /mnt/s3 -o endpoint=eu-central-1 -o url=http://s3-eu-central-1.amazonaws.com -o iam_role=auto -o dbglevel=info -o curldbg -d -f
Autres
Ansible
- name: service mount systemd: daemon_reload=yes name=mnt-shared.mount - name: service automount systemd: enabled=yes daemon_reload=yes name=mnt-shared.mount.automount
Scality-S3
MinIO
tech/aws_cloud_s3fs.1742825205.txt.gz · Dernière modification : de 127.0.0.1
