Jump to content

Bobat

Members
  • Posts

    50
  • Joined

  • Last visited

Posts posted by Bobat

  1. 2 hours ago, JorgeB said:

    Did the monitor go to sleep? Though I think it should still work, even when sleeping.

     

    Sort of.  My OPNsense router was also plugged into the same monitor, so I think after 15 minutes of inactivity the monitor was automatically switching over to the other input and the messages would start up again.  I unplugged the other cable and it seems to be stable now.  I rarely need a monitor plugged into either machine, so maybe I'll try one of those HDMI dummy plugs rather than keeping the monitor on all of the time.

    • Like 1
  2. 54 minutes ago, JorgeB said:

    Do you have a monitor plugged in? If not using a VGA or HDMI dummy plug *might* help.

    I did have a monitor plugged in via an HDMI KVM.  I plugged the monitor directly into the server and it seems to have stopped.  Thanks!

     

    EDIT:
    I spoke too soon, it stopped for about 15 minutes and then started doing it again.

  3. I'm getting the "EDID block 0 is all zeroes" error filling up my log on 6.11.0 final.  I saw this on 6.11rc4 as well (never tried rc5).  Rolling back to rc3 makes it go away.  I saw this thread suggesting that blacklisting the GPU driver may fix it, but I use the integrated GPU for Plex transcoding so I don't think that's a viable solution for me.  Any other ideas?

    burns-diagnostics-20220923-1425.zip

  4. On 11/15/2020 at 8:14 AM, learningunraid said:

    How many Port Forwarding PIA allows?

    The US servers don't look like they support port forwarding.  For the servers that do, it looks like you're limited to a single port.  I don't use the function personally, so I'm not 100% sure on that.

  5. On 10/23/2020 at 7:27 PM, learningunraid said:

    Hello, Mine is not resolved yet. I am having the same issue. What to do?

    If you're using PIA, make sure you're using the most up to date ovpn config files from the PIA site.  They just recently retired a bunch of legacy servers.  My config file was pointing to one of those old servers and I couldn't figure out why it wouldn't connect anymore.  Download the default Nextgen config files and make sure you're using the current server names.

    • Like 1
  6. This is definitely possible.  I do something very similar with my custom domain and Cloudflare.  You need to set up stream proxying in your nginx.conf file.

     

    stream {
    
        # Defining upstream servers for proxied traffic
        upstream tcp_backend {
            server 123.456.7.8:9443;
        }
        upstream udp_backend {
            server 123.456.7.8:1194;
        }
    
        # Defining protocols and ports for data to be proxied.
        server {
            proxy_connect_timeout 300s;
            proxy_timeout 300s;
            listen 9443;
            proxy_pass tcp_backend;
        }
        server {
            proxy_connect_timeout 300s;
            proxy_timeout 300s;
            listen 1193 udp;
            proxy_pass udp_backend;
        }
    }

    Where 123.456.7.8 is the internal IP address of your OpenVPN server.

  7. 3 hours ago, Jobine said:

    Since the last update, my unraid server gives me some Call Trace errors.

    Ideas ?

    serveur-diagnostics-20180318-1755.zip

     

    From your syslog:

    Quote

    Mar 17 09:24:21 Serveur kernel: BUG: unable to handle kernel NULL pointer dereference at 0000000000000038
    Mar 17 09:24:21 Serveur kernel: IP: tcp_push+0x4e/0xee
    Mar 17 09:24:21 Serveur kernel: PGD 80000002431a8067 P4D 80000002431a8067 PUD 24319b067 PMD 0 
    Mar 17 09:24:21 Serveur kernel: Oops: 0002 [#1] PREEMPT SMP PTI

     

    Several people (including myself) are having the same issue.  See herehere, and here.  I've downgraded back to 6.4.1 and everything's good for me now.  I'll try again after the next release to see if a new kernel patch solves it.

  8. Hi,

     

    Is anyone having problems connecting to the Crashplan Central service since the update? I've followed the posts in the last couple of pages to restore connection from my Windows box to the Crashplan docker, but the backup engine can't connect to the online service.

     

    Any ideas?

     

    SR

     

    I was having the same issue post upgrade.  Here's what I did to restore connectivity to Crashplan Central:

     

    [*]Stop the Crashplan docker

    [*]Backup your my.service.xml file in your Crashplan docker config folder - mine was in /mnt/cache/appdata/crashplan/conf/

    [*]Edit my.service.xml and remove the hash string between the <autoLoginPasswordHash> tags

    [*]Change the text between the <autoLogin> tag from "true" to "false"

    [*]Start the Crashplan docker

    [*]Launch the GUI client (either through Windows or the MATE, whichever you use) and sign in to your Crashplan account when prompted then close the client

    [*]Stop the Crahsplan docker

    [*]Edit my.service.xml and change the text between the <autoLogin> tag back to "true"

    [*]Start the Crashplan docker again

     

    Confirm through the GUI client that everything connected and your backups are working again.  I don't know if toggling the autoLogin part is strictly necessary, you may only need to remove your old password hash, but this worked for me.

     

     

  9. Just did an update on Owncloud from gfjardim's repository.  Now Owncloud won't start and I'm seeing this repeated in my logs:

     

    [17-Dec-2014 16:08:46] ERROR: failed to load configuration file '/etc/php5/fpm/php-fpm.conf'
    [17-Dec-2014 16:08:46] ERROR: FPM initialization failed
    [17-Dec-2014 16:08:47] ERROR: failed to open configuration file '/etc/php5/fpm/php-fpm.conf': No such file or directory (2)
    [17-Dec-2014 16:08:47] ERROR: failed to load configuration file '/etc/php5/fpm/php-fpm.conf'
    [17-Dec-2014 16:08:47] ERROR: FPM initialization failed
    [17-Dec-2014 16:08:48] ERROR: failed to open configuration file '/etc/php5/fpm/php-fpm.conf': No such file or directory (2)
    [17-Dec-2014 16:08:48] ERROR: failed to load configuration file '/etc/php5/fpm/php-fpm.conf'
    [17-Dec-2014 16:08:48] ERROR: FPM initialization failed
    [17-Dec-2014 16:08:49] ERROR: failed to open configuration file '/etc/php5/fpm/php-fpm.conf': No such file or directory (2)
    [17-Dec-2014 16:08:49] ERROR: failed to load configuration file '/etc/php5/fpm/php-fpm.conf'
    [17-Dec-2014 16:08:49] ERROR: FPM initialization failed

     

    Anyone else having an issue?

×
×
  • Create New...