Jump to content

bpage

Members
  • Posts

    66
  • Joined

  • Last visited

Posts posted by bpage

  1. 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. 

  2. 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!

     

     

    IMG_1607.jpeg

    pageraid-diagnostics-20200813-0918.zip

  3. 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.

     

    1760000215_ScreenShot2019-12-10at12_28_34PM.png.40eaf0c656ed079750e04d6940491c5c.png

     

     

    Screen Shot 2019-12-10 at 12.30.45 PM.png

  4. 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...

  5. 3 minutes ago, trurl said:

    Nothing from the folders will be loaded without the corresponding .plg file

    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

  6. Just now, trurl said:

    You can easily get a shell inside any of your containers by simply clicking on its icon on the Dashboard or Docker page and selecting >_ Console.

    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. 

  7. 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

     

  8. 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"

     

  9. 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. 

  10. Could anybody give me a hand here. When I try to send an email report, it takes a long time >3 min. When it does finally send, I get the follow error:

     

    /usr/lib/ruby/gems/2.3.0/gems/mail-2.6.3/lib/mail/check_delivery_params.rb:9:in `check_delivery_params': An SMTP To address is required to send a message. Set the message smtp_envelope_to, to, cc, or bcc address. (ArgumentError)
        from /usr/lib/ruby/gems/2.3.0/gems/mail-2.6.3/lib/mail/network/delivery_methods/smtp.rb:98:in `deliver!'
        from /usr/lib/ruby/gems/2.3.0/gems/mail-2.6.3/lib/mail/message.rb:252:in `deliver!'
        from /var/lib/nowshowing/mailReport.rb:98:in `block in sendMail'
        from /var/lib/nowshowing/mailReport.rb:89:in `each'
        from /var/lib/nowshowing/mailReport.rb:89:in `sendMail'
        from /usr/local/sbin/emailreport:385:in `main'
        from /usr/local/sbin/emailreport:389:in `<main>'

     

    Was working perfectly for months, this just started last week. 

×
×
  • Create New...