Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Goofyman23

Members
  • Joined

  • Last visited

  1. I setup Adguard about 4 days ago and got it up and running without issues. For some reason, I can no longer access the WebUI, I cannot ping the UI port, nor do I see it in my router's DHCP client list. I've restarted the container and see no errors in issue in the log. I setup an IP in the container and then set it as a static IP in my router. And based on the docker log, it's still doing its job. Test-Netconnection: WARNING: TCP connect to (192.168.50.235 : 3000) failed PingSucceeded : True PingReplyDetails (RTT) : 0 ms TcpTestSucceeded : False Not sure what to do!
  2. I appear to have a working container now (big thank you to @wgstarks). Is there a way to verify everything is indeed tunnelling properly via my VPN?
  3. Where do you see it is showing the current version? For giggles, I wiped out any orphaned images as well as appdata\binhex-qbittorrentvpn then re-pulled using binhex/arch-qbittorrentvpn:4.6.0-1-01 This is my run: I also tried following Q4 using port 8081 and two things occur: The WebUI still wants to goto port 8080, and still fails to reach the login if I manually point to 8081 in the URL. I even restarted the entire box and it still wants to do the same thing. netstat shows 8080 is listening netstat -a | grep "8080" tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN tcp6 0 0 [::]:8080 [::]:* LISTEN
  4. docker run -d --name='binhex-qbittorrentvpn' --net='bridge' --privileged=true -e TZ="America/New_York" -e HOST_OS="Unraid" -e HOST_HOSTNAME="AdamSavage" -e HOST_CONTAINERNAME="binhex-qbittorrentvpn" -e 'VPN_ENABLED'='yes' -e 'VPN_USER'= -e 'VPN_PASS'= -e 'VPN_PROV'='pia' -e 'VPN_CLIENT'='openvpn' -e 'VPN_OPTIONS'='' -e 'STRICT_PORT_FORWARD'='no' -e 'ENABLE_PRIVOXY'='no' -e 'WEBUI_PORT'='8080' -e 'LAN_NETWORK'='192.168.50.0/24' -e 'NAME_SERVERS'='84.200.69.80,37.235.1.174,1.1.1.1,37.235.1.177,84.200.70.40,1.0.0.1' -e 'VPN_INPUT_PORTS'='' -e 'VPN_OUTPUT_PORTS'='' -e 'DEBUG'='false' -e 'UMASK'='000' -e 'PUID'='99' -e 'PGID'='100' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:8080]/' -l net.unraid.docker.icon='https://raw.githubusercontent.com/binhex/docker-templates/master/binhex/images/qbittorrent-icon.png' -p '6881:6881/tcp' -p '6881:6881/udp' -p '8118:8118/tcp' -v '/mnt/user/appdata/data':'/data':'rw' -v '/mnt/user/appdata/binhex-qbittorrentvpn':'/config':'rw' --sysctl="net.ipv4.conf.all.src_valid_mark=1" 'binhex/arch-qbittorrentvpn:4.6.0-1-01' 6a0480f9e6a17470587918828c652581c2ba08413fc2b3308b818b1fd83b43c5 The command finished successfully! Correct. supervisord.log
  5. Appreciate your help so far, especially for combing through those. I changed this to no, but I still cannot access the webUI. Do I need to adjust any of the default values for these: Host Port 1 (Container Port: 6881) Host Port 2 (Container Port: 6881) Host Port 4 (Container Port: 8118) My gut tells me something on my network is blocking me from reaching 8080, but not sure what else to do. I have no other containers using port 8080 and I'm pretty sure I've opened it correctly in Defender.
  6. Unfortunately same results when I used the older version mentioned in that thread. I get the connection refused (Chrome) and no prompt for login. I also tried opening TCP 8080 in Windows Firewall, and that didn't make any difference (still cannot ping). Attached my log. supervisord.log
  7. I assume this is for the webUI/remote login? There's nothing to set in the container other than VPN credentials. I'm not prompted for anything when trying to reach the webUI; just receive an 'ERR_CONNECTION_REFUSED'. Also, FWIW, I cannot ping the port either Test-NetConnection -ComputerName 192.168.50.139 -port 8080 WARNING: TCP connect to (192.168.50.139 : 8080) failed ComputerName : 192.168.50.139 RemoteAddress : 192.168.50.139 RemotePort : 8080 InterfaceAlias : Wi-Fi SourceAddress : 192.168.50.220 PingSucceeded : True PingReplyDetails (RTT) : 2 ms TcpTestSucceeded : False
  8. I've just installed binhex-qbittorrentvpn and cannot connect to the webUI or get radarr to connect to it. The webUI gives a connection refused on port 8080 (tried in Chrome/Brave/Edge) and I confirmed that is the configured port in the container. I've tried using localhost and the IP of the unRAID box, but both do the same thing. Additionally, I've configured it using PIA's provided OpenVPN config which appears to have propagated in the container. I see no errors in the qb logs and this is radarr's stacktrace: [Warn] RadarrErrorPipeline: Invalid request Validation failed: -- Host: Unable to connect to qBittorrent [Error] QBittorrent: Unable to test qBittorrent [v5.2.6.8376] System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.IO.IOException: Unable to read data from the transport connection: Connection reset by peer. ---> System.Net.Sockets.SocketException (104): Connection reset by peer --- End of inner exception stack trace --- at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.ThrowException(SocketError error, CancellationToken cancellationToken) at System.Net.Sockets.Socket.AwaitableSocketAsyncEventArgs.System.Threading.Tasks.Sources.IValueTaskSource<System.Int32>.GetResult(Int16 token) at System.Net.Http.HttpConnection.InitialFillAsync(Boolean async) at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) --- End of inner exception stack trace --- at System.Net.Http.HttpConnection.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) at System.Net.Http.AuthenticationHelper.SendWithNtAuthAsync(HttpRequestMessage request, Uri authUri, Boolean async, ICredentials credentials, Boolean isProxyAuth, HttpConnection connection, HttpConnectionPool connectionPool, CancellationToken cancellationToken) at System.Net.Http.HttpConnectionPool.SendWithVersionDetectionAndRetryAsync(HttpRequestMessage request, Boolean async, Boolean doRequestAuth, CancellationToken cancellationToken) at System.Net.Http.AuthenticationHelper.SendWithAuthAsync(HttpRequestMessage request, Uri authUri, Boolean async, ICredentials credentials, Boolean preAuthenticate, Boolean isProxyAuth, Boolean doRequestAuth, HttpConnectionPool pool, CancellationToken cancellationToken) at System.Net.Http.DiagnosticsHandler.SendAsyncCore(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) at System.Net.Http.DecompressionHandler.SendAsync(HttpRequestMessage request, Boolean async, CancellationToken cancellationToken) at System.Net.Http.HttpClient.<SendAsync>g__Core|83_0(HttpRequestMessage request, HttpCompletionOption completionOption, CancellationTokenSource cts, Boolean disposeCts, CancellationTokenSource pendingRequestsCts, CancellationToken originalCancellationToken) at NzbDrone.Common.Http.Dispatchers.ManagedHttpDispatcher.GetResponseAsync(HttpRequest request, CookieContainer cookies) in ./Radarr.Common/Http/Dispatchers/ManagedHttpDispatcher.cs:line 105 at NzbDrone.Common.Http.HttpClient.ExecuteRequestAsync(HttpRequest request, CookieContainer cookieContainer) in ./Radarr.Common/Http/HttpClient.cs:line 157 at NzbDrone.Common.Http.HttpClient.ExecuteAsync(HttpRequest request) in ./Radarr.Common/Http/HttpClient.cs:line 70 at NzbDrone.Common.Http.HttpClient.Execute(HttpRequest request) in ./Radarr.Common/Http/HttpClient.cs:line 128 at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxyV2.IsApiSupported(QBittorrentSettings settings) in ./Radarr.Core/Download/Clients/QBittorrent/QBittorrentProxyV2.cs:line 35 at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.FetchProxy(QBittorrentSettings settings) in ./Radarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 87 at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.<>c__DisplayClass7_0.<GetProxyCache>b__0() in ./Radarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 82 at NzbDrone.Common.Cache.Cached`1.Get(String key, Func`1 function, Nullable`1 lifeTime) in ./Radarr.Common/Cache/Cached.cs:line 99 at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.GetProxyCache(QBittorrentSettings settings, Boolean force) in ./Radarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 82 at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrentProxySelector.GetProxy(QBittorrentSettings settings, Boolean force) in ./Radarr.Core/Download/Clients/QBittorrent/QBittorrentProxySelector.cs:line 65 at NzbDrone.Core.Download.Clients.QBittorrent.QBittorrent.TestConnection() in ./Radarr.Core/Download/Clients/QBittorrent/QBittorrent.cs:line 414
  9. Gotcha. What is the difference between that and setting it up under Main > SMB Shares? Considering I need to clean up (ie remove) a lot of the existing Shares, is it best to do this via CLI or is it possible via the web GUI?
  10. Attached! Not sure I follow what you mean by exporting. All of this data was from an Open Media Vault server that I previously had running. I did an rsync so it contains shares from my previous docker setup for Plex and other stuff I had running. I was/am planning on cleaning all of this up once I can get the shares thing resolved. Essentially, I'll be purging everything with the exception of my Plex library and personal backups. I'll then start over via new containers. adamsavage-diagnostics-20231230-0806.zip
  11. I just got around to setting up unRAID for the first time after posting about switching from OMV. I followed a mini-guide of sorts (https://www.reddit.com/r/unRAID/comments/xdkxjr/comment/ioc22sk/?utm_source=reddit&utm_medium=web2x&context=3) which seemed to work well. The problem I'm running into is creating SMB shares where unRAID fails to load any shares (no error, just no results returned). I didnt input any credentials or domain, and this is what the shares currently look like. Not sure where to go from here. /mnt/disk1# ls -l total 0 drwx--x--x 15 1000 users 209 Dec 28 21:53 AppData/ drwxrwxrwx 5 nobody users 57 Dec 28 21:52 Personal/ drwxrwsrwx 5 nobody users 47 Dec 28 21:53 Plex/ drwxrwxrwx 2 nobody users 6 Dec 28 13:52 appdata/ drwxrwsr-x 5 1000 users 202 Dec 28 21:53 config/ drwxrwsrwx 2 1000 users 6 May 3 2019 data/ drwxrwxrwx 2 nobody users 6 Dec 28 13:53 domains/ drwxrwxrwx 2 nobody users 6 Dec 28 13:53 isos/ drwxrwxrwx 2 nobody users 6 Apr 12 2019 lost+found/ drwxrwsrwx 2 nobody users 6 Apr 13 2019 media/ drwxr-sr-x 3 996 users 21 Apr 20 2021 plexmediaserver/ drwxrwxrwx 4 nobody users 35 Dec 28 21:51 system/ drwxrwsrwx 2 nobody users 6 Apr 13 2019 watched/ Someone had me check /mnt/user/ and I get the following: ls -lh /mnt/user/ total 0 drwxrwxrwx 1 nobody users 209 Dec 28 21:53 AppData/ drwxrwxrwx 1 nobody users 57 Dec 28 21:52 Personal/ drwxrwsrwx 1 nobody users 47 Dec 28 21:53 Plex/ drwxrwxrwx 1 nobody users 6 Dec 28 13:52 appdata/ drwxrwsrwx 1 nobody users 202 Dec 28 21:53 config/ drwxrwsrwx 1 nobody users 6 May 3 2019 data/ drwxrwxrwx 1 nobody users 6 Dec 28 13:53 domains/ drwxrwxrwx 1 nobody users 6 Dec 28 13:53 isos/ drwxrwxrwx 1 nobody users 6 Apr 12 2019 lost+found/ drwxrwsrwx 1 nobody users 6 Apr 13 2019 media/ drwxrwsrwx 1 nobody users 21 Apr 20 2021 plexmediaserver/ drwxrwxrwx 1 nobody users 35 Dec 28 21:51 system/ drwxrwsrwx 1 nobody users 6 Apr 13 2019 watched/

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.