How to use crontab-ui on DietPi?

Hello,
@Joulinar @MichaIng @trendy
meybe someone of You tried crontab-ui on Dietpi?
I install with docker but it failed because don’t see rsync when I try make backup shedule.
I try also with npm install but don’t work at all.

Regards.

It would be better to start a new topic for your issue, than to revive a 6 month old solved topic.

I forget to add link:

I installed like they suggested there and it is working.
First install node.js via dietpi-software, and then just run

npm install -g crontab-ui
crontab-ui
1 Like

I try that way but don’t work:

That means site is unreachable.

in terminal it works:

dietpi@DietPi:/$ crontab-ui
Cron db path: /usr/local/lib/node_modules/crontab-ui/crontabs
Node version: 19.1.0
Crontab UI (0.3.16) is running at http://127.0.0.1:8000

Regards.

Try:
HOST=192.168.0.19 crontab-ui

2 Likes

Yes, that works, thanks.

Can You tell me how to add to autostart to works all the time?

You can start it in a screen session so it does not quit when you close the terminal.
Here is some info about screen:
https://linuxize.com/post/how-to-use-linux-screen/
Install screen and then run
screen -d -m HOST=192.168.0.19 crontab-ui

Of course you can add this commands just to your crontab to start the screen session and crontab-ui at boot. Keep in mind that you need to use full paths in crontab, so it’s something like:
@reboot /usr/bin/screen -dm HOST=192.168.0.19 /path/to/crontab-ui
Idk the exact path to crontab-ui, I already deleted it and node.js.

2 Likes

I try but that command screen -d -m HOST=192.168.0.19 crontab-ui don’t start crontab-ui.

A systemd service is the common way to implement a service daemon:

cat << '_EOF_' > /etc/systemd/system/crontab-ui.service
[Unit]
Description=Crontab UI
Wants=network-online.target
After=network-online.target

[Service]
Environment=HOST=0.0.0.0
ExecStart=/usr/local/bin/crontab-ui

[Install]
WantedBy=multi-user.target
_EOF_
systemctl daemon-reload
systemctl enable --now crontab-ui

Starts at boot, can be checked and controlled like every other service:

systemctl status crontab-ui
journalctl -u crontab-ui
systemctl start crontab-ui
systemctl stop crontab-ui
systemctl restart crontab-ui
2 Likes

Thank You very much. :smiley:

Regards.

Do You know what to do to fix that:

Operation failed: Internal Server Error. Please see error log for details.

When I try to add entry to crontab in that crontab-ui. Meybe it don’t have permissions to add jobs to cron?

dietpi@DietPi:~$ sudo systemctl status crontab-ui
● crontab-ui.service - Crontab UI
     Loaded: loaded (/etc/systemd/system/crontab-ui.service; enabled; vendor preset: enabled)
     Active: active (running) since Mon 2022-11-28 18:32:16 CET; 55min ago
   Main PID: 1678853 (node)
      Tasks: 11 (limit: 9352)
     Memory: 44.7M
        CPU: 488ms
     CGroup: /system.slice/crontab-ui.service
             └─1678853 node /usr/local/bin/crontab-ui

lis 28 18:57:02 DietPi crontab-ui[1678853]:   code: 'EACCES',
lis 28 18:57:02 DietPi crontab-ui[1678853]:   syscall: 'open',
lis 28 18:57:02 DietPi crontab-ui[1678853]:   path: '/tmp/crontab'
lis 28 18:57:02 DietPi crontab-ui[1678853]: }
lis 28 18:57:02 DietPi crontab-ui[1678853]: [Error: EACCES: permission denied, open '/tmp/crontab'] {
lis 28 18:57:02 DietPi crontab-ui[1678853]:   errno: -13,
lis 28 18:57:02 DietPi crontab-ui[1678853]:   code: 'EACCES',
lis 28 18:57:02 DietPi crontab-ui[1678853]:   syscall: 'open',
lis 28 18:57:02 DietPi crontab-ui[1678853]:   path: '/tmp/crontab'
lis 28 18:57:02 DietPi crontab-ui[1678853]: }

Regards.

Have you checked the permissions?

Hi, I find that tutorial:

It’s ok with that command: sudo chown -R USER $(npm root -g)/crontab-ui?

what user is used to run crontab-ui??

I don’t know. It should be root?
I set command with dietpi user but don’t work. I reload daemon and restart service.

just use ps -ef to see running progresses.

Thanks, great command, I see I have lot processes that I don’t use like Cloudflare tunnel, openvpn or Duplicati.


dietpi@DietPi:~$ ps -ef
UID          PID    PPID  C STIME TTY          TIME CMD
root           1       0  0 lis27 ?        00:00:23 /sbin/init
root           2       0  0 lis27 ?        00:00:00 [kthreadd]
root           3       2  0 lis27 ?        00:00:00 [rcu_gp]
root           4       2  0 lis27 ?        00:00:00 [rcu_par_gp]
root           6       2  0 lis27 ?        00:00:00 [kworker/0:0H-events_highpri]
root           8       2  0 lis27 ?        00:00:00 [mm_percpu_wq]
root           9       2  0 lis27 ?        00:00:00 [rcu_tasks_rude_]
root          10       2  0 lis27 ?        00:00:00 [rcu_tasks_trace]
root          11       2  0 lis27 ?        00:00:03 [ksoftirqd/0]
root          12       2  0 lis27 ?        00:01:53 [rcu_sched]
root          13       2  0 lis27 ?        00:00:00 [migration/0]
root          15       2  0 lis27 ?        00:00:00 [cpuhp/0]
root          16       2  0 lis27 ?        00:00:00 [cpuhp/1]
root          17       2  0 lis27 ?        00:00:00 [migration/1]
root          18       2  0 lis27 ?        00:00:21 [ksoftirqd/1]
root          20       2  0 lis27 ?        00:00:00 [kworker/1:0H-events_highpri]
root          21       2  0 lis27 ?        00:00:00 [cpuhp/2]
root          22       2  0 lis27 ?        00:00:00 [migration/2]
root          23       2  0 lis27 ?        00:00:05 [ksoftirqd/2]
root          25       2  0 lis27 ?        00:00:00 [kworker/2:0H-events_highpri]
root          26       2  0 lis27 ?        00:00:00 [cpuhp/3]
root          27       2  0 lis27 ?        00:00:00 [migration/3]
root          28       2  0 lis27 ?        00:00:04 [ksoftirqd/3]
root          30       2  0 lis27 ?        00:00:00 [kworker/3:0H-events_highpri]
root          35       2  0 lis27 ?        00:00:00 [kdevtmpfs]
root          36       2  0 lis27 ?        00:00:00 [netns]
root          37       2  0 lis27 ?        00:00:00 [kauditd]
root          38       2  0 lis27 ?        00:00:00 [khungtaskd]
root          39       2  0 lis27 ?        00:00:00 [oom_reaper]
root          40       2  0 lis27 ?        00:00:00 [writeback]
root          41       2  0 lis27 ?        00:00:03 [kcompactd0]
root          42       2  0 lis27 ?        00:00:00 [ksmd]
root          43       2  0 lis27 ?        00:00:05 [khugepaged]
root          63       2  0 lis27 ?        00:00:00 [kintegrityd]
root          64       2  0 lis27 ?        00:00:00 [kblockd]
root          65       2  0 lis27 ?        00:00:00 [blkcg_punt_bio]
root          66       2  0 lis27 ?        00:00:00 [edac-poller]
root          67       2  0 lis27 ?        00:00:00 [devfreq_wq]
root          68       2  0 lis27 ?        00:00:02 [kworker/2:1H-kblockd]
root          69       2  0 lis27 ?        00:00:36 [kswapd0]
root          70       2  0 lis27 ?        00:00:00 [kthrotld]
root          72       2  0 lis27 ?        00:00:00 [acpi_thermal_pm]
root          73       2  0 lis27 ?        00:00:00 [ipv6_addrconf]
root          82       2  0 lis27 ?        00:00:00 [kstrp]
root          85       2  0 lis27 ?        00:00:00 [zswap-shrink]
root          86       2  0 lis27 ?        00:00:00 [kworker/u9:0-xprtiod]
root         131       2  0 lis27 ?        00:00:05 [kworker/3:1H-kblockd]
root         135       2  0 lis27 ?        00:00:00 [ata_sff]
root         137       2  0 lis27 ?        00:00:00 [scsi_eh_0]
root         138       2  0 lis27 ?        00:00:00 [scsi_tmf_0]
root         139       2  0 lis27 ?        00:00:00 [scsi_eh_1]
root         140       2  0 lis27 ?        00:00:00 [scsi_tmf_1]
root         141       2  0 lis27 ?        00:00:02 [kworker/1:1H-kblockd]
root         147       2  0 lis27 ?        00:00:02 [kworker/0:1H-kblockd]
root         148       2  0 lis27 ?        00:00:00 [scsi_eh_2]
root         149       2  0 lis27 ?        00:00:00 [scsi_tmf_2]
root         150       2  0 lis27 ?        00:00:37 [usb-storage]
root         151       2  0 lis27 ?        00:00:00 [uas]
root         152       2  0 lis27 ?        00:00:00 [scsi_eh_3]
root         153       2  0 lis27 ?        00:00:00 [scsi_tmf_3]
root         172       2  0 lis27 ?        00:00:00 [scsi_eh_4]
root         173       2  0 lis27 ?        00:00:00 [scsi_tmf_4]
root         180       2  0 lis27 ?        00:00:14 [jbd2/sda1-8]
root         181       2  0 lis27 ?        00:00:00 [ext4-rsv-conver]
root         230       1  0 lis27 ?        00:00:05 /lib/systemd/systemd-journald
root         250       2  0 lis27 ?        00:00:00 [rpciod]
root         251       2  0 lis27 ?        00:00:00 [xprtiod]
root         255       1  0 lis27 ?        00:00:00 /usr/sbin/blkmapd
root         258       1  0 lis27 ?        00:00:00 /lib/systemd/systemd-udevd
root         265       1  0 lis27 ?        00:00:00 /usr/bin/vmtouch -l /boot/dietroot         293       1  0 lis27 ?        00:00:01 /usr/sbin/haveged --Foreground_rpc         296       1  0 lis27 ?        00:00:00 /sbin/rpcbind -f -w
root         299       2  0 lis27 ?        00:00:00 [tpm_dev_wq]
message+     302       1  0 lis27 ?        00:00:02 /usr/bin/dbus-daemon --system root         307       1  0 lis27 ?        00:00:00 /usr/sbin/smartd -n
root         309       1  0 lis27 ?        00:00:01 /lib/systemd/systemd-logind
www-data     327       1  0 lis27 ?        00:00:00 /usr/bin/mono /usr/lib/mono/4.root         337       2  0 lis27 ?        00:00:00 [irq/125-mei_me]
root         406       2  0 lis27 ?        00:00:00 [watchdogd]
root         444       2  0 lis27 ?        00:00:00 [cryptd]
root         496       2  0 lis27 ?        00:00:00 [card0-crtc0]
root         497       2  0 lis27 ?        00:00:00 [card0-crtc1]
root         498       2  0 lis27 ?        00:00:00 [card0-crtc2]
root         648       1  0 lis27 ?        00:10:58 /usr/sbin/tailscaled --state=/root         731       1  0 lis27 tty42    00:00:00 /opt/dietpi-dashboard/dietpi-dombi         736       1  0 lis27 ?        00:02:56 /opt/Ombi/Ombi --storage /etc/root         741       1  0 lis27 ?        00:02:24 /usr/bin/containerd
root         742       1  0 lis27 ?        00:01:48 /usr/bin/python3 /usr/bin/failroot         743       1  0 lis27 tty1     00:00:00 /sbin/agetty -o -p -- \u --nocroot         744       1  0 lis27 ?        00:00:00 sshd: /usr/sbin/sshd -D [listeroot         890       2  0 lis27 ?        00:00:03 [jbd2/sdd1-8]
root         891       2  0 lis27 ?        00:00:00 [ext4-rsv-conver]
root         893       2  0 lis27 ?        00:00:00 [jbd2/sdb-8]
root         894       2  0 lis27 ?        00:00:00 [ext4-rsv-conver]
root         897       2  0 lis27 ?        00:00:00 [jbd2/sdc1-8]
root         898       2  0 lis27 ?        00:00:00 [ext4-rsv-conver]
root         900       2  0 lis27 ?        00:00:00 [kworker/u9:1-xprtiod]
root        1188       2  0 lis27 ?        00:00:00 [cifsiod]
root        1189       2  0 lis27 ?        00:00:00 [smb3decryptd]
root        1190       2  0 lis27 ?        00:00:00 [cifsfileinfoput]
root        1191       2  0 lis27 ?        00:00:00 [cifsoplockd]
root        1192       2  0 lis27 ?        00:00:00 [cifs-dfscache]
root        1194       2  0 lis27 ?        00:00:01 [cifsd]
avahi    1374923       1  0 13:46 ?        00:00:04 avahi-daemon: running [DietPi.avahi    1374924 1374923  0 13:46 ?        00:00:00 avahi-daemon: chroot helper
dietpi   1374934       1  0 13:46 ?        00:00:00 proftpd: (accepting connectionroot     1374946       1  0 13:46 ?        00:00:00 /usr/sbin/rpc.idmapd
root     1374947       1  0 13:46 ?        00:00:00 /usr/sbin/rpc.mountd --manage-root     1374950       2  0 13:46 ?        00:00:00 [lockd]
root     1374952       2  0 13:46 ?        00:00:00 [nfsd]
root     1374953       2  0 13:46 ?        00:00:00 [nfsd]
root     1374954       2  0 13:46 ?        00:00:00 [nfsd]
root     1374955       2  0 13:46 ?        00:00:00 [nfsd]
root     1374956       2  0 13:46 ?        00:00:00 [nfsd]
root     1374957       2  0 13:46 ?        00:00:00 [nfsd]
root     1374958       2  0 13:46 ?        00:00:02 [nfsd]
root     1374959       2  0 13:46 ?        00:00:05 [nfsd]
redis    1374968       1  0 13:46 ?        00:00:27 /usr/bin/redis-server 127.0.0.mysql    1375033       1  0 13:46 ?        00:00:04 /usr/sbin/mariadbd
root     1375064       1  0 13:46 ?        00:00:01 php-fpm: master process (/etc/www-data 1375072 1375064  0 13:46 ?        00:00:00 php-fpm: pool www
www-data 1375073 1375064  0 13:46 ?        00:00:00 php-fpm: pool www
www-data 1375074 1375064  0 13:46 ?        00:00:00 php-fpm: pool www
www-data 1375075 1375064  0 13:46 ?        00:00:00 php-fpm: pool www
www-data 1375125       1  0 13:46 ?        00:00:00 /usr/sbin/lighttpd -D -f /etc/emby     1375135       1  0 13:46 ?        00:03:08 /opt/emby-server/system/EmbySebazarr   1375145       1  0 13:46 ?        00:00:00 /usr/bin/python3 /opt/bazarr/bnobody   1375154       1  0 13:46 ?        00:00:00 /usr/local/bin/noip2
root     1375170       1  0 13:46 ?        00:01:08 /usr/bin/dockerd -H fd:// --coroot     1375178       1  0 13:46 ?        00:00:00 /usr/sbin/cron -f
bazarr   1375197 1375145  0 13:46 ?        00:01:10 /usr/bin/python3 -u /opt/bazarroot     1375707 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1375714 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1375730 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375736 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375749 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375755 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375769       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1375790 1375769  0 13:46 ?        00:00:00 s6-svscan -s -t0 /var/run/s6/sroot     1375811 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375817 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375834       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1375855 1375834  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1375892 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375898 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1375914 1375790  0 13:46 ?        00:00:00 s6-supervise s6-fdholderd
root     1376091       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1376115       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1376137 1376091  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1376144 1376115  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1376276       1  0 13:46 ?        00:00:04 /usr/bin/containerd-shim-runc-root     1376315 1376276  0 13:46 ?        00:00:00 npm start
root     1376347 1375855  0 13:46 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1376348 1376347  0 13:46 ?        00:00:00 /package/admin/s6-linux-init/croot     1376401       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1376432 1376401  0 13:46 ?        00:00:00 /sbin/tini -- node index.js
root     1376480 1375855  0 13:46 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1376481 1375855  0 13:46 ?        00:00:00 s6-supervise s6rc-fdholder
root     1376489 1376480  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-iroot     1376556 1375855  0 13:46 ?        00:00:00 s6-supervise home-assistant
root     1376562 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376568 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376584 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376592 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376620 1376432  0 13:46 ?        00:00:30 node index.js
root     1376630 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376638 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376654 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376663 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376675 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376682 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376695 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376702 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376709 1376144  0 13:46 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1376711 1376709  0 13:46 ?        00:00:00 /package/admin/s6-linux-init/croot     1376729       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-1883     1376751 1376729  0 13:46 ?        00:00:08 mosquitto -c /mosquitto-no-autroot     1376812 1375170  0 13:46 ?        00:00:01 /usr/bin/docker-proxy -proto troot     1376818 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376825 1376137  0 13:46 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1376833 1376825  0 13:46 ?        00:00:00 /package/admin/s6-linux-init/croot     1376859 1376144  0 13:46 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1376860 1376144  0 13:46 ?        00:00:00 s6-supervise s6rc-fdholder
root     1376868 1376859  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-iroot     1376883 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376892 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376905 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1376911 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1376923 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376929 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1376957       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1376987 1376957  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1376999       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1377020 1376999  0 13:46 ?        00:00:16 node server.js
root     1377079       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1377100 1377079  0 13:46 ?        00:00:03 node /opt/yarn-v1.22.19/bin/yaroot     1377276 1376144  0 13:46 ?        00:00:00 s6-supervise readarr
dietpi   1377277 1377276  0 13:46 ?        00:00:59 /app/readarr/bin/Readarr -nobrroot     1377303 1375170  0 13:46 ?        00:00:01 /usr/bin/docker-proxy -proto troot     1377312 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1377322 1376137  0 13:46 ?        00:00:00 s6-supervise svc-coredns
root     1377323 1376137  0 13:46 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1377324 1376137  0 13:46 ?        00:00:00 s6-supervise s6rc-fdholder
root     1377354       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1377371 1377323  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-iroot     1377381 1377354  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1377536       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1377557 1377536  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1377620 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1377627 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1377652       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1377673 1377652  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1379435 1375790  0 13:46 ?        00:00:00 s6-supervise nginx
root     1379439 1375790  0 13:46 ?        00:00:00 s6-supervise app
root     1379440 1375790  0 13:46 ?        00:00:00 s6-supervise cert_cleanup
root     1379491 1376987  0 13:46 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1379492 1379491  0 13:46 ?        00:00:00 /package/admin/s6-linux-init/cbin      1379552 1375914  0 13:46 ?        00:00:00 s6-fdholderd -1 -i rules
root     1379581       1  0 13:46 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1379603 1379581  0 13:46 ?        00:00:00 /package/admin/s6/command/s6-sroot     1379609 1379440  0 13:46 ?        00:00:00 sh ./cert_cleanup
dietpi   1379616 1379609  0 13:46 ?        00:00:00 /usr/local/bin/watch -i 604800root     1379617 1379609  0 13:46 ?        00:00:00 sh ./cert_cleanup
dietpi   1379834 1379435  0 13:46 ?        00:00:00 nginx: master process /usr/sbiroot     1379839 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1379847 1375170  0 13:46 ?        00:00:00 /usr/bin/docker-proxy -proto tdietpi   1379865 1379439  0 13:46 ?        00:00:03 node --abort_on_uncaught_exceproot     1379921 1377557  0 13:46 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1379923 1379921  0 13:46 ?        00:00:00 /package/admin/s6-linux-init/croot     1379933 1377673  0 13:47 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1379935 1379933  0 13:47 ?        00:00:00 /package/admin/s6-linux-init/croot     1379942 1377381  0 13:47 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1379943 1379942  0 13:47 ?        00:00:00 /package/admin/s6-linux-init/croot     1379951 1377557  0 13:47 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1379952 1377557  0 13:47 ?        00:00:00 s6-supervise s6rc-fdholder
root     1379959 1379951  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-iroot     1379996       1  0 13:47 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1380015 1377673  0 13:47 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1380016 1377673  0 13:47 ?        00:00:00 s6-supervise s6rc-fdholder
root     1380032 1379996  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-sroot     1380058 1380015  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-iroot     1380096 1376987  0 13:47 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1380097 1376987  0 13:47 ?        00:00:00 s6-supervise s6rc-fdholder
root     1380105 1380096  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-iroot     1380133 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380139 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380233 1377557  0 13:47 ?        00:00:00 s6-supervise syncthing
dietpi   1380235 1380233  0 13:47 ?        00:00:00 syncthing -home=/config -no-brroot     1380306 1377322  0 13:47 ?        00:00:04 /app/coredns -dns.port=53
root     1380336 1377673  0 13:47 ?        00:00:00 s6-supervise prowlarr
dietpi   1380338 1380336  0 13:47 ?        00:03:32 /app/prowlarr/bin/Prowlarr -noroot     1380346 1379603  0 13:47 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1380348 1380346  0 13:47 ?        00:00:00 /package/admin/s6-linux-init/croot     1380368       2  0 13:47 ?        00:00:00 [wg-crypt-wg0]
root     1380411 1375170  0 13:47 ?        00:00:03 /usr/bin/docker-proxy -proto troot     1380417 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380435 1379603  0 13:47 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1380436 1379603  0 13:47 ?        00:00:00 s6-supervise s6rc-fdholder
root     1380443 1380435  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-iroot     1380539 1377381  0 13:47 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1380540 1377381  0 13:47 ?        00:00:00 s6-supervise s6rc-fdholder
root     1380554 1380539  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-iroot     1380572 1379603  0 13:47 ?        00:00:00 s6-supervise radarr
dietpi   1380574 1380572  0 13:47 ?        00:01:20 /app/radarr/bin/Radarr -nobrowroot     1380624 1376987  0 13:47 ?        00:00:00 s6-supervise jackett
root     1380654 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380661 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380673 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380681 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380693 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380702 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380714 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1380720 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1380735 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380741 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380753 1375170  0 13:47 ?        00:00:01 /usr/bin/docker-proxy -proto troot     1380759 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380773 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380779 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1380792 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1380798 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto uroot     1380808 1380032  0 13:47 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1380810 1380808  0 13:47 ?        00:00:00 /package/admin/s6-linux-init/croot     1380831       1  0 13:47 ?        00:00:03 /usr/bin/containerd-shim-runc-root     1380853 1380831  0 13:47 ?        00:00:00 /usr/bin/dumb-init -- extra/enroot     1380859 1377100  1 13:47 ?        00:05:55 /usr/local/bin/node .
root     1380868 1380032  0 13:47 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1380869 1380032  0 13:47 ?        00:00:00 s6-supervise s6rc-fdholder
root     1380882 1380868  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-iroot     1380890       1  0 13:47 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1380916 1380890  0 13:47 ?        00:00:38 influxd
dietpi   1381017 1380235  0 13:47 ?        00:01:11 /usr/bin/syncthing -home=/confdietpi   1381073 1380853  1 13:47 ?        00:07:23 node server/server.js
root     1381122 1377381  0 13:47 ?        00:00:00 s6-supervise sonarr
dietpi   1381123 1381122  0 13:47 ?        00:02:13 mono --debug Sonarr.exe -nobroroot     1381137       1  0 13:47 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1381159 1381137  0 13:47 ?        00:00:00 /usr/bin/dumb-init -- /bin/basroot     1381251 1380032  0 13:47 ?        00:00:00 s6-supervise lidarr
dietpi   1381253 1381251  0 13:47 ?        00:01:32 /app/lidarr/bin/Lidarr -nobrowroot     1381265 1381159  0 13:47 ?        00:00:03 /usr/bin/python /usr/bin/superroot     1381331 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1381337 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1381356       1  0 13:47 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1381377 1381356  0 13:47 ?        00:00:00 /watchtower
root     1381449       1  0 13:47 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1381470 1381449  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-sroot     1381500 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1381507 1375170  0 13:47 ?        00:00:00 /usr/bin/docker-proxy -proto troot     1381567       1  0 13:47 ?        00:00:01 /usr/bin/containerd-shim-runc-root     1381586 1381567  0 13:47 ?        00:00:08 /portainer -H unix:///var/run/root     1381722 1381470  0 13:47 ?        00:00:00 s6-supervise s6-linux-init-shuroot     1381723 1381722  0 13:47 ?        00:00:00 /package/admin/s6-linux-init/croot     1381779 1381470  0 13:47 ?        00:00:00 s6-supervise s6rc-oneshot-runnroot     1381780 1381470  0 13:47 ?        00:00:00 s6-supervise s6rc-fdholder
root     1381787 1381779  0 13:47 ?        00:00:00 /package/admin/s6/command/s6-iroot     1381912 1381470  0 13:47 ?        00:00:00 s6-supervise duplicati
dietpi   1381914 1381912  0 13:47 ?        00:00:00 mono Duplicati.Server.exe --weroot     1382066 1376315  0 13:47 ?        00:00:07 node index.js
dietpi   1382557 1381914  0 13:47 ?        00:00:03 /usr/bin/mono-sgen /app/duplicroot     1382742 1381265  0 13:47 ?        00:00:00 /bin/bash /root/start.sh
dietpi   1382743 1381265  0 13:47 ?        00:00:00 /usr/bin/dumb-init /bin/bash /dietpi   1382744 1382743  0 13:47 ?        00:00:03 /bin/bash /home/nobody/watchdoroot     1382935 1382742  0 13:47 ?        00:00:00 /bin/bash /root/start.sh
root     1382937 1382742  3 13:47 ?        00:15:59 /usr/bin/openvpn --reneg-sec 0dietpi   1383040 1381073  0 13:48 ?        00:01:05 cloudflared tunnel --no-autoupdietpi   1383331 1381159  2 13:48 ?        00:14:10 /usr/bin/python /usr/bin/delugdietpi   1383488 1381159  0 13:48 ?        00:00:08 deluge-web
dietpi   1446113 1380624  0 14:48 ?        00:00:00 /bin/sh /app/Jackett/jackett_ldietpi   1446117 1446113  0 14:48 ?        00:00:10 /app/Jackett/jackett --NoRestaroot     1498706       2  0 15:38 ?        00:00:19 [kworker/2:1-events]
root     1733681 1376556  0 19:24 ?        00:01:11 python3 -m homeassistant --condietpi   1758264 1379834  0 19:48 ?        00:00:05 nginx: worker process
dietpi   1758265 1379834  0 19:48 ?        00:00:00 nginx: worker process
dietpi   1758266 1379834  0 19:48 ?        00:00:00 nginx: worker process
dietpi   1758267 1379834  0 19:48 ?        00:00:00 nginx: worker process
dietpi   1758268 1379834  0 19:48 ?        00:00:00 nginx: cache manager process
root     1790109       2  0 20:18 ?        00:00:00 [kworker/1:0-events]
root     1799646       2  0 20:28 ?        00:00:00 [kworker/u8:0-events_unbound]
root     1810897       2  0 20:39 ?        00:00:01 [kworker/0:1-events]
root     1842104       2  0 21:09 ?        00:00:00 [kworker/3:2-events]
root     1843619       2  0 21:10 ?        00:00:00 [kworker/0:0-cgroup_destroy]
root     1866504       2  0 21:32 ?        00:00:00 [kworker/u8:2-flush-8:0]
root     1874747       1  0 21:40 ?        00:00:00 node /usr/local/bin/crontab-uiroot     1880582       2  0 21:46 ?        00:00:00 [kworker/u8:3-flush-8:48]
root     1887421       2  0 21:52 ?        00:00:00 [kworker/3:1-events]
root     1890674       2  0 21:55 ?        00:00:00 [kworker/2:2-events]
root     1904405       2  0 22:09 ?        00:00:00 [kworker/1:2-cgroup_destroy]
root     1931794 1382935  0 22:35 ?        00:00:00 sleep 30s
root     1932015       2  0 22:35 ?        00:00:00 [kworker/u8:1-flush-8:0]
dietpi   1932048 1382744  0 22:35 ?        00:00:00 sleep 30s
root     1932249     744  0 22:35 ?        00:00:00 sshd: dietpi [priv]
dietpi   1932252       1  1 22:35 ?        00:00:00 /lib/systemd/systemd --user
dietpi   1932253 1932252  0 22:35 ?        00:00:00 (sd-pam)
root     1932266       2  0 22:35 ?        00:00:00 [kworker/1:1-events]
dietpi   1932287 1932249  0 22:35 ?        00:00:00 sshd: dietpi@pts/0
dietpi   1932288 1932287  0 22:35 pts/0    00:00:00 -bash
dietpi   1932376 1932288  0 22:35 pts/0    00:00:00 ps -ef

Should be root. What does ls -lah /tmp give?