bpage

Members
  • Posts

    66
  • Joined

  • Last visited

Converted

  • Gender
    Undisclosed
  • Location
    Brooklyn, NY

bpage's Achievements

Rookie

Rookie (2/14)

0

Reputation

  1. Has anyone had issues with this working on Safari and/or mobile safari? Everything seems to work ok in Chrome browser, but trying from Safari, either I do not get forwarded after authentication or my rules (allow local networks) do not work at all.
  2. I wanted up upload this syslog info I collected. The server kernel panicked again this morning, out of nowhere. I am really confused. I ran a memtest right after and it passed without errors. Anyone have any other thoughts? syslog-10.0.1.10.log
  3. Ok thanks, I have enabled to mirror to flash, let's see what happens tonight. The other issue is that I am mid upgrade of my parity drive (I still have the old one) and obviosuly it is taking longer than 24 hours to rebuild. So frustrating. I feel like maybe the SSD's in the cache pool are causing this, but no idea. I have also disabled the mover for now.
  4. Not entirely sure what could be causing these strange issues and now nightly kernal panics. Some notes: I moved a few weeks ago, but server seemed fine post move. both SSD's in my cache pool have failed smart tests, but only for lifetime usage. No other errors. this started several days again when I noticed a mid-day kernel panic. Had to hard reboot. Everything came back ok. one of the next mornings, I awoke to my cache pool in a read-only state. I went through the process of removing everything off the drives, reformatting and re-created my cache pool. Now it seems that every morning I awake to a locked server with a kernel panic. Only way to get it back is to hard reboot. I don't think it's a memory issue, but may be worth re-seating the modules. After reboot, the server seems to work fine all day. It's only in the middle of the night it locks up. As of right now, I still seem to have various issues spitting lines into the log. I have attached both a picture of the kernel panic and my diag reports. Any help would be great. I have been running this server for about 5 years without much issue. Thanks! pageraid-diagnostics-20200813-0918.zip
  5. Love how easy docker makes turning unraid into a media server don't love that unraid doesn't have iscsi support. I think a paid for NAS product should suppot block network storage. keep up the great work!
  6. I am trying to figure out why wireguard isn't working. unRAID: 6.8.0-rc9 Router: pfSense with port 51829 forwarded to local ip of unRAID I have vpn.mydomain.com forwarded to my WAN address. Using the wireguard plugin, i generated a tunnel and generated a client with remote access to lan. I used the iOS Mobile app to scan the config from the server. The iOS app "activates" and I can see small amounts of data sent and data received but no handshake occurs, and nothing is asseciable over the tunnel. My server has a Ethernet bond that is set to bridge. Maybe network adjustments need to be made at the pfsense level? Configs are attached.
  7. Regardless, I much appreciate the help @trurl ! I was growing more concerned by the minute.
  8. One other thing to note, I did last week install a 10gbe network card and I wonder if that may have been causing this. I say this because when I booted the server after removing the plugins, I did not have any internet access to the outside world. I believe this may have been because the 10gbe network (different subnet) did not have WAN access. I am not exactly sure how to have the 10gbe network ONLY work for internal storage sharing, but not for unRAID internet access. I am not exactly sure I am explaining that correctly...
  9. Ok. So without the plugins, the server boots correctly and the the array starts.
  10. Ok. Trying now. I should also mentioned, I have a backup of the flash drive from a couple of days ago. I used Duplicacy to backup and just restored to a folder on my desktop. Not sure if I could just replace the contents and reboot.... It seems the kernel is older though. 5.3.12 vs 4.19.56
  11. I see lots of folders as well as .plg files. Should I leave the folders and just delete the file?
  12. attached pageraid-diagnostics-20191209-1728.zip
  13. rebooting after commenting out the -p flag and the cp command resulted in the same issue. NGINX does not start. Booting into Safe mode still works fine.
  14. That's true and I don't really use that shell script anymore, now that I have gotten better using direct docker commands. But again, that had been there for a long time and my server was just fine. I am happy to remove it, but I do not suspect that is causing the issue.
  15. The cp line is to add an easy way to get into the docker shell. That has been working for a few years at this point. I have removed the -p config. I am trying a reboot now. As seen here: #!/bin/bash # easily "docker exec" into a running Docker container # latest version: https://gist.github.com/ljm42/2b3bfd8ff886015bbce8 # for unRAID, place this script on your flash drive as /boot/custom/docker-shell # then add this to your go script (without the leading pound sign): # cp /boot/custom/docker-shell /usr/local/bin CONTAINERS=`docker ps | awk 'NR==1 {offset=index($0,"NAMES")};NR>1{print substr($0,offset)}' | sort -f | tr "\n" " "` echo echo "Choose a Docker container:" i=1 for container in $CONTAINERS do echo "$((i++)) : $container" done read MYCHOICE CHOSEN=`echo $CONTAINERS | cut -d' ' -f$MYCHOICE 2>/dev/null` if [ "$CHOSEN" = "" ]; then echo Invalid option exit fi # try running bash, if exit code 126 then try running sh for SHELL in bash sh do clear echo " " echo -e '\E[30;42m'"\033[5m $CHOSEN - $SHELL \033[0m" echo " " tput sgr0 docker exec -it $CHOSEN $SHELL if [ $? -ne 126 ]; then break fi done