`rclone serve docker -v` running on my linbox

What is the problem you are having with rclone?

why is rclone serve docker -v is running, even after a reboot?
--- did a sudo docker system prune,
--- if i kill it rclone server docker, a new process is created.
--- removed rclone/rclone image, but that process remains

ubuntu@rclonedocker:~$ sudo docker image remove rclone/rclone
Untagged: rclone/rclone:latest
Untagged: rclone/rclone@sha256:1e6eeabddc013302793aad1986af0b8929bb42bb7c616b10a9b66b2ce04e165f
Deleted: sha256:15965416f78aca6483d09142f16c1748bbd6bac9e41f7dbf9b1e2027ddc13694
Deleted: sha256:fd65ffb2caf8df60b45d404e37a0d15137bd776924e59b8d21346f7a01099ef7
Deleted: sha256:114bb6dff2597f73516c03fc5d3b0f54c4aa70be5455c40dbc0c4b9b99f34d07
Deleted: sha256:6a9bd6c78469b1f35e78338e7e5f7de73f71f0824cc815882dd92f7d041b118d
Deleted: sha256:e985e772bb2b6a592b7b071e6fc359cfcb8c09cd37d19c6e171e93eaa234892a
Deleted: sha256:e2eb06d8af8218cfec8210147357a68b7e13f7c485b991c288c2d01dc228bb68

ubuntu@rclonedocker:~$ sudo docker image ls
REPOSITORY   TAG       IMAGE ID   CREATED   SIZE
ubuntu@rclonedocker:~$ ps -aux | grep rclone
root         997  0.0  2.7 746044 27284 ?        Ssl  17:00   0:00 rclone serve docker -v
ubuntu@rclonedocker:~$ sudo kill 997
ubuntu@rclonedocker:~$ ps -aux | grep rclone
root        1988  1.0  3.7 746044 36856 ?        Ssl  17:33   0:00 rclone serve docker -v
ubuntu@rclonedocker:~$ sudo kill 1988
ubuntu@rclonedocker:~$ ps -aux | grep rclone
root        2055  3.0  3.7 746044 36900 ?        Ssl  17:33   0:00 rclone serve docker -v

Run the command 'rclone version' and share the full output of the command.

 rclone version
rclone v1.57.0
- os/version: ubuntu 21.10 (64 bit)
- os/kernel: 5.13.0-25-generic (x86_64)
- os/type: linux
- os/arch: amd64
- go/version: go1.17.2
- go/linking: static
- go/tags: none

Which cloud storage system are you using? (eg Google Drive)

none

The command you were trying to run (eg rclone copy /tmp remote:tmp)

none

The rclone config contents with secrets removed.

none

A log from the command with the -vv flag

none

This is how the process of docker volume plugin looks to the host system (remember that docker containers are just process/filesystem/network tables in the linux kernel and host system can see processes from all tables). Actually the process runs in a special OCI container interacting with and managed/restarted by dockerd, hidden from ordinary docker ps output. Check out docker plugin ls to see plugin containers (or systemctl list-units depending on your chosen install method) and behold.

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.