Jump to content

Mlatx

Members
  • Posts

    149
  • Joined

  • Last visited

Posts posted by Mlatx

  1. 30 minutes ago, JorgeB said:

    It's a problem with the SATA controller, quite common on Ryzen boards, there are reports that the newer kernel on the latest betas help with those, or disable IOMMU if not needed.

    I wonder why it would just show up. I’ve hade this board for years. I may try and update the bios and see what that does. Then perhaps go to the latest beta. Yeah I need IOMMU. Thanks. 

  2. I took that line out.  Here are the Unraid 6.8 diagnostics.  pfsense is still not booting up in 6.8.  I've shared a screenshot on where it is stuck.  Regarding using my backup pfsense box, it seems to be the culprit to accessing docker containers through letsencrypt.  I don't know why as the configs are the same.  I guess I'll post in the netgate forum.  

    pfsense hang.png

    diagnostics.zip

  3. Hi All,

     

    I upgraded to version 6.8 this morning.  I was running pfsense in a vm as my primary router and decided to switch configuration where I would run my backup separate box as my router and the vm as my backup.  I was unable to hit any of my dockers that were using letsencrypt as the reverse proxy.  I have my own domains setup.  So I thought maybe it was the switch to my physical pfsense router.  I tried to switch back to the vm, but it would not boot up and kept hanging before the startup screen (there is another post on this).  The main issue for me was not being able to access my dockers.  

     

    So I reverted back to 6.7.2.  The pfsense VM starts and works accordingly.  Now running my primary or my backup pfsense I am able to hit my dockers by their URL.  What is causing this issue in version 6.8?  

     

     

    • Like 1
  4. 29 minutes ago, pingmanping said:

    I have the nextcloud set to port 444. The CLI upgrade gave no error. The Internal server error that I get is when I login to nextcloud. It let me enter my credentials, but the next page was the internal server error.
    Did some googling, but it seemed like something to do with permission. I chown -R nobody:users the nextcloud folder, but didn't helped.

    Sent from my ONEPLUS A6003 using Tapatalk
     

    The only other thing worth trying would be to delete the container and reinstall it.  All your app settings will be there. Unless someone else can chime in on another solution.

  5. 58 minutes ago, pingmanping said:

    I followed the guide, but my issue was I having right after I install the lastest-14, I was getting Internal Server Error.

    Sent from my ONEPLUS A6003 using Tapatalk
     

    Any errors I had with the install occurred within the terminal window.  Usually a google search copying the error found a solution.  If you are having trouble starting the nextcloud container or getting the error upon restart, make sure you have the https port set to 444 otherwise it won't start with 443 (unraid uses that).  That's about as much as I can help on this one.  

  6. 6 hours ago, pingmanping said:

     

    It was said here that the existing installation of nextcloud was most likely version 13.0.1, which is what I have, but the brand new installation is based off the latest version. I wonder if would it be easier to start from scratch just the nextcloud and connect it to existing mariadb than upgrading?

    What about the existing user data? Would the new installation see them?

    The new installation sees everything as it was.  I wish I could have started from scratch but didn’t want to deal with a potentially bigger headace.  Version 13 sounds about right.  You can’t jump from 13 to the current 16.  It’s too many versions out (at least that was the error I got) so have to go to 14 first.  It’s really not that difficult to follow those steps.  It would have been a lot easier had I not had the password error.

  7. 41 minutes ago, kcgodwins said:

    Hi guys, sorry for the intrusion but I just discovered I have an issue after updating all my dockers this evening.

     

    I can no longer access Nextcloud via letsencrypt; I have started getting the error "This version of Nextcloud is not compatible with > PHP 7.2.
    You are currently running 7.3.6."  Both the nextcloud and letsencrypt dockers are from linuxserver.io and I updated both this evening.

     

    I got into the letsencrypt console and did a php -v and it is indeed running 7.3.6:

    PHP 7.3.6 (cli) (built: Jun 14 2019 11:43:56) ( NTS )
    Copyright (c) 1997-2018 The PHP Group
    Zend Engine v3.3.6, Copyright (c) 1998-2018 Zend Technologies
        with Zend OPcache v7.3.6, Copyright (c) 1999-2018, by Zend Technologies
     

    So, my questions...

    1. Is there a change log/release notes or other such page somewhere on the net for each of these dockers so I can read to validate that the version of php changed (I believe it has)?

    2. Is there a way to "downgrade" to a previous version of a docker and, if so, how?  A pointer to some educational material on the subject would be appreciated.

    3. I find it odd that two dockers from the same publisher are apparently at odds with each other.  Does this happen often?

    4. Anyone else having this issue?

     

    Thanks

    Mike

    I just resolved this issue today and spent a few hours. I'm going to try and help you not spend that much time.  You'll need to upgrade Nextcloud itself (not done via the docker update in unraid).  There is a link on the first page that takes you to the instruction on how to do this.  After trial and error, this is what worked for me.  I used this modified set of instructions to upgrade to version 14.  Hopefully that works for you.  All other version I tried (12, 13, 15, and 16 failed).  Here was the initial process.

     

    ##Open terminal from unraid gui header (top right corner)

    docker exec -it nextcloud bash

     

    ##Turn on maintenance mode

    sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --on

     

    ##Backup current nextcloud install

    mv /config/www/nextcloud /config/www/nextcloud-backup

     

    ##Grab newest nextcloud release and unpack it (I had to do version 14 as I couldn’t go further without errors.  You can update from nextcloud gui to other versions once this is completed)

    wget https://download.nextcloud.com/server/releases/latest-14.tar.bz2

    tar -xvf latest-14.tar.bz2 -C /config/www

     

    ##Copy across old config.php from backup

    cp /config/www/nextcloud-backup/config/config.php /config/www/nextcloud/config/config.php

     

    ##Now Restart docker container

    exit

    docker restart nextcloud

     

    ##Open terminal (should already be open just wait for the docker to restart)

    docker exec -it nextcloud bash

     

    ##Perform upgrade

    sudo -u abc php7 /config/www/nextcloud/occ upgrade

     

    ##Turn off maintenance mode

    sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --off

     

    after you confirm all is working, do this

     

    ##remove  backup folder

    rm -rf /config/www/nextcloud-backup

     

    ##Remove Nextcloud tar file

    rm latest-14.tar.bz2

     

    I had an issue with the first installation completing saying the password was invalid.  I found this https://github.com/nextcloud/server/issues/12750.  So I followed the link on that page to the php file (well it's not a file but code) and copied all of the text into TextMate on my Mac (Notepad ++ on Windows).  I saved the file in the name listed.  I copied it to a director on one of my shares.  Then you'll need to go into Krusader to copy this file into the directory listed on that website if you can't do it from your computer.  I couldn't from my mac as the directory was inaccessible.  It's a pain in the ass I know so hopefully you don't have this issue.  If you do, you'll need to go through this update process again replacing version 14 with 15.  I had to because the php file I created had some violation issue.  But it at least got me back into Nextcloud.  Good luck.

     

    • Thanks 1
  8. Issue: The reverse proxy header configuration is incorrect, or you are accessing Nextcloud from a trusted proxy. If not, this is a security issue and can allow an attacker to spoof their IP address as visible to the Nextcloud. Further information can be found in the documentation.  

     

    I have tried all the suggestions on page 86 

    Nothing has worked.  I've used the letsencrypt IP address and port number (both ports 1443 and another line for 180).  I still get the error.  What am I missing?  

  9. On 3/17/2019 at 6:37 PM, dlandon said:

    It looks like you have an issue with the proxy.

    After a bit more research, I figured out my issue.  Chrome seems to resolve the /zm folder.  Whereas other browsers don't.  So when I type zoneminder.mydomain.com in a browser other than Chrome I get the nginx page.  When I type zoneminder.mydomain.com/zm it works.  Is there any way to configure zoneminders so that when I type just zoneminder.mydomain.com it goes to the root folder?

  10. 17 hours ago, dlandon said:

    It looks like you have an issue with the proxy.

    There may be an issue somewhere.  The thing I don't get is that I can see the events and feeds from zm ninja app, which uses my reverse proxy.  Also I can see the feeds through Chrome but not the events.  Every other browser shows that error.  

  11. I have a couple issues going on right now with the latest version.  First, I setup a reverse proxy using letsencrypt.  I am able to login through Chrome and the zmninja ios app.  I cannot login through Firefox, Safari, or IE.  I setup my proxy.conf file according to my last post https://forums.unraid.net/?app=core&module=system&controller=content&do=find&content_class=forums_Topic&content_id=56632&content_commentid=724628.  I've attached the screenshot I get from Safari and IE, and Firefox say the connection was reset.

     

    The other strange thing going on is I am was able to see my events in Chrome, and now I see a white screen with no controls.  This is a video I was able to see 2 days ago.  When I try to download the video using the video link it says not video found.  Then I click it again, and it shows my download options.  However, when I try to access the video there is no content.  Does anyone know how to fix this?

    Screen Shot 2019-03-15 at 12.29.35 AM.png

  12. On 2/23/2019 at 3:37 PM, geekypenguin said:

    It absolutely can be done!

    I use the letsencrypt docker as a reverse proxy for a bunch of Apache based web services.

    I don't have a one specific for zoneminder but it will be exactly the same config as any others you have working, just set your backend server to the ip:port of your zoneminder instance

    Thanks.  I did some more research and got a working zoneminder.subdomain.conf file (I am using my own subdomain).

     

    I have the following:

     

    server {
        listen 443 ssl;
        listen [::]:443 ssl;

        server_name zoneminder.*;

        include /config/nginx/ssl.conf;

        client_max_body_size 0;

        location /zm {
            include /config/nginx/proxy.conf;
            proxy_pass https://IPADDRESSOFYOURSERVER:8443/zm;
        }
    }
     

×
×
  • Create New...