What is the problem you are having with rclone?
I'm trying to set up a WebDAV server on an Ubuntu Linux box with rclone serve webdav read-it-later:/s/zk/docs/ --addr :10092 --log-level DEBUG --dir-cache-time=15s --vfs-cache-mode full - specifically I want to make absolute path /s/zk/docs/ available. I used rclone config to create this configuration:
[read-it-later]
type = webdav
url = http://0.0.0.0:10092
vendor = other
I'm trying to connect two WebDAV clients to the server. 1) Android Mixplorer app and 2) SingleFile Chrome extension via their WebDAV destination. When connecting both (with no credentials), the clients appear to 'hang' and the server is clearly getting something from them as per the below log, but it never finishes. When I manually terminate the rclone command, both of these clients, immediately fail. Here is the complete log for the rclone command above:
rclone serve webdav read-it-later:/s/zk/docs/ --addr :10092 --log-level DEBUG --dir-cache-time=15s --vfs-cache-mode full
2024/01/12 19:00:22 DEBUG : rclone: Version "v1.53.3-DEV" starting with parameters ["rclone" "serve" "webdav" "read-it-later:/s/zk/docs/" "--addr" ":10092" "--log-level" "DEBUG" "--dir-cache-time=15s" "--vfs-cache-mode" "full"]
2024/01/12 19:00:22 DEBUG : Using config file from "/home/rww/.config/rclone/rclone.conf"
2024/01/12 19:00:22 DEBUG : Creating backend with remote "read-it-later:/s/zk/docs/"
2024/01/12 19:00:22 DEBUG : fs cache: renaming cache item "read-it-later:/s/zk/docs/" to be canonical "read-it-later:s/zk/docs"
2024/01/12 19:00:22 INFO : webdav root 's/zk/docs': poll-interval is not supported by this remote
2024/01/12 19:00:22 DEBUG : vfs cache: root is "/home/rww/.cache/rclone/vfs/read-it-later/s/zk/docs"
2024/01/12 19:00:22 DEBUG : vfs cache: metadata root is "/home/rww/.cache/rclone/vfs/read-it-later/s/zk/docs"
2024/01/12 19:00:22 DEBUG : Creating backend with remote "/home/rww/.cache/rclone/vfs/read-it-later/s/zk/docs"
2024/01/12 19:00:22 INFO : vfs cache: cleaned: objects 0 (was 0) in use 0, to upload 0, uploading 0, total size 0 (was 0)
2024/01/12 19:00:22 NOTICE: webdav root 's/zk/docs': WebDav Server started on http://[::]:10092/
2024/01/12 19:00:25 DEBUG : /: OpenFile: flags=O_RDONLY, perm=----------
2024/01/12 19:00:25 DEBUG : /: >OpenFile: fd=/ (r), err=<nil>
2024/01/12 19:00:25 DEBUG : /: OpenFile: flags=O_RDONLY, perm=----------
2024/01/12 19:00:25 DEBUG : /: >OpenFile: fd=/ (r), err=<nil>
2024/01/12 19:00:25 DEBUG : /: OpenFile: flags=O_RDONLY, perm=----------
2024/01/12 19:00:25 DEBUG : /: >OpenFile: fd=/ (r), err=<nil>
2024/01/12 19:01:13 DEBUG : /Top topics - rclone forum (1_12_2024 1_01_13 PM).html: OpenFile: flags=O_RDONLY, perm=----------
The last line was a minute later, when I tried to use SingleFile which attempted to send a file to the server. The (1_12_2024 1_01_13 PM).html shows that the server is getting something, but nothing else happens. The preceeding handful of lines are all from MiXplorer's WebDAV connection attempt, and that app just shows a 'loading' symbol.
Run the command 'rclone version' and share the full output of the command.
rclone version
rclone v1.53.3-DEV
- os/arch: linux/amd64
- go version: go1.18.1
Which cloud storage system are you using? (eg Google Drive)
Ubuntu as the server, the above clients (mainly trying to get SingleFile working)
The command you were trying to run (eg rclone copy /tmp remote:tmp)
rclone serve webdav read-it-later:/s/zk/docs/ --addr :10092 --log-level DEBUG --dir-cache-time=15s --vfs-cache-mode full
Please run 'rclone config redacted' and share the full output. If you get command not found, please make sure to update rclone.
This didn't work, but I added the config above.
A log from the command that you were trying to run with the -vv flag
See above