mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2026-04-25 21:35:58 +03:00
[GH-ISSUE #2434] Set a custom endpoint connection port ? #1198
Labels
No labels
bug
bug
dataloss
duplicate
enhancement
feature request
help wanted
invalid
need info
performance
pull-request
question
question
testing
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/s3fs-fuse#1198
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Alakadoo on GitHub (Mar 12, 2024).
Original GitHub issue: https://github.com/s3fs-fuse/s3fs-fuse/issues/2434
Additional Information
Version of s3fs being used (
s3fs --version)v1.90
Version of fuse being used (
pkg-config --modversion fuse,rpm -qi fuseordpkg -s fuse)2.9.9
Kernel information (
uname -r)5.15.0-100-generic
GNU/Linux Distribution, if applicable (
cat /etc/os-release)PRETTY_NAME="Ubuntu 22.04.3 LTS"
NAME="Ubuntu"
VERSION_ID="22.04"
VERSION="22.04.3 LTS (Jammy Jellyfish)"
VERSION_CODENAME=jammy
ID=ubuntu
ID_LIKE=debian
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
UBUNTU_CODENAME=jammy
How to run s3fs, if applicable
[X] command line
s3fs buckets3 /buckets3 -o passwd_file=/etc/passwd-s3fs -o url=http://isilonendpoint.com:9020 -o use_path_request_style -o dbglevel=info -f -o retries=1 -o connect_timeout=60
s3fs syslog messages (
grep s3fs /var/log/syslog,journalctl | grep s3fs, ors3fs outputs)Details about issue
I'm trying to mount my s3 bucket created on my isilon storage.
Isilon is only listening on port 9020 and 9021 for s3 buckets, however even by setting :9020 at the end of url option, I can see on my network trace that my client is still trying to connect to the isilonendpoint on port 80, resulting in an access denied.
Is there a way to set a custom port ? I didn't see any option related in the documentation.
@gaul commented on GitHub (Mar 12, 2024):
Using other ports works -- look at
test/integration-test-common.shwhich sets S3Proxy to port 8080 as an example.@Alakadoo commented on GitHub (Mar 12, 2024):
Yes it works I can see now in my network trace that port 9020 is being used, I must have failed something in my first command, thanks !