Jump to content

skyline7349

Members
  • Posts

    99
  • Joined

  • Last visited

Posts posted by skyline7349

  1. 14 hours ago, ljm42 said:

     

    Not sure what the issue was, but keep in mind that the password you set by running "passwd" will not persist across reboots.

     

    It sounds like you have access to the webgui now, so be sure to go to the Users page and set a password for root using the webgui. Changes mae there will persist.

    you were right, i rebooted and the password was reset, So i did passwd to get into UI again and updated the password in the users tab, works fine now. Thank you

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

    That means it's and unclean shutdown, when this happens Unraid saves the diags in the flash drive (logs folder), please post latest ones.

    Hey thanks for getting back to me. I actually found the post below and i changed my timeout from 60 seconds to 120 and when i bought it back up the parity wasnt running :)

     

    • Like 1
  3. Hello, Every night i run a "powerdown" command at around 2am. Then i run a wake on lan at around 9AM. It seems everytime i start it runs a parity check. Is there any way to stop this?

     

    I have schedule setup for Custom > Sunday > First Week > 3AM(sunday i make sure to turn on at 2am instead of 9am) > Every month

  4. I it just me or is it annoying that the Username and password fields are on different pages and the focus isnt on the boxes. I have to click username box input username then go to next page and click the password box then put password again. Is there a way to change this?

  5. How do i route all data through the VPN? When i connect to VPN and check IP its same as when not connected. 

     

    **EDIT**
    So i see theres a redirect-gateway. I enabled this and i can still access local websites but i cant access any other website.So then i changed the DHCP server to google and now im showing the VPN IP. Just put this here incase someone else is in need.

  6. So looks like i am having issues. I cant connect to my VM's via VNC.

     

    I have 2 VM's. Windows 7 and Ubuntu Server. I can ssh into the ubuntu server but i cant load the VNC and the windows 7 i cant RDP or VNC into it. Are there settings that need to be changed for the vms?

     

    I disabled C-state and i enabled virtualization.

     

    **Edit**

    It seems to have been a chrome issue. Cleared Cache and cookies and now it works :)

  7. Is it just me or does the container not work? Im getting this in log.

    2017-06-05 11:41:17,644 DEBG 'flexget-script' stdout output:
    05.06.2017 11:41:17 : Starting DAEMON
    
    2017-06-05 11:41:17,645 INFO success: flexget-script entered RUNNING state, process has stayed up for > than 0 seconds (startsecs)
    2017-06-05 11:41:19,901 DEBG 'flexget-script' stdout output:
    2017-06-05 11:41 CRITICAL manager [/] The keys `api`, `webui` are not valid here.
    
    2017-06-05 11:41:19,901 DEBG 'flexget-script' stdout output:
    2017-06-05 11:41 CRITICAL manager Failed to load config file: Did not pass schema validation.
    
    
    2017-06-05 11:41:19,901 DEBG 'flexget-script' stderr output:
    Could not start manager: Did not pass schema validation.
    
    2017-06-05 11:41:21,795 DEBG 'flexget-script' stdout output:
    2017-06-05 11:41 CRITICAL manager [/] The keys `api`, `webui` are not valid here.
    
    2017-06-05 11:41:21,796 DEBG 'flexget-script' stdout output:
    2017-06-05 11:41 CRITICAL manager Failed to load config file: Did not pass schema validation.
    
    
    2017-06-05 11:41:21,796 DEBG 'flexget-script' stderr output:
    Could not start manager: Did not pass schema validation.
    
    2017-06-05 11:41:21,901 DEBG fd 8 closed, stopped monitoring <POutputDispatcher at 47863564692728 for <Subprocess at 47863564692368 with name flexget-script in state RUNNING> (stderr)>
    2017-06-05 11:41:21,901 DEBG fd 6 closed, stopped monitoring <POutputDispatcher at 47863564692440 for <Subprocess at 47863564692368 with name flexget-script in state RUNNING> (stdout)>
    2017-06-05 11:41:21,902 INFO exited: flexget-script (exit status 1; not expected)
    2017-06-05 11:41:21,902 DEBG received SIGCLD indicating a child quit

     

  8. So im trying to configure proxy pass for this docker to point example.com/request to my plex request docker. Ive been looking on this forum and internet and no solutions seem to work. I made my server config very simple

     

    server {
    listen 80 default_server;
    server_name _;
    location / {
    	#include /config/nginx/proxy.conf;
            proxy_pass http://192.168.1.90:3000;
    }
    #return 301 https://$host$request_uri;
    }

     

    This works and shows my the plex request page.

     

    When i make it this.

     

    server {
    listen 80 default_server;
    server_name _;
    location /request {
    	#include /config/nginx/proxy.conf;
            proxy_pass http://192.168.1.90:3000;
    }
    #return 301 https://$host$request_uri;
    }

     

    it doesnt work. Ive also tried with location as

    /request/

     

    That didnt work either. So my letsencrypt docker is setup to have external port of 83. When i go to http://192.168.1.90:83/request/ for some reason it redirects the url to http://192.168.1.90/request/ which isnt correct.

     

    Does this have something to do with setting up other proxy headers?

     

  9. This config works for me with aptalca's excellent nginx-letsencrypt container accessing nextcloud on nextcloud.server.com using this container on port 444

     

    Can upload files, tested with one 1.5gb sample and not getting any security warnings in nextcloud and getting an A+ on ssllabs at the moment.  Also syncs via my Android client perfectly.

     

    The only changes I've made to nextcloud are an update to 10.0, the ones detailed in my guide and changed the file upload size limit via the webui.

     

    X6wVj6p.png

     

    tCBaylJ.png

     

    server {
    listen 80;
    
    listen 443 ssl;
    
    root /config/www;
    index index.html index.htm index.php;
    
    server_name nextcloud.server.com;
    
    ###SSL Certificates
    ssl_certificate /config/keys/fullchain.pem;
    ssl_certificate_key /config/keys/privkey.pem;
    
    ###Diffie–Hellman key exchange ###
    ssl_dhparam /config/nginx/dhparams.pem;
    ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
    
    
            ###Extra Settings###
    ssl_prefer_server_ciphers on;
    ssl_session_cache shared:SSL:10m;
    
            ### Add HTTP Strict Transport Security ###
    add_header Strict-Transport-Security "max-age=63072000; includeSubdomains";
    add_header Front-End-Https on;
    
    client_max_body_size 0;
    
    location / {
        proxy_pass https://192.168.0.1:444/;
      }
    }

     

    Hey, I dont quite understand this. I have letsencrypt running on 80 and 443. Then i have nextcloud running on 444 like you said. Im trying to do it like server.com/nextcloud not nextcloud.server.com is this an issue? The config you provided is that for the letsencrypt server?

  10. You've posted in so many places I can't remember what I've tried.  But as you had issues with three containers I'm gonna bet it's one issue causing all three problems and I'm gonna further bet, it's a permissions thing.  Take a look at the transmission thread and post some more info for rutorrent, same as I requested for transmission a couple of posts back.

     

    Sent from my LG-H815 using Tapatalk

     

    Ok ill post the information for RUtorrent since i gave up on Transmission.

     

    Run Command

    root@localhost:# /usr/local/emhttp/plugins/dynamix.docker.manager/scripts/docker run -d --name="rutorrent" --net="bridge" -e TZ="America/Los_Angeles" -e HOST_OS="unRAID" -e "PUID"="99" -e "PGID"="100" -p 81:80/tcp -p 51413:51413/tcp -p 6881:6881/udp -v "/mnt/user/Main/Downloads/Rutorrent":"/downloads":rw -v "/mnt/user/Main/Torrents/":"/Torrents":rw -v "/mnt/user/appdata/rutorrent":"/config":rw linuxserver/rutorrent

     

    Version

    IMAGE ID [latest]: Pulling from linuxserver/rutorrent. 
    Status: Image is up to date for linuxserver/rutorrent:latest

     

    Log

    Brought to you by linuxserver.io
    We gratefully accept donations at:
    https://www.linuxserver.io/donations/
    -------------------------------------
    GID/UID
    -------------------------------------
    User uid: 99
    User gid: 100
    -------------------------------------
    
    [cont-init.d] 10-adduser: exited 0.
    [cont-init.d] 20-config: executing...
    [cont-init.d] 20-config: exited 0.
    [cont-init.d] done.
    [services.d] starting services
    [services.d] done.

     

     

    File Permissions

    drwxr-xr-x 1 nobody users 44 Jan 15 09:39 log/
    drwxr-xr-x 1 nobody users 32 Jan 15 09:39 rutorrent/
    drwxr-xr-x 1 nobody users 20 Jan 15 09:39 nginx/
    drwxr-xr-x 1 nobody users 48 Jan 15 09:39 rtorrent/
    drwxr-xr-x 1 nobody users 14 Jan 15 09:39 php/
    ./log
    total 0
    drwxr-xr-x 1 nobody users   0 Jan 15 09:39 rutorrent/
    drwxr-xr-x 1 nobody users 176 Jan 15 09:39 nginx/
    drwxr-xr-x 1 nobody users  24 Jan 15 09:39 rtorrent/
    ./log/nginx
    total 12200
    -rw-r--r-- 1 nobody users        0 Jan 15 09:39 rutorrent.rpc2.error.log
    -rw-r--r-- 1 nobody users      509 Jan 15 09:41 rutorrent.error.log
    -rw-r--r-- 1 nobody users   939374 Jan 16 10:36 rutorrent.rpc2.access.log
    -rw-r--r-- 1 nobody users 11539759 Jan 16 10:37 rutorrent.access.log
    ./log/rtorrent
    total 4
    -rw-r--r-- 1 nobody users 130 Jan 16 10:33 rtorrent.log
    ./log/rutorrent
    total 0
    ./nginx
    total 4
    -rw-r--r-- 1 nobody users 2129 Jan 15 09:39 nginx.conf
    ./php
    total 72
    -rw-r--r-- 1 nobody users 70558 Jan 15 09:39 php.ini
    ./rtorrent
    total 4
    -rw-r--r-- 1 nobody users 1244 Jan 15 14:40 rtorrent.rc
    drwxr-xr-x 1 nobody users 3824 Jan 16 10:33 rtorrent_sess/
    
    ./rutorrent
    total 0
    drwxr-xr-x 1 nobody users  48 Jan 15 09:39 profiles/
    drwxr-xr-x 1 nobody users 138 Jan 15 09:39 settings/
    ./rutorrent/settings
    total 24
    drwxr-xr-x 1 nobody users    0 Jan 15 09:39 users/
    -rwxr-xr-x 1 nobody users  522 Jan 15 09:39 access-swap.sh*
    -rw-r--r-- 1 nobody users  452 Jan 15 09:39 access.ini
    -rw-r--r-- 1 nobody users  441 Jan 15 09:39 access_no
    -rw-r--r-- 1 nobody users  453 Jan 15 09:39 access_yes
    -rw-r--r-- 1 nobody users 2609 Jan 15 09:39 config.php
    -rw-r--r-- 1 nobody users  809 Jan 15 09:39 plugins.ini
    ./rutorrent/settings/users
    total 0
    ./rutorrent/profiles
    total 0
    drwxrwxrwx 1 nobody users   0 Jan 15 09:39 torrents/
    drwxr-xr-x 1 nobody users   6 Jan 15 09:39 users/
    drwxrwxrwx 1 nobody users   0 Jan 16 10:30 tmp/
    drwxrwxrwx 1 nobody users 292 Jan 16 10:35 settings/
    ./rutorrent/profiles/settings
    total 112
    -rwxr-xr-x 1 nobody users    56 Jan 15 09:41 cpu.dat*
    drwxr-xr-x 1 nobody users     0 Jan 15 10:13 labels/
    drwxr-xr-x 1 nobody users     0 Jan 15 13:27 trackers/
    -rwxr-xr-x 1 nobody users 10337 Jan 15 14:20 history_data.dat*
    drwxrwxrwx 1 nobody users    10 Jan 16 10:30 rss/
    drwxrwxrwx 1 nobody users    68 Jan 16 10:30 trafic/
    -rw-rw-rw- 1 nobody users  5557 Jan 16 10:34 loginmgr.dat
    -rw-rw-rw- 1 nobody users  1765 Jan 16 10:34 scheduler.dat
    -rw-rw-rw- 1 nobody users 43060 Jan 16 10:34 extsearch.dat
    -rw-rw-rw- 1 nobody users 24638 Jan 16 10:34 rtorrent.dat
    -rw-r--r-- 1 nobody users  3116 Jan 16 10:34 uisettings.json
    -rw-rw-rw- 1 nobody users    66 Jan 16 10:35 cookies.dat
    -rw-rw-rw- 1 nobody users   387 Jan 16 10:35 xmpp.dat
    drwxr-xr-x 1 nobody users   140 Jan 16 10:35 httprpc/
    drwxrwxrwx 1 nobody users     0 Jan 16 10:37 erasedata/
    ./rutorrent/profiles/settings/erasedata
    total 0
    ./rutorrent/profiles/settings/rss
    total 0
    drwxrwxrwx 1 nobody users 8 Jan 16 10:34 cache/
    ./rutorrent/profiles/settings/rss/cache
    total 4
    -rw-rw-rw- 1 nobody users 159 Jan 16 10:34 info
    ./rutorrent/profiles/settings/trafic
    total 8
    -rwxr-xr-x 1 nobody users 597 Jan 16 10:30 last.csv*
    drwxrwxrwx 1 nobody users 880 Jan 16 10:30 torrents/
    -rwxr-xr-x 1 nobody users 926 Jan 16 10:30 global.csv*
    drwxrwxrwx 1 nobody users 200 Jan 16 10:30 trackers/
    ./rutorrent/profiles/settings/labels
    total 0
    ./rutorrent/profiles/settings/trackers
    total 0
    ./rutorrent/profiles/torrents
    total 0
    ./rutorrent/profiles/users
    total 0
    drwxr-xr-x 1 nobody users 32 Jan 15 09:39 abc/
    ./rutorrent/profiles/users/abc
    total 0
    drwxr-xr-x 1 nobody users   0 Jan 15 09:39 torrents/
    drwxr-xr-x 1 nobody users 168 Jan 16 10:32 settings/
    ./rutorrent/profiles/users/abc/settings
    total 88
    drwxr-xr-x 1 nobody users    10 Jan 15 14:00 rss/
    drwxr-xr-x 1 nobody users    68 Jan 15 14:00 trafic/
    -rwxr-xr-x 1 nobody users  4459 Jan 15 14:02 history_data.dat*
    -rwxr-xr-x 1 nobody users  5557 Jan 16 10:32 loginmgr.dat*
    -rwxr-xr-x 1 nobody users  1765 Jan 16 10:32 scheduler.dat*
    -rwxr-xr-x 1 nobody users 43060 Jan 16 10:32 extsearch.dat*
    -rwxr-xr-x 1 nobody users 24289 Jan 16 10:32 rtorrent.dat*
    drwxr-xr-x 1 nobody users     0 Jan 16 10:33 erasedata/
    ./rutorrent/profiles/users/abc/settings/erasedata
    total 0
    ./rutorrent/profiles/users/abc/settings/rss
    total 0
    drwxr-xr-x 1 nobody users 8 Jan 16 10:32 cache/
    ./rutorrent/profiles/users/abc/settings/rss/cache
    total 4
    -rwxr-xr-x 1 nobody users 159 Jan 16 10:32 info*
    ./rutorrent/profiles/users/abc/settings/trafic
    total 8
    -rwxr-xr-x 1 nobody users 497 Jan 15 14:00 last.csv*
    drwxr-xr-x 1 nobody users 352 Jan 15 14:00 torrents/
    -rwxr-xr-x 1 nobody users 504 Jan 15 14:00 global.csv*
    drwxr-xr-x 1 nobody users 200 Jan 15 14:00 trackers/
    ./rutorrent/profiles/users/abc/settings/trafic/trackers
    total 20
    -rwxr-xr-x 1 nobody users 502 Jan 15 14:00 iptorrents.com.csv*
    -rwxr-xr-x 1 nobody users 502 Jan 15 14:00 0.0.1.stackoverflow.tech.csv*
    -rwxr-xr-x 1 nobody users 502 Jan 15 14:00 empirehost.me.csv*
    -rwxr-xr-x 1 nobody users 473 Jan 15 14:00 torrentday.com.csv*
    -rwxr-xr-x 1 nobody users 473 Jan 15 14:00 jumbohostpro.eu.csv*
    ./rutorrent/profiles/users/abc/settings/trafic/torrents
    total 16
    -rwxr-xr-x 1 nobody users 456 Jan 15 14:00 01E3A49E19A9A16DD41991AB4A4F3066581A8B7B.csv*
    -rwxr-xr-x 1 nobody users 473 Jan 15 14:00 6123109A84456AD757E6FE9810D97F8EAEC0D553.csv*
    -rwxr-xr-x 1 nobody users 500 Jan 15 14:00 6A4915C6CDECF240BFE5D45A878168B5D6FEF520.csv*
    -rwxr-xr-x 1 nobody users 456 Jan 15 14:00 971489E5943989A583305B177409A1D7A94EC078.csv*
    ./rutorrent/profiles/users/abc/torrents
    total 0
    ./rutorrent/profiles/tmp
    total 0
    

     

  11. skyline7349, you need to edit the /mnt/user/appdata/rutorrent/rtorrent/rtorrent.rc for changing some of the settings.

     

    I'm not sure that gets to the root of his problems, he's got issues with several docker containers and I'm willing to bet there is one root cause.

     

    Yea i dont know whats causing this but i gave up. I just manually edit the config files now. Ive deleted my entire array, formatted the flash drive with an over version of unraid. Nothing seems to fix it. Its only for transmission and rutorrent. Ill keep checking back to see if anyone else has this problem.

     

    CHBMB youre saying you pull container for rutorrent, enter web ui, make changes to settings, reload container, and settings are still changed?

  12. Hi there :)

     

    I built my new unRAID server 2 days ago and am very happy with it.

    I just have one question - did anyone encounter problems with the rutorrent docker?

    When my torrents have HTTPS trackers, it just times out. When I change them to http it works as normal.

    I already tried those rtorrent settings that didn't work: 'network.http.capath.set = /etc/ssl/certs', and 'network.http.ssl_verify_peer.set = 0'

    I verified the trackers are online when it timed out (3 different trackers, all of them works on my workstation).

     

    Thanks a lot in advance and hope to contribute to the community in the future!

     

    Im having issues where bother rutorrent and transmission dont save settings. I see the UI sending the request but the settings file doesnt change.

    -rw------- 1 nobody users 2183 Jan 15 01:50 settings.json

     

     

     

×
×
  • Create New...