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.

FlorinB

Members
  • Joined

  • Last visited

Everything posted by FlorinB

  1. Hi, after upgrading to Unraid 6.9.0-rc2, I have noticed that the HDD temperatures are not displayed anymore I am using a SuperMicro motherboard with temperature dependent controlled fan speeds. Without the HDD temperature readings my server is unbearable noisy. See below image and the diag. node804-diagnostics-20201221-2341.zip
  2. With multiple pools I am seeing this as multiple "cache" drives. Since the Mover is able to move the data from the pools to Array, it will be helfpul (at least for me) to use the unBalance as well for Scatter & Gather the data between Array and pools.
  3. Would it be possible to update the plugin to support the Unraid 6.9 version with multiple cache pools? Thank you.
  4. Hi, Changing VM name leads to impossibility to edit save the VM config afterwise. It hangs in Updating... I have noticed this since version 6.8.x, but looks it still remains under 6.9 as well. Althrough it is a "minor" issue, I was struggling a while to find the reason. Example: The initial vm name was "Windows Server 2019" and I have added after VM creation _1 at the end. The result: It hangs in updating. Best regards, Florin
  5. Hi, I have created a pool with one 2TB SSD. Is this normal or is a bug? It was the same in 6.9.0-beta24 Attached you can find also the diag file. Br, Florin node804-diagnostics-20200712-2255.zip
  6. Restore functionality would be great. Until then where I can find a manual restore procedure? Thanks in advance.
  7. Instructions into linuxserver/letsencrypt docker: /appdata/letsencrypt/nginx/proxy-confs/plex.subdomain.conf.sample # make sure that your dns has a cname set for plex, if plex is running in bridge mode, the below config should work as is, for host mode, # replace the line "proxy_pass https://$upstream_plex:32400;" with "proxy_pass https://HOSTIP:32400;" HOSTIP being the IP address of plex # in plex server settings, under network, fill in "Custom server access URLs" with your domain (ie. "https://plex.yourdomain.url:443") I had filled in the Custom server access URL with my external NGINX fqdn for plex. Everything is working now with the custom network, as it was in the Bridgde network: - accessibile via Unraid IP http://Unraid_IP:32400/web/index.html - accessibile via https://app.plex.tv/desktop# And additionally thanks to the NGINX reverse proxy from Internet, in a more secure way than with Plex Remote Access enabled. Thank you very much for your help @aptalca and @happyagnostic.
  8. Do not need this, the Plex is already reachable from outside via NGINX reverse proxy mapping. This did the trick: now Plex is reachable from the internal network as well. The ports are mapped and translated to the Unraid IP. I do not want/need to enable Remote access. The only issue, is that in this setup: Plex in custom dedicated network with letsencrypt is not reachable via https://apps.plex.tv When it is configured with the Bridge network I can access it like that from my notebook. Thanks @happyagnostic for the tips and help.
  9. Still not working. See the screenshot for more details.
  10. Thanks for the suggestion to update the BIOS. Updated v2.1a to v2.2 on Supermicro X11SSM-F.
  11. As I had already mentioned I had tried that already without success - Still same issue - Plex not reachable from local network. Anyone ? Ideas/Solutions?
  12. After following up the setup described here linuxserver/plex docker IP:Port is not transated/mapped to the Uraid IP:Port. Plex is reachable over the public web address, but not from my internal LAN. Here are some print screens: Docker tab: No address/port mapping for Plex. Docker allocations: the revproxy network ip is displayed, however there is no port mapping. SSH Shell: docker network list So far I had tried the following, without success: - Changed the network of the docker to Bridge, as it was initially. - Uninstalled Plex and reinstalled it from the custom templates. - Rebooted Unraid server. Notice that for the others docker containers which are in the custom docker network revproxy there is no issue. Diag archive attached: node804-diagnostics-20181004-0146.zip
  13. EdgeRouterX working GUI behind NGINX Reverse Proxy. In case there is anyone else interested into this I have found the solution. Here my config: #Ubiquiti EdgeRouter-X Reverse Proxy #Source: https://community.ubnt.com/t5/EdgeRouter/Access-Edgemax-gui-via-nginx-reverse-proxy-websocket-problem/td-p/1544354 #Adapded by Florin Butoi for docker linuxserver/letsencrypt on 02 Oct 2018 server { listen 80; server_name edgex.*; return 301 https://$host$request_uri; } upstream erl { server 192.168.22.11:443; keepalive 32; } server { listen 443 ssl http2; server_name edgex.*; include /config/nginx/filterhosts.conf; include /config/nginx/ssl.conf; client_max_body_size 512m; location / { proxy_pass https://erl; proxy_http_version 1.1; proxy_buffering off; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forward-For $proxy_add_x_forwarded_for; } } include /config/nginx/filterhosts.conf; #allow from this ip allow 212.122.123.124; #temporary internet ip on my router allow 178.112.221.111; #deny all others deny all;
  14. Anyone can help me with configuration websockets (wss:// ) over reverse proxy? I have a EdgeRouterX and I have created the following configuration in linuxserver/letsencrypt docker container: #Ubiquiti EdgeRouter-X Reverse Proxy server { listen 80; server_name edgex.*; rewrite ^ https://$host$request_uri? permanent; } server { listen 443 ssl; server_name edgex.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_edgex 192.168.0.10; proxy_pass https://$upstream_edgex; proxy_set_header Range $http_range; proxy_set_header If-Range $http_if_range; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_buffering off; } } I can login into the GUI, but i do not see any graphs, interface status or CPU/RAM usage. This is what I see from LAN: This is what I see over NGINX reverse_proxy: In the source code of the page you can see that is using websockets (wss://) : I could not found a working way to forward the wss as well, so any help would be appreciated.
  15. When i change the CPU Mode for a VM from Host Passthrough to Emulated (QEMU64) this is updated into the XML config and not saved correctly when UPDATE is clicked. Steps to reproduce: 1. Initial state CPU Mode Passthrough 2. Change the CPU Mode to Emulated 3. CPU Mode changed to Emulated 4. Click on UPDATE button 5. Edit again VM configuration to see the changes 6. Changes are not updated
  16. Today I just noticed that the built in web based VNC client does not connect to any of my VMs, however with a normal VNC client from other computers the VNC connection is ok. Does anyone else have the same issue like me? What is the reason and how can i fix it? Diag archive attached. node804-diagnostics-20180929-2332.zip
  17. Hi, Please take into consideration the following GUI bug: When I click on the username backup_computer into the Dashboard tab, User List the username is shrinked into the GUI and the link to the user as well: Steps to reproduce the bug: create a new username longer than 11 chars. Go to Dasboard-User List, click on the username. Screenshoots: Shrinked users: backup_computer, testuser1234 Links: http://192.168.0.110/Users/UserEdit?name=backup_co... http://192.168.0.110/Users/UserEdit?name=testuser1... Result of following the link on testuser1234 Existent users. Diagnostics attached. Best regards, Florin node804-diagnostics-20180913-1023.zip
  18. Nice Docker @jbartlett! Thank you. Here are my results: o Parity, Parity 2 and Disk 1 are brand new WD Red 4TB. o Disk 2 and Disk 3 are WD Green 1.5TB o Disk 4 and Disk 5 are salvaged 2.5 inch disks from old notebooks o Disk 6 is a "shucked" disk from a portable HDD o Disk 7 is also "shucked" disk from a WB MyBook
  19. mc is the program named Midnight Commander https://midnight-commander.org/. This is a pseudo command-line GUI, somehow similar with Total Commander, Free Commander and so on from Windows. To start the mc from your browser: 1. Login first to the unRaid Web UI 2. Start a Terminal session 3. Type into the webterminal window opened as pop-up mc and hit Enter 4. Now you are in Midnight Commander With mc you have full access to the whole heart of the unRaid, hoever to avoid any damage (if you have no experience with Linux shell) my recommandation is to use ony the /mnt folder, where your unraid array and disks are mounted. ATTENTION: Please be aware that you may only copy data from disk to disk or share to share, never copy disk to share or share to disk, as this my lead to massive data corruption. Description: /mnt/cache - the cache disk(s), if you have /mnt/disk1 to /mnt/diskX- the physical disks from your array /mnt/disks - the unassigned disks to the array, if are mounted via Unassigned Devices plugin /mnt/user - the shares from all disks in array + cache disk(s) /mnt/user0 - the shares from all disks in array, without cache disk(s)
  20. How can I configure Disk Usage Notifications to be sent evey 2% or 5% increase instead of 1%? It is quite annoying to get a notification for each disk on every 1% increase. Deleting everyday tons of notifications for disk usage from my email and Slack account. Notifications for disk usage are important, but not at every percent. On warning and critical threshoulds should be enough to generate a notification. If not so, one should have the possibility to chose how how often to generate the notifications on every 1%,2%,3%,4%,5%,10% and so on...
  21. Bug or just something configured wrong on my unRaid 6.5.3? Copied some folders with files from an external disk, one of the files is a VirtualBox VDI disk image of 107GB on my array. Case 1. Use cache disk:No - Failed - Trying to write a file on a disk from the array with insufficient space. Case 2. Use cache disk:Yes - Partially Failed - Copied successfully to the cache disk, but the mover is not able to choose a disk with sufficient free space. See below screenshots and the diagnostic. node804-diagnostics-20180629-2255.zip Thank you in advance for your help and quick support.
  22. Memory: 16 GB Single-bit ECC (max. installable capacity 64 GB) - 2x8GB Initially only 8GB but after building some VMs it was not enough.
  23. To edit the title in your topic: Click and hold on the title.
  24. Saved me as well. Thank you very much for the post... 

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.