ChrisTech

Members
  • Posts

    19
  • Joined

  • Last visited

Posts posted by ChrisTech

  1. Hi there,

     

    For the past month or so, my Windows 10 VM keeps pausing, and the only way to resolve the issue, is to Force Stop the VM, and start it again.

    I've attached the Diagnostics, and the last occurrence happened roughly 3/25 at 11:55pm (or after... going by last Event Viewer entry).

     

    I've looked through the logs but I haven't noticed anything. Other than the VM, everything else has been functioning fine. VM will work for a few days, then just pause without warning.

     

    The only error I see within the VM Logs is: 

    error: kvm run failed Invalid argument

    Which means nothing to me.

     

    Appreciate the insight and help.

    Chris

    tower-diagnostics-20240327-1849.zip

  2. Hmm, seems my rsyslog.conf was completely empty. Not sure why. It was even empty on my /boot/config volume too, so moved those to *.bak, and updated /etc/rsyslog.conf, restarted the service, now I have a syslog.

     

    Hopefully the random rsyslog.conf I found in the forums from 2015 is still up-to-date...Anyone care to share their latest so I can compare?

  3. @JorgeB - Rebooted, and diag attached, but syslog still empty.

     

    @Squid - There were just some disk mounted (not as slave) warnings, and some folders on cache disk but not configured to use cache. No errors.

     

    I attempted to issue a command via CLI: logger "test", but nothing shows in syslog either. Not sure what else it could be. I can manually edit syslog (as root), so it's writable...

    Permissions are:

    -rw-r--r--  1 root   root

    Does that seem correct?

     

    I did end up removing two plugins because Common Problems told me it didn't know the publisher. I've now rebooted, and it's been ~12 minutes... no error about corrupted drive.

    🤞 that was it.

    tower-diagnostics-20221005-2101.zip

  4. 4 hours ago, tronyx said:

    Anyone else having their Telegraf container not start w/ the following errors?

     

    ERROR: Unable to lock database: Permission denied
    ERROR: Failed to open apk database: Permission denied

     

    I believe it is an issue with this command now for some reason:

     

    /bin/sh -c 'apk update && apk add smartmontools nvme-cli && telegraf'

     

    EDIT: Looks like pinning the image to the 1.19.2-alpine tag fixed it so they must've broken something.

     

    Thanks for posting this tag...Was wondering what was going on myself, and why it wasn't working... 1.19.2-alpine resolved it for me.

  5. I'm wondering if there's a plugin that can map a dockers dependencies to another docker (eg. Grafana to Prometheus/InfluxDB/etc.). I'm constantly forgetting what docker uses my MongoDB docker, or TeslaMate pushes to what database? Would be nice if I didn't have to go into each docker to confirm, but rather had some sort of dependency list.

  6. Seeing what your reverse proxy config is would be helpful.  I'm currently using a subdomain, secured by SSL, which I configured via NginxProxyManager. Here's whats currently working for me (censored of course):

    # ------------------------------------------------------------
    # sub.domain.com
    # ------------------------------------------------------------
    
    server {
      set $forward_scheme https;
      set $server         "999.999.999.999";
      set $port           444;
    
      listen 8080;
    listen [::]:8080;
    
    listen 4443 ssl http2;
    listen [::]:4443;
    
      server_name sub.domain.com;
    
      # Let's Encrypt SSL
      include conf.d/include/letsencrypt-acme-challenge.conf;
      include conf.d/include/ssl-ciphers.conf;
      ssl_certificate /etc/letsencrypt/live/npm-4/fullchain.pem;
      ssl_certificate_key /etc/letsencrypt/live/npm-4/privkey.pem;
    
      # Block Exploits
      include conf.d/include/block-exploits.conf;
    
      # HSTS (ngx_http_headers_module is required) (31536000 seconds = 1 year)
      add_header Strict-Transport-Security "max-age=31536000;includeSubDomains; preload" always;
    
      access_log /config/log/proxy_host-3.log proxy;
    
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $http_connection;
        proxy_http_version 1.1;
    
      location ~ /auth-(.*) {
        proxy_set_header Host $host;
        proxy_set_header X-Forwarded-Scheme $scheme;
        proxy_set_header X-Forwarded-Proto  $scheme;
        proxy_set_header X-Forwarded-For    $remote_addr;
        proxy_pass       http://999.999.999.999:81/api/?v1/auth&group=$1;
      }
    
      location / {
        # Force SSL
        include conf.d/include/force-ssl.conf;
    
      # HSTS (ngx_http_headers_module is required) (31536000 seconds = 1 year)
      add_header Strict-Transport-Security "max-age=31536000;includeSubDomains; preload" always;
    
        # Proxy!
        include conf.d/include/proxy.conf;
      }
    
      # Custom
      include /data/nginx/custom/server_proxy[.]conf;
    }

     

    Note, there's extras in there (eg. ~ /auth-(.*) ), which isn't required, as I'm using Plex Auth through Tautulli.

     

    EDIT: Just realized this post was 2+ months old after I replied. Oh well, maybe it'll be useful to someone. 🤦‍♂️

  7. Hello, I've searched, but haven't been able to find anything to address the following issue:

    • I'm connecting an external device to my unraid server physically via USB.
    • This external device can be turned on and off.
    • As this device is turned on and off, I need it available again in the VM without rebooting the VM.

     

    I have only been able to get it available after rebooting the VM. Eventually, this would apply to multiple external devices that can turn on and off.

  8. So I've been playing around with this, and it seems way overkill for my needs. You need to create Manufacturers, Models, etc. Prior to creating assets. It'd take way to long to get this going.

     

    If anyone else has a different Home Inventory Management software they're using (other than a spreadsheet), that allows picture uploads, please let me know!

  9. So I've managed to get this working (ignore my trigger finger ask for help above). Apparently I was getting an error the following error in nginx/error.log:

    The server requested authentication method unknown to the client [caching_sha2_password] 

    This was resolved by issuing the following command on the mysql database itself:

    ALTER USER 'usernameHere'@'%' IDENTIFIED WITH mysql_native_password BY 'passwordHere';

    After that, connections worked fine. Still running through the setup, but will update here with a final walkthrough of what was done to get this working...I'm sure others here would like to use a similar software.

  10. I'm creating this thread in hopes that someone out there has tried a home inventory docker and have gotten it to work with unraid.  I've been trying to get the "snipe-it" to run, without success.

     

    This is the particular dockerhub that I've been using, but have searched on linuxserver's forums and haven't found anything: https://hub.docker.com/r/linuxserver/snipe-it. Essentially, when loading the UI (that never loads), I just get a connection refused. NGINX runs behind the scenes to handle the traffic, and I'm not seeing any errors in there either (just 500s). I'm guessing the nginx.conf needs to be updated in some way, but even doing a curl against the localhost:80 doesn't return any data, so I think the issue stems further back.