Troubleshooting
Oneclient - mountpoint is not accessible
Issue
Oneclient mountpoint was successfully mounted, but I cannot access it and mountpoint have unknow permissions.
$ ll /mnt
ls: cannot access '/mnt/onedata': Permission denied
d????????? ? ? ? ? ? onedata/Resolution
- First unmount the oneclient mountpount with
fusermount -uz <MOUNT_POINT>. - Enable user_allow_other in FUSE Configuration
Open /etc/fuse.conf with a text editor (requires sudo)sudo nano /etc/fuse.conf.
Locate the line #user_allow_other and uncomment it by removing the #.
Save and exit the file. - Mount oneclient mounpoint as you did before, but with added option
-o allow_other
$ oneclient -H <PROVIDER_HOSTNAME> -t <ACCESS_TOKEN> -o allow_other <MOUNT_POINT>