crazyhorse90210

Members
  • Posts

    17
  • Joined

  • Last visited

Everything posted by crazyhorse90210

  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.
  16. Has anyone ever seen these type of errors? I am getting scores of them upon writing to the array. Many when writing max to cache, but error indicates different ata devices (ata1, ata2). Don't get many when write throughput is lower. Mar 23 04:05:07 Ovi kernel: ata2.00: exception Emask 0x50 SAct 0x20198 SErr 0x4890800 action 0xe frozen Mar 23 04:05:07 Ovi kernel: ata2.00: irq_stat 0x0c400040, interface fatal error, connection status changed Mar 23 04:05:07 Ovi kernel: ata2: SError: { HostInt PHYRdyChg 10B8B LinkSeq DevExch } Mar 23 04:05:07 Ovi kernel: ata2.00: failed command: READ FPDMA QUEUED Mar 23 04:05:07 Ovi kernel: ata2.00: cmd 60/40:18:f0:8d:72/05:00:b9:00:00/40 tag 3 ncq dma 688128 in Mar 23 04:05:07 Ovi kernel: res 40/00:00:f0:8c:72/00:00:b9:00:00/40 Emask 0x50 (ATA bus error) Mar 23 04:05:07 Ovi kernel: ata2.00: status: { DRDY } Mar 23 04:05:07 Ovi kernel: ata2.00: failed command: READ FPDMA QUEUED Mar 23 04:05:07 Ovi kernel: ata2.00: cmd 60/40:20:30:93:72/00:00:b9:00:00/40 tag 4 ncq dma 32768 in Mar 23 04:05:07 Ovi kernel: res 40/00:00:f0:8c:72/00:00:b9:00:00/40 Emask 0x50 (ATA bus error) Mar 23 04:05:07 Ovi kernel: ata2.00: status: { DRDY } Mar 23 04:05:07 Ovi kernel: ata2.00: failed command: READ FPDMA QUEUED Mar 23 04:05:07 Ovi kernel: ata2.00: cmd 60/48:38:68:96:72/02:00:b9:00:00/40 tag 7 ncq dma 299008 in Mar 23 04:05:07 Ovi kernel: res 40/00:00:f0:8c:72/00:00:b9:00:00/40 Emask 0x50 (ATA bus error) Mar 23 04:05:07 Ovi kernel: ata2.00: status: { DRDY } Mar 23 04:05:07 Ovi kernel: ata2.00: failed command: WRITE FPDMA QUEUED Mar 23 04:05:07 Ovi kernel: ata2.00: cmd 61/00:40:f0:8c:72/01:00:b9:00:00/40 tag 8 ncq dma 131072 out Mar 23 04:05:07 Ovi kernel: res 40/00:00:f0:8c:72/00:00:b9:00:00/40 Emask 0x50 (ATA bus error) Mar 23 04:05:07 Ovi kernel: ata2.00: status: { DRDY } Mar 23 04:05:07 Ovi kernel: ata2.00: failed command: READ FPDMA QUEUED Mar 23 04:05:07 Ovi kernel: ata2.00: cmd 60/f8:88:70:93:72/02:00:b9:00:00/40 tag 17 ncq dma 389120 in Mar 23 04:05:07 Ovi kernel: res 40/00:00:f0:8c:72/00:00:b9:00:00/40 Emask 0x50 (ATA bus error) Mar 23 04:05:07 Ovi kernel: ata2.00: status: { DRDY } Mar 23 04:05:07 Ovi kernel: ata2: hard resetting link Mar 23 04:05:17 Ovi kernel: ata2: softreset failed (device not ready) Mar 23 04:05:17 Ovi kernel: ata2: hard resetting link Mar 23 04:05:18 Ovi kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 310) Mar 23 04:05:20 Ovi kernel: ata2.00: configured for UDMA/33 Mar 23 04:05:20 Ovi kernel: ata2: EH complete I've googled and read almost everything I can. Errors happen on different devices (ata1, ata2, etc). Some pointed to power supply, so I bought a (reconditioned) unit but it did not change the errors. I can't find a different integrated breakout ATA cable so I can't change the cable. Two of the drives are brand new and two are relatively new and non have any SMART errors. My cache SSD _does_ have one SMART warning of a remapped sector but I am convinced that is the not problem here. I have changed Interrupts in the BIOS (but some are linked individual ones). I have reset all cables multiple times. I have changed from AHCI to Legacy and get slightly different error reporting but similar erros -ATA reset. I recently purchased this gen8 microserver used and am starting to think I purchased someone else's problem. Not sure where else to post or ask. Any ideas of anything else I can try? Thanks wes ovi-diagnostics-20200323-1345.zip