Lumpy_BD

Members
  • Posts

    23
  • Joined

  • Last visited

Recent Profile Visitors

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

Lumpy_BD's Achievements

Noob

Noob (1/14)

3

Reputation

  1. Formany years now I've had an intermittent issue where my server fails to restart properly but only when there is no monitor connected. When I say intermittent, I'd say anecdotally, it reboots properly maybe 1 in 5 times, but the other 4 times, it just doesnt come back up after rebooting. If it fails to come back up, and I connect a monitor, then I get a completely black screen. If I then reboot it again with the monitor connected, then everything works fine. Given that if I reboor my server twice a year its a lot, this hasnt really been very high on my list of things to sort out. After doing some research a while back I bought a dumb HDMI plug to connect to the server but that hasnt made any difference. For reference, its an 5th gen Intel i5 with onboard graphics, although I also added a discrete video card which made no difference so I took it out again. Could anyone perfhaps provide some thoughts on how best to go about troubleshooting this?
  2. Thanks for the help all. I hadn't realised I'd left mover logging enabled. This is now disabled. I've also turned off corrective parity checks. Would there be any benefit now to rebooting, and starting a new parity check to see if the results are any different?
  3. Yeah fair enough lol... tower-diagnostics-20211103-1644.zip
  4. My monthly parity check is currently running, and it's reported 165 errors so far. It's the first time that I've ever had any errors reported, and there have been no shutdowns, clean or otherwise in several months. Can anyone give me some pointers on how I go about evaluating the cause and severity of the issues as this is unfamiliar territory for me. Thanks. P.s. I'm happy to provide the diagnostics too if that helps.
  5. I've tried setting up Authelia following the deep dive video and I'm having an issue. Ive managed to get to the point where the container starts up with no errors in the log, however when I try to open the web UI I get the following in my browser: I'm using File notifications and there is absolutely nothing in the notification.txt file. Any ideas? Thanks.
  6. Hi all, I'd like to add a password to my Redis setup. Is there anyway to get Paperless to authenticate with Redis with a password? It doesn't appear obvious at initial glance. Thanks.
  7. Hi, I've had a new issue with SABNZBD for a few days now. I'm not entirely sure when is started, but for some reason, neither my Sonarr nor my Radarr containers are able to add downloads to SABNZBD. They are all on the same custom network, and both of them can ping the SABNZBD container both by IP and by hostname. If I try to test the connection from either, I get the following: Test was aborted due to an error: Unable to connect to SABnzbd, HTTP request failed: [404:NotFound] [GET] at [http://binhex-sabnzbd.privnet:8080/api?mode=get_config&apikey=b1b1fef8618052945a437b277d54aa10&output=json] Here is my configuration screen: I am also seeing the following warning in SABNZBD when I run the test: Slightly stumped where next to go with this one. Any ideas? Thanks.
  8. Yup that did it, thanks so much! they key was the upstream_app like you said... I did try it with the IP address but I had used the internal docker IP (172...) instead of my server's IP (192...). Thanks so much for your help, really appreciated!
  9. @muppie would you by any chance mind sharing your conf file so I can compare?
  10. I have tried defining the IP under upstream_app instead of the container name and its still the same... any other ideas?
  11. Fo what it's worth, my swag and paperless containers are both on the same custom docker network. If I connect to the swag console, I can successfully resolve the IP of the paperless container so network communication *appear* fine between the containers. I'll try it with the IP and see what happens, but I've never had to do this before...
  12. Has anybody managed to get this working through the SWAG reverse proxy container? I've verified the NGINX config file values as per the documentation but it still isn't working - I get a 502 Bad Gateway error. Here is my swag conf file if it helps... server { listen 443 ssl; listen [::]:443 ssl; server_name paperless.*; include /config/nginx/ssl.conf; client_max_body_size 10M; # enable for ldap auth, fill in ldap details in ldap.conf #include /config/nginx/ldap.conf; # enable for Authelia #include /config/nginx/authelia-server.conf; location / { # enable the next two lines for http auth #auth_basic "Restricted"; #auth_basic_user_file /config/nginx/.htpasswd; # enable the next two lines for ldap auth #auth_request /auth; #error_page 401 =200 /ldaplogin; # enable for Authelia #include /config/nginx/authelia-location.conf; include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_app paperless-ng; set $upstream_port 8000; set $upstream_proto https; proxy_pass $upstream_proto://$upstream_app:$upstream_port; # These configuration options are required for WebSockets to work. proxy_set_header Connection "upgrade"; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } Also to add, this is what I get in the paperless log whenever I try to access the site through swag: [44] [WARNING] Invalid HTTP request received. Traceback (most recent call last): File "/usr/local/lib/python3.7/site-packages/uvicorn/protocols/http/httptools_impl.py", line 167, in data_received self.parser.feed_data(data) File "httptools/parser/parser.pyx", line 193, in httptools.parser.parser.HttpParser.feed_data httptools.parser.errors.HttpParserInvalidMethodError: invalid HTTP method
  13. I just do 2 passes while in the USB enclosure and leave it at that. Personally I don't see any reason to do more than that, but I guess it comes down entirely to your risk appetite. If the extra pass helps you sleep better at night then go for it!
  14. I've upgraded to 6.9 und installed the NVIDIA driver. All transcoding and other GPU related tasks are all working fine. However since the update, my GPU refuses to sleep when it isn't being used. According to the GPU statistics plugin, it stays in the P0 power state, even when there is nothing using it. I had previously set up the "nvidia-smi_persistence_mode" user script to force the GPU to sleep, and though it still runs every hour, it seems to make no difference: #!/bin/bash gpupstate=$(nvidia-smi --query-gpu="pstate" --format=csv,noheader); gpupid=$(nvidia-smi --query-compute-apps="pid" --format=csv,noheader); if [ "$gpupstate" == "P0" ] && [ -z "$gpupid" ]; then fuser -kv /dev/nvidia*; fi; Has anyone else had any luck getting this to work?