Cytomax

Members
  • Posts

    21
  • Joined

  • Last visited

Posts posted by Cytomax

  1. Sorry i thought this was for all the linuxserver.io containers... 

     

    im just running it in a manjaro box using docker... 

     

    So i figured it out... 

    1.16.0-ls67 and 1.16.0-ls68 dont work for me

    1.16.0-ls66 does work for me...

     

    Something changed between 

    1.16.0-ls66 and 

    1.16.0-ls67 that causes the container to crash 

     

    Hopefully its just me and its not some bigger problem... 

  2. I want to start by saying letsencrypt/swag is amazing and i have been running it successfully for the last couple years....

    i usually update every few weeks or so...
    i ran an update today like normal... no recent config changes... and the container keeps crashing... 

    i backed up the container and made a new folder to start from scratch and the container keeps crashing....

    Here are the logs... no idea what to do now....

     

     


     -------------------------------------
    swag              |           _         ()
    swag              |          | |  ___   _    __
    swag              |          | | / __| | |  /  \ 
    swag              |          | | \__ \ | | | () |
    swag              |          |_| |___/ |_|  \__/
    swag              | 
    swag              | 
    swag              | Brought to you by linuxserver.io
    swag              | -------------------------------------
    swag              | 
    swag              | To support the app dev(s) visit:
    swag              | Certbot: https://supporters.eff.org/donate/support-work-on-certbot
    swag              | 
    swag              | To support LSIO projects visit:
    swag              | https://www.linuxserver.io/donate/
    swag              | -------------------------------------
    swag              | GID/UID
    swag              | -------------------------------------
    swag              | 
    swag              | User uid:    1000
    swag              | User gid:    1000
    swag              | -------------------------------------
    swag              | 
    swag              | [cont-init.d] 10-adduser: exited 0.
    swag              | [cont-init.d] 20-config: executing... 
    swag              | [cont-init.d] 20-config: exited 0.
    swag              | [cont-init.d] 30-keygen: executing... 
    swag              | using keys found in /config/keys
    swag              | [cont-init.d] 30-keygen: exited 0.
    swag              | [cont-init.d] 50-config: executing... 
    swag              | Variables set:
    swag              | PUID=1000
    swag              | PGID=1000
    swag              | TZ=America/New_York
    swag              | URL=*MY MAIN DOMAIN*
    swag              | SUBDOMAINS=*QUICK EDIT*
    swag              | EXTRA_DOMAINS=
    swag              | ONLY_SUBDOMAINS=false
    swag              | VALIDATION=dns
    swag              | CERTPROVIDER=
    swag              | DNSPLUGIN=cloudflare
    swag              | EMAIL=*QUICK EDIT MY EMAIL IS HERE*
    swag              | STAGING=false
    swag              | 
    swag              | Using Let's Encrypt as the cert provider
    swag              | SUBDOMAINS entered, processing
    swag              | SUBDOMAINS entered, processing
    swag              | Sub-domains processed are:  *QUICK EDIT THERE ARE LOTS OF SUBDOMAINS*
    swag              | E-mail address entered: *QUICK EDIT MY EMAIL IS THERE*
    swag              | dns validation via cloudflare plugin is selected
    swag              | Certificate exists; parameters unchanged; starting nginx
    swag              | Starting 2019/12/30, GeoIP2 databases require personal license key to download. Please retrieve a free license key from MaxMind,
    swag              | and add a new env variable "MAXMINDDB_LICENSE_KEY", set to your license key.
    swag              | [cont-init.d] 50-config: exited 0.
    swag              | [cont-init.d] 60-renew: executing... 
    swag              | The cert does not expire within the next day. Letting the cron script handle the renewal attempts overnight (2:08am).
    swag              | [cont-init.d] 60-renew: exited 0.
    swag              | [cont-init.d] 70-templates: executing... 
    swag              | [cont-init.d] 70-templates: exited 0.
    swag              | [cont-init.d] 90-custom-folders: executing... 
    swag              | chown: changing ownership of '/config/custom-cont-init.d': Operation not permitted
    swag              | chown: changing ownership of '/config/custom-services.d': Operation not permitted
    swag              | [cont-init.d] 90-custom-folders: exited 1.
    swag              | [cont-finish.d] executing container finish scripts...
    swag              | [cont-finish.d] done.
    swag              | [s6-finish] waiting for services.
    swag              | [s6-finish] sending all processes the TERM signal.
    swag              | [s6-finish] sending all processes the KILL signal and exiting.
    swag exited with code 1
     

  3. I wanted to start off by saying thank you for your hardwork and making using a reverse proxy easy to use,

    I am successfully using swag for a lot of different services in my home so i know swag is working great with https

     

     

    I can successfully access my Home-Assistant container from anywhere inside and outside my network with

     

    http://homeassistant.home.specialdomain.com:8123

     

     

     

    Questions

     

    I am trying to get home assistant to work with swag reverse proxy https exactly the same way as my 10 other apps that i have but it is failing with 

     

    502 Bad Gateway

     

    After searching the Home Assistant forums there seem to be some extra steps that need to be added to the config file but i am not 100% sure what to do

     

    Here are the 2 leading guides that explain how to use Lets Encrypt with HA from scratch

     

    https://community.home-assistant.io/t/reverse-proxy-using-nginx/196954

     

    https://community.home-assistant.io/t/nginx-reverse-proxy-set-up-guide-docker/54802

     

    Hopefully there is something that is missing in the default SWAG container homeassistant.subdomain.conf file that needs to be added to get this to work

     

     

    Here is my setup

    Docker-Compose File

     

    home-assistant: 
        image: homeassistant/home-assistant:stable
        container_name: home-assistant
        environment:
           - TZ=America/New_York
        volumes: 
          - /etc/localtime:/etc/localtime:ro
          - /media/username/nfsset/containers/home-assistant/config:/config
        ports:
          - 8123:8123
        #network_mode: host
        restart: unless-stopped

     

    Completely Default homeassistant.subdomain.conf

    # make sure that your dns has a cname set for homeassistant and that your homeassistant container is not using a base url
    
    server {
        listen 443 ssl;
        listen [::]:443 ssl;
    
        server_name homeassistant.*;
    
        include /config/nginx/ssl.conf;
    
        client_max_body_size 0;
    
        # 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 homeassistant;
            set $upstream_port 8123;
            set $upstream_proto http;
            proxy_pass $upstream_proto://$upstream_app:$upstream_port;
    
        }
    }

     

     

     

    Sorry for the lengthy post but i tried to be as complete as possible

     


     

     

  4. On 11/25/2020 at 10:36 PM, eetsumrobins said:

    I recently updated the container and I can no longer access the WebUI when VPN is active. Disabling VPN restores access. Any ideas on what might have changed? I've tried resetting WebUI ports but that hasn't helped any.

    this happened to me... looks like the place i was using doesnt work anymore so i picked a different location... the gui doesnt load if your vpn cant make a connection is what i am assuming

     

  5. 23 hours ago, francrouge said:

    Hi i'm not able to enter the default user and password

     

    I tried admin adminadmin.

     

    I tried to manually add my info its not working 

     

    Anyone has an idea ?

    Same thing happened to me... i just deleted the whole container and started over again... unless someone has a better idea

  6. On 11/20/2020 at 2:05 AM, Cytomax said:

    I have been using this container along with SWAG from linuxserver.io on my trusty Ubuntu 18.04.5 standalone server for at least a year if not longer.

    I dont remember the last time i touched the server much less updated it...its been working great, out of no where the webgui stopped working i get this error 

     

    502 Bad Gateway
    nginx/1.18.0

     

    My logs mentioned

     

    modprob: FATAL: Module iptable_mangle not found in directory /lib/modules/5.4.0-54-generic
     

    so then i used

     

    sudo /sbin/modprobe iptable_mangle

     

    and that got resolved but now its complaining about not loading the tun mod

     

    modprobe: FATAL: Module tun not found in directory /lib/modules/5.4.0-54-generic
     

    How do i fix this?

     

    Things i have tried to fix the problem

    upgraded to 20.04

    sudo chown -R 777 /entire container directory

    made sure the UID and GID in the docker compose file match the user issuing the docker-compose command

     

    EDIT

    I just found this

    https://www.kernel.org/doc/Documentation/networking/tuntap.txt

    I'm gonna read it and see what I find

     

     

    Thanks in Advance

     

     

     

    ROFL.. well i feel dumb... looks like qbitorrent wasnt starting because the bahamas.ovpn file wasnt working.. i changed to a different .ovpn file and everything loaded up.... oh well i learned a lot about modules

  7. 12 hours ago, Cytomax said:

    Yup i downloaded the zip file at

    https://www.privateinternetaccess.com/openvpn/openvpn-nextgen.zip

    pulled out a .pem .crt and .ovpn and placed them in the /config/openvpn/ directory, i did this like maybe a month ago and everything was working great then maybe a couple weeks ago it just stopped working.. the only thing i can think of is i updated the qbittorrent container via docker compose pull and it stopped working after that

    looks like bahamas isnt working, i changed to a different ovpn and it works now... bahamas must be bugged

  8. 3 hours ago, wgstarks said:

    Have you updated your openvpn servers? PIA is no longer using their legacy servers.

    https://github.com/binhex/documentation/blob/master/docker/faq/vpn.md

    See Q19. You may want to browse through the questions after that as well.

     

    Yup i downloaded the zip file at

    https://www.privateinternetaccess.com/openvpn/openvpn-nextgen.zip

    pulled out a .pem .crt and .ovpn and placed them in the /config/openvpn/ directory, i did this like maybe a month ago and everything was working great then maybe a couple weeks ago it just stopped working.. the only thing i can think of is i updated the qbittorrent container via docker compose pull and it stopped working after that

  9. On 11/19/2020 at 11:42 AM, liynus said:

    Hi all,

     Long time (1+ year) bnhex delugeVPN user with PIA VPN.

     Can't log into the web interface in the last week. It was working fine 2 weeks ago. IP address is the same.

     Went through the logs, but can't see the problem. Can someone more knowledgeable enlighten me?

     I also included the startup log with my pass/user stared out.

     

     PIA has given me some troubles with the the VPN connection which required replacing the OPENVPN files, but I don't think this browsing through the logs.

     

    Thanks all

    delugelog.txt 21.18 kB · 3 downloads startuplog.txt 9.83 kB · 4 downloads

    The same thing happened to me but i am running qbitorrentVPN bin hex .... i am using PIA VPN.... i never updated the server which is running kubuntu 18.04.5  i wonder if it was the latest build that has some issues

  10. I have been using this container along with SWAG from linuxserver.io on my trusty Ubuntu 18.04.5 standalone server for at least a year if not longer.

    I dont remember the last time i touched the server much less updated it...its been working great, out of no where the webgui stopped working i get this error 

     

    502 Bad Gateway
    nginx/1.18.0

     

    My logs mentioned

     

    modprob: FATAL: Module iptable_mangle not found in directory /lib/modules/5.4.0-54-generic
     

    so then i used

     

    sudo /sbin/modprobe iptable_mangle

     

    and that got resolved but now its complaining about not loading the tun mod

     

    modprobe: FATAL: Module tun not found in directory /lib/modules/5.4.0-54-generic
     

    How do i fix this?

     

    Things i have tried to fix the problem

    upgraded to 20.04

    sudo chown -R 777 /entire container directory

    made sure the UID and GID in the docker compose file match the user issuing the docker-compose command

     

    EDIT

    I just found this

    https://www.kernel.org/doc/Documentation/networking/tuntap.txt

    I'm gonna read it and see what I find

     

     

    Thanks in Advance

     

     

     

  11. welp that settles it...

     

    i only changed from qbittorrent because i was too dumb to realize i needed the nextget vpn files and not the old files

    so i tried deluge and got like 8 megaBytes per second

     

    went back to qbittorrent and downloaded 4 Ubuntu ISO's and got to 32 megaBytes without breaking a sweat

     

    its absolutely possible different times of the day may of caused this bottle neck but w/e i like the interface of qbittorrent better anways 

     

    Thanks binhex for great work!

    2020-10-02_17-16.png

  12. 2 minutes ago, Burizado said:

    OK, I have been reading through all the new posts regarding the nextgen setups.  I updated my docker which was successful.  I can connect successfully using legacy ovpn files from PIA.

     

    Deluge: 2.0.4.dev38
    PIA ovpn files: legacy
    Port Forward: no
    Errors: none; connects fine and everything resumes

     

    I downloaded the nextgen files via the instructions form Q19 in the VPN Docket FAQ.  I removed the old ovpn and cert files and replaced them with the nextgen files.  I also changed the STRICT_PORT_FORWARD variable to 'yes' since it was set to 'no' while using the legacy files.

     

    When I try to start my docker I get the following error in the log:
    2020-10-02 10:11:11,741 DEBG 'start-script' stdout output:
    Fri Oct 2 10:11:11 2020 AUTH: Received control message: AUTH_FAILED

     

    I saw Q16 in the VPN Docker FAQ which states my VPN_USER and/or VPN_PASS are not correct.  I regenerated my username and password from the PIA account site and updated them in the docker settings, but I am still receiving the error.  I even failed back to legacy ovpn files, setting STRICT_PORT_FORWARD to 'no', and everything works fine.  So I am thinking my user ID and password are good/valid since they work with the legacy files just fine.  A couple of questions to those with PIA and have it working with nextgen files:

     

    1. Did you download the NextGen zip from the link labeled 'OpenVPN Configuration Files (Recommended Default)'?  The step in Q19 doesn't specify which set of files to use, but I was assuming the top link.

    134302754_PIANextGenFiles.png.a42c0a9c40f425238092aeaccff9de1a.png

     

    2. Are you using the 'PPTP/L2TP/SOCKS Username and Password' from PIA?  I wasn't sure if I should be using a different username and password for VPN_USER and VPN_PASS for the NextGen setup.  This is what works with my legacy ovpn files.

    2061471121_PIACredentialArea.png.cbb88e97e13d68b313c088bc1f7d9134.png

     

    3. Are there any other settings you need to change outside of what is stated in Q19 from the VPN Docket FAQ?  I am assuming no or else it would be called out in those steps to switch over to NextGen.


    I also tested setting STRICT_PORT_FORWARD variable to 'yes' with legacy files, and another test with nextgen files and the setting it to 'no'.  Both were still failures and I assumed neither of these were the ideal setup so I am not working on troubleshooting those failures.

     

    I am attaching my logs for legacy files port forwarding set to 'no', and nextgen files port forwarding set to 'yes' just if anyone wants to look at anything not stated here in my working and not working logs.

    LegacyPortFwdNo.txt 103.8 kB · 0 downloads NextgenPortFwdYes.txt 139.39 kB · 0 downloads

     

    So I am not sure if I need something in my PIA account flagged so I can use the NextGen servers or something else with my PIA account not setup correctly.  I know I am grasping at straws but I am not sure what is going on here.  I can open a ticket with PIA but I wanted to make sure what I am doing is correct before having them check my account on their side.

     

    Any help from anyone would be....well....helpful. :)
    Thanks.

    which ovpn file did you pick (what location)? is it one of the approved locations that it mentions in the log when starting deluge

    • Thanks 1
  13. 4 hours ago, TrueImpulse said:

    Just to confirm, are your speeds in megabits or megabytes. I just download an Ubuntu torrent at between 10-12 megabytes per second which is about 80-100 megabits per second. This is on a one gigabit connection using PIA connected to Canada. Deluge displays speeds in bytes (KiB/s-MiB/s) not bits. If 6-12 MiB/s is what your seeing displayed in the webUI that sounds right.

    pretty sure its megaBytes per second... which isnt terrible if im downloading 1 torrent with that but if i download multiple Linux ISO i cant pass a total of 8ish which is pretty bad.. im going to try qbittorrent and see if there is any difference

  14. 2 hours ago, sigfreund said:

    I switched from binhex-delugevpn to binhex-qbittorrentvpn and have been getting much better download speeds.  I went from 10 - 15 MBps to 30 - 40 MBps.

    i used to use qbittorrent all the time but i stopped torrenting for like a month and then when i came back it didnt work when i tried after the nextgen switch so i went to deluge, i realized i was using the old openvpnconfig and i am going to retry qbittorrent with the new nextgen opnenvpn config

    https://www.privateinternetaccess.com/openvpn/openvpn-nextgen.zip

     

    the biggest thing i miss about qbittorrent is total traffic summary as well as total download and total upload.. i cant find a way to enable it on deluge

     

     

  15. 2 hours ago, Merijeek said:

    OK, well, in that case I did follow the force instructions. I'm showing: 1.3.15_18_ge050905b2-1-04. 

     

    I run the force update and I see: 

     

    image.png.e7ba9236c0a451f208d70abc94acf96e.png

     

    ...ending with:

     

    image.png.385ebca05425578429863479f67881a2.png

     

    ...and then just the same loop:

     

    
    020-10-02 09:44:07,841 DEBG 'start-script' stdout output:
    [warn] PIA endpoint 'ca-montreal.privacy.network' is not in the list of endpoints that support port forwarding, DL/UL speeds maybe slow
    [info] Please consider switching to one of the endpoints shown below
    
    2020-10-02 09:44:07,841 DEBG 'start-script' stdout output:
    [info] List of PIA endpoints that support port forwarding:-
    [info] ca-toronto.privateinternetaccess.com
    [info] ca-montreal.privateinternetaccess.com
    [info] ca-vancouver.privateinternetaccess.com
    
    2020-10-02 09:44:07,841 DEBG 'start-script' stdout output:
    [info] de-berlin.privateinternetaccess.com
    [info] de-frankfurt.privateinternetaccess.com
    [info] france.privateinternetaccess.com
    [info] czech.privateinternetaccess.com
    [info] spain.privateinternetaccess.com
    [info] ro.privateinternetaccess.com
    [info] israel.privateinternetaccess.com
    
    2020-10-02 09:44:07,870 DEBG 'start-script' stdout output:
    [info] Attempting to curl http://209.222.18.222:2000/?client_id=490c17333dbc8f1811cf0120ce36b8f421d35b0a84a9159ee97a5f84ae137acf...
    
    2020-10-02 09:44:07,974 DEBG 'start-script' stdout output:
    [warn] Response code 000 from curl != 2xx
    [warn] Exit code 7 from curl != 0
    [info] 12 retries left
    [info] Retrying in 10 secs...
    
    2020-10-02 09:44:18,079 DEBG 'start-script' stdout output:
    [warn] Response code 000 from curl != 2xx
    [warn] Exit code 7 from curl != 0
    [info] 11 retries left
    [info] Retrying in 10 secs...
    
    2020-10-02 09:44:29,245 DEBG 'start-script' stdout output:
    [warn] Response code 000 from curl != 2xx
    [warn] Exit code 7 from curl != 0
    [info] 10 retries left
    [info] Retrying in 10 secs...
    
    2020-10-02 09:46:00,444 DEBG 'start-script' stdout output:
    [warn] Response code 000 from curl != 2xx
    [warn] Exit code 7 from curl != 0
    [info] 9 retries left
    [info] Retrying in 10 secs...
    
    2020-10-02 09:46:10,551 DEBG 'start-script' stdout output:
    [warn] Response code 000 from curl != 2xx
    [warn] Exit code 7 from curl != 0
    [info] 8 retries left
    [info] Retrying in 10 secs...
    
    2020-10-02 09:46:40,666 DEBG 'start-script' stdout output:
    [warn] Response code 000 from curl != 2xx
    [warn] Exit code 7 from curl != 0
    [info] 7 retries left
    [info] Retrying in 10 secs...
    
    2020-10-02 09:46:50,775 DEBG 'start-script' stdout output:
    [warn] Response code 000 from curl != 2xx
    [warn] Exit code 7 from curl != 0

     

    By looking at your log you are showing the List of PIA Endpoints associated with the OLD open vpn config

    Here is the new link for the "NEXTGEN" config

    https://www.privateinternetaccess.com/openvpn/openvpn-nextgen.zip

    I literally realized this 12 hours ago after bashing my head for a few hours on why qbittorrent wasnt working

     

    nextgen has a lot more end points

  16. I have a 1 gig fiber connection

    I live in the USA

    I used to run the old arch-qbittorrentvpn using PIA and selecting France as the PIA endpoint and i would easily get 100megabits per second or more which is fine for me before the "next gen" crap

     

    I am trying Deluge now since it seems to have a lot more pulls than qbittorrent but i am only getting like 6-8 megabits per second and thats after trying to download a few Linux ISOs all at the same time to see my maximum using Mexico, France, 

     

    Bahamas seem to get around 12 megabits per second for me

     

    Deluge seems to connect fine when i am looking at the logs so thats not the problem

     

    What is a recommended VPN to use since i think PIA is not any good any more

     

    Thanks in advance and for all the hardwork Binhex

  17. Honestly I was underwhelmed by how this thing works...

    In my mind I would have a bunch of isos stored in a folder and I can boot off of any of them with my computer in reality it's a special kind of image and I was not able to figure out how to boot off a Windows ISO so I stopped using it if you're okay with these issues then I guess keep looking but maybe after you understand this she may not even care to find the answer

  18. Question: I cant find my predownloaded ISO files (Kubuntu) when i PXE boot off of my netboot.xyz docker container

    I can see them in the netboot.xyz web menu under Untracked Assets but cant find them when PXE booting from the desktop

     

    docker-compose.yml

    version: "2"

    services: netbootxyz:

    image: linuxserver/netbootxyz

    container_name: netbootxyz

    environment:

    - PUID=1000

    - PGID=1000

    - MENU_VERSION=1.9.9 #optional volumes:

    - /media/username/nfsset/containers/netbootxyz/config:/config

    - /media/username/smbshare/Software/ISO/Linux/:/assets

    #optional ports:

    - 3000:3000

    - 69:69/udp

    - 8080:80 #optional

    restart: unless-stopped

     

     

     

     

    netboot.xyz web menu

     

    v2BlOiN.png

     

     

    Where are my Untracked Assets located?

     

    mibLayU.png

     

     

     

     

    I setup a netboot.xyz docker container using https://hub.docker.com/r/linuxserver/netbootxyz

    I am able to PXE boot a computer off of my netboot.xyz docker container

    If i go to 192.168.0.10:3000 on my web browser > Local Assets

    I am able to see my custom ISO's under the "Untracked Assets"

    I am not able to find my custom (Kubuntu) ISO in the menu when PXE booting

    What am i missing

    Thanks in Advance

     

     

  19. Hello all i have come into possession of a few Green Drives from Western Digital and would like to change the the idle time to 5 minutes as recommended by some people.

     

    I have searched high and low and cant find the download link for WD's wdidle3.exe.

     

    Every time i try to go to this website to download the wdidle3.exe i get forwarded to a generic download page for WD.

     

    http://support.wdc.com/product/download.asp?groupid=609&sid=113

     

    forwards me here

     

    http://support.wdc.com/downloads.aspx?DL

     

    I found this link for an open source solution but i would just prefer the official WD version

    http://idle3-tools.sourceforge.net/

     

     

    Any direct links to the official download for wdidle3.exe

     

    Thanks in Advance