crazyhorse90210

Members
  • Posts

    17
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

crazyhorse90210's Achievements

Noob

Noob (1/14)

3

Reputation

  1. I have this as well. It hangs my server when the log fills up. Feb 14 05:28:59 Ovi nginx: 2023/02/14 05:28:59 [alert] 5828#5828: worker process 45411 exited on signal 6
  2. so the user/pass is stored as plaintext in appdata? i don't like that.
  3. For some reason I had a problem with line 241 in the new script where you check if CA Appdata is backing up or restoring. I had to remove the outside square brackets on the conditional in order for it to work... weird: # Check CA Appdata plugin not backing up or restoring if [[ -f "/tmp/ca.backup2/tempFiles/backupInProgress" ] || [ -f "/tmp/ca.backup2/tempFiles/restoreInProgress" ]]; then kept getting this error: /tmp/user.scripts/tmpScripts/rclone_mount/script: line 241: syntax error in conditional expression /tmp/user.scripts/tmpScripts/rclone_mount/script: line 241: syntax error near `]' /tmp/user.scripts/tmpScripts/rclone_mount/script: line 241: ` if [[ -f "/tmp/ca.backup2/tempFiles/backupInProgress" ] || [ -f "/tmp/ca.backup2/tempFiles/restoreInProgress" ]] ; then' Script Finished Nov 17, 2020 16:41.15 so i removed the outside brackets and it worked as such with no error: # Check CA Appdata plugin not backing up or restoring if [ -f "/tmp/ca.backup2/tempFiles/backupInProgress" ] || [ -f "/tmp/ca.backup2/tempFiles/restoreInProgress" ]; then
  4. As a general FYI, I would really suggest anyone trying to set up rclone mount read this github man page on rclone mount where the vfs caching mechanism is explained. I've seen many posts in this thread questioning or assuming behaviour that is explained here. I would put myself into that group too btw.
  5. DZMM, am I wrong in thinking the CommandX lines are not used anywhere, I can't find those variable anywhere else in the script. What is the supposed function of adding anything into the CommandX lines? # Add extra commands or filters Command1="--rc"
  6. Another interested person here. I don't actually have a need to upload and my local mounts are 100% separate so I don't actually have need for mergerfs but I'm not sure if it offers better performance on top of raw rclone w/ vfs caching so I would like to see all options! One more question as well in general is this: is the general consensus that rclone's built-in vfs caching is better than using a separate rclone cache mount? Is that cache mount function outdated now?
  7. Okay I have this all set up, first it was not working but I was trying to bypass unraid's shfs and path everything directly to /mnt/cache and while the rclone mount works the mergerfs does not. Regardless I do have one dumb question as the mergerfs is only mounted as long as I do not close the script window. Therefore most people must be running this in the background, or launching with a cron or CA User Scripts on a schedule. This is expected behaviour I assume? I'm unfamiliar with mergerfs but it looks like the script exits fully and the reporting seems to indicate it's all done can could be closed. The rclone mount is persistent but it seems the mergerfs mount is not, at least when run in the CA User Scripts GUI in the fg.
  8. funny, after leaving the container on all night it i went to give you the exact connection refused error and the page just popped open properly... so looks like it's all working for me! thanks for the response regardless!
  9. Okay this worked for me too. speedtest-tracker works in the docker command line but I cannot get to the webUI no matter what port I choose. I don't *think* its a setup problem on my end, since there are not many options but it could be. Here is the log: root@Ovi:~# docker logs speedtest-tracker [s6-init] making user provided files available at /var/run/s6/etc...exited 0. [s6-init] ensuring user provided files have correct perms...exited 0. [fix-attrs.d] applying ownership & permissions fixes... [fix-attrs.d] done. [cont-init.d] executing container initialization scripts... [cont-init.d] 01-envfile: executing... [cont-init.d] 01-envfile: exited 0. [cont-init.d] 10-adduser: executing... usermod: no changes ------------------------------------- _ () | | ___ _ __ | | / __| | | / \ | | \__ \ | | | () | |_| |___/ |_| \__/ Brought to you by linuxserver.io ------------------------------------- To support LSIO projects visit: https://www.linuxserver.io/donate/ ------------------------------------- GID/UID ------------------------------------- User uid: 911 User gid: 911 ------------------------------------- [cont-init.d] 10-adduser: exited 0. [cont-init.d] 20-config: executing... [cont-init.d] 20-config: exited 0. [cont-init.d] 30-keygen: executing... using keys found in /config/keys [cont-init.d] 30-keygen: exited 0. [cont-init.d] 40-config: executing... GeoIP2 database found [cont-init.d] 40-config: exited 0. [cont-init.d] 50-speedtest: executing... Copying latest site files to config Database file exists Env file exists Running database migrations Nothing to migrate. App key exists JWT secret exists Slack webhook set, updating db Not enough arguments (missing: "webhook"). Telegram chat id and bot token unset Base path is unset AUTH variable not set. Disabling authentication Disabling authentication Clearing old jobs from queue [cont-init.d] 50-speedtest: exited 0. [cont-init.d] 99-custom-files: executing... [custom-init] no custom files found exiting... [cont-init.d] 99-custom-files: exited 0. [cont-init.d] done. [services.d] starting services [services.d] done. nginx: [alert] detected a LuaJIT version which is not OpenResty's; many optimizations will be disabled and performance will be compromised (see https://github.com/openresty/luajit2 for OpenResty's LuaJIT or, even better, consider using the OpenResty releases from https://openresty.org/en/download.html)
  10. yep its a problem for me as well. the same rclone mounts work fine on my mac.
  11. I think it's been merged to v1.53 now.
  12. I can't get my cache to mount because for some reason the --allow-non-empty is unknown to this version of fusermount. root@Ovi:/mnt/disk3# rclone mount gcache: /mnt/disk3/gdrive --allow-other --cache-db-purge --allow-non-empty --buffer-size 32M --use-mmap --dir-cache-time 72h --drive-chunk-size 16M --timeout 1h --vfs-cache-mode minimal --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit 1G & [1] 36504 root@Ovi:/mnt/disk3# 2020/06/25 14:01:00 mount helper error: fusermount: unknown option 'nonempty' 2020/06/25 14:01:00 Fatal error: failed to mount FUSE fs: fusermount: exit status 1 yet if I try to mount the cache without it tells me to use it. root@Ovi:/mnt/disk3# rclone mount gcache: /mnt/disk3/gdrive --allow-other --cache-db-purge --buffer-size 32M --use-mmap --dir-cache-time 72h --drive-chunk-size 16M --timeout 1h --vfs-cache-mode minimal --vfs-read-chunk-size 128M --vfs-read-chunk-size-limit 1G & [1] 44383 root@Ovi:/mnt/disk3# 2020/06/25 14:06:25 Fatal error: Directory is not empty: /mnt/disk3/gdrive If you want to mount it anyway use: --allow-non-empty option anyone have any idea?
  13. I don't think so. I can't connect in host or bridge mode with pain vanilla install and have no port conflicts on either port. Simply won't connect, the server does not respond. It used to work and then stopped working. I know this indicates some network config problem locally most likely I just don't think anything has changed. Anyway I'm running the server from my workstation mac but I would rather run it from my unraid server, but I can't get the server to respond on any of these ports to the web gui. This is all on LAN and there are no firewalls.
  14. I have spent all morning trying to get this working to no avail. I am glad it's not just me!
  15. Did you ever figure this out? I am getting the exact same errors.