bpage

Members
  • Posts

    66
  • Joined

  • Last visited

Everything posted by bpage

  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
  16. I am not sure why that is in go file, as I typically hit the webgui on port 80....
  17. Find diagnostics attached. pageraid-diagnostics-20191209-1637.zip
  18. Ok. So after manually starting php-fpm via ssh I can get to the webgui, but, the array is stuck on "Array Starting * Mounting Disks"
  19. Not sure exactly what is going on. The only thing I did was remove the libvirtwol plugin and after reboot all went to hell. It looks like nginx is not loading upon boot. When I do manually start it, I get tons of errors in /var/log.nginx/error.log. They are below. When running in safe mode, the gui and the array load fine. Any ideas? I am on 6.8.0-rc7. 2019/12/09 11:26:45 [crit] 19929#19929: *1 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:45 [error] 19929#19929: *1 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:26:45 [crit] 19929#19929: *3 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:45 [error] 19929#19929: *3 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:26:48 [crit] 19929#19929: *10 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:48 [error] 19929#19929: *10 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:26:50 [crit] 19929#19929: *13 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:50 [error] 19929#19929: *13 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:26:52 [crit] 19929#19929: *17 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:52 [error] 19929#19929: *17 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:26:54 [crit] 19929#19929: *21 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.2.2, server: , request: "GET /Main HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:54 [error] 19929#19929: *21 auth request unexpected status: 502 while sending to client, client: 10.0.2.2, server: , request: "GET /Main HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:26:54 [crit] 19929#19929: *23 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.2.2, server: , request: "GET /favicon.ico HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10", referrer: "http://10.0.1.10/Main" 2019/12/09 11:26:54 [error] 19929#19929: *23 auth request unexpected status: 502 while sending to client, client: 10.0.2.2, server: , request: "GET /favicon.ico HTTP/1.1", host: "10.0.1.10", referrer: "http://10.0.1.10/Main" 2019/12/09 11:26:56 [crit] 19929#19929: *27 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:56 [error] 19929#19929: *27 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:26:59 [crit] 19929#19929: *32 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:26:59 [error] 19929#19929: *32 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:27:00 [crit] 19929#19929: *35 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:27:00 [error] 19929#19929: *35 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:27:03 [crit] 19929#19929: *41 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:27:03 [error] 19929#19929: *41 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:27:04 [crit] 19929#19929: *43 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10" 2019/12/09 11:27:04 [error] 19929#19929: *43 auth request unexpected status: 502 while sending to client, client: 10.0.1.35, server: , request: "GET /sub/dockerload HTTP/1.1", host: "10.0.1.10" 2019/12/09 11:27:07 [crit] 19929#19929: *51 connect() to unix:/var/run/php5-fpm.sock failed (2: No such file or directory) while connecting to upstream, client: 10.0.1.35, server: , request: "GET /sub/var?last_event_id=1575906911%3A3 HTTP/1.1", subrequest: "/auth_request.php", upstream: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "10.0.1.10"
  20. Gotcha. Running again now. I will update. Appreciate the insight.
  21. Hoping you guys could help me with next steps. Had a dirty shutdown and unRAID came back up Ok, but parity check returned 23 errors. I then proceeded to run another check with correcting turn on, but got the same result. No disk errors reported and the system is working correctly to my knowledge. Could someone give me some next steps? No video cards installed and ECC ram. pageraid-diagnostics-20181119-0900.zip
  22. Not sure if someone else posted this, but was wondering how to set up pretty url's within this container. I have tried adjusting my nginx conf, but any change leads to 404's. Does anyone have an example conf with this? FWIW, I am always using a nginx reverse proxy in front of the container.
  23. I was wondering if anyone had a way to get rid of the index.php in every URL? I tried the following editing the config.php file as referenced in the link below, but it did not seem to help. https://github.com/nextcloud/docker/pull/152 any ideas?
  24. Is there anyway to exclude a user or two from the email blast? I have one or two users who do not want to get the email...