Everything posted by IamSpartacus
-
Mover making Plex server unresponsive?
I've been noticing that if I kick off a manual mover process that my Plex server becomes unresponsive until the mover is complete. Now normally this doesn't affect me because I have the mover scheduled to run once a day at 8am when I never use the server. However, I started to investigate why this was happening and it's not adding up. First off, none of my plex (and other dockers) appdata is on cache or my array drives (all appdata is on an SSD set as an unassigned disk). Also, the data that was being moved to the array was not being moved to the disk where the current media I was streaming was located. I saw nothing in the syslog other than the mover activity. My system setup is as follows: Array: 8x10TB WD Gold drives (dual parity) Cache: 1TB Micron 5100 PRO Enterprise SSD Appdata: 256GB Samsung NVMe SSD CPU: Xeon D-1541 RAM: 64GB I'm kind of at a loss as to why the mover would be having any type of performance impact on my Plex server.
-
[6.6.6] Low usage disk showing as RED in Dashboard
I'm not 100% sure if this was introduced in 6.6.5 or 6.6.6 but I'm leaning towards 6.6.6 as I don't remember seeing it previously.
-
Plex: Guide to Moving Transcoding to RAM
I've not noticed this issue and I have 8-10 people on my server every night. Are you sure you have adequate free RAM to use for transcoding?
-
[Support] Linuxserver.io - Plex Media Server
Anyone running two instances of Plex docker on the same Unraid server? Is it just as simple as setting the second container up with bridged networking and changing the ports so they don't match the ports the host is using for the first Plex instance? Nvmd, I just setup a different network and bridge and allowed it in docker settings (docker must be disabled first) and then linked the new container to that bridge instead of my default.
-
[Plugin] CA Appdata Backup / Restore - Deprecated
I see. So there is no other way to schedule a monthly flash backup?
-
[Plugin] CA Appdata Backup / Restore - Deprecated
Is it possible to ONLY backup the Unraid USB using this plugin? It doesn't seem to let me save the USB backup destination unless I also have an Appdata share source/destination configured.
-
New Emby Docker
Does anyone have any working post-processing scripts with this docker for removing commercials for Live TV recordings?
-
[GUIDE] Virtualizing unRAID on Proxmox 3.1
Is there a way to run Unraid in Proxmox VE that is upgradeable (ie. you can simply run the OS update in Unraid GUI and reboot)? I used to run Unraid in VMware and had to shutdown and update the VMDK i was using as my boot drive every time I did an Unraid OS upgrade.
-
Plex: Guide to Moving Transcoding to RAM
Does anyone know how to get Plex to only use the /tmp directory for on the fly transcodes (live streaming) and not for mobile sync data? I have a lot of users who do mobile syncing and my RAM will max out fast if those converted files are being stored there until being downloaded by mobile clients. EDIT: Nvmd, I figured it out. Just used a symlink and set /config/Library/Application Support/Plex Media Server/Cache/Transcode/Sessions to /mnt/ramdisk in my Plex container. All set.
-
**VIDEO GUIDE** How to Install MacOS Mojave or High Sierra as a VM
Thank you!
-
**VIDEO GUIDE** How to Install MacOS Mojave or High Sierra as a VM
Ok so I'm installing Mojave using SIO's youtube video. The only difference is that I used the latest version of clover that I downloaded today. I got to the point where I booted the VM for the first time but I can't seem to get into the OVMF settings. When I go to restart from the below screen and hit Delete non-stop, nothing happens is just boots back to this same screen. Anything I'm missing that applies to Mojave that I may have missed?
-
**VIDEO GUIDE** How to Install MacOS Mojave or High Sierra as a VM
It's no where to be found my Macbook Pro once the upgrade to Mojave completed.
-
**VIDEO GUIDE** How to Install MacOS Mojave or High Sierra as a VM
Is there no other way to create a Mac OSX VM without creating the USB installer? I can't create the USB install from my Macbook Pro because it's already on Mojave.
-
**VIDEO GUIDE** How to Install MacOS Mojave or High Sierra as a VM
No, it's not there if the computer has Mojave installed.
-
**VIDEO GUIDE** How to Install MacOS Mojave or High Sierra as a VM
Is there any way to setup a Mac OSX install disk on a Mac that is already on the latest version (Mojave) since the install OS app isn't available in the App store?
-
[Support] Linuxserver.io - Plex Media Server
Quick question for those of you who have created small RAMdisks for your temp transcode directory. How much space have you carved out for this and how many simultaneous transcodes do you typically support on your servers?
-
[Support] Linuxserver.io - Ombi
It's a reported issue on Github right now. They are aware of it. We'll see what happens.
-
[Support] Linuxserver.io - Ombi
Anyone using pushover notifications have issues where they just don't come through? Test messages come through fine but when someone requests something, I don't get notified. I've togged the enable check off and back on to no avail.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Oh, good to know.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Have you recently made any changes from say registering specific subdomains to now using wildcards? Also, I believe the certs need to renew every 90 days so if you haven't rebooted your container within the past 90 days you may be nearing that deadline.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Found a conf that works: map $http_upgrade $connection_upgrade { default upgrade; '' close; } server { listen 80; listen [::]:80 ipv6only=on; listen 443 ssl; listen [::]:443 ipv6only=on ssl; server_name unifi.MYDOMAIN.COM; client_max_body_size 2G; ssl_dhparam /etc/ssl/certs/dhparam.pem; ssl_session_cache shared:SSL:10m; ssl_session_timeout 5m; ssl_protocols TLSv1.2; ssl_prefer_server_ciphers on; ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH'; location / { proxy_pass https://localhost:8443; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $http_host; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Real-IP $remote_addr; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection $connection_upgrade; proxy_buffering off; } # These are managed by certbot. # ssl_certificate /etc/letsencrypt/live/YOUR_FQDN/fullchain.pem; # ssl_certificate_key /etc/letsencrypt/live/YOUR_FQDN/privkey.pem; }
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
LE definitely doesn't like that as I get the following error over and over once I add that to my site-conf and restart LE. nginx: [emerg] the size 52428800 of shared memory zone "SSL" conflicts with already declared size 10485760 in /config/nginx/ssl.conf:3
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
I assume there is some kind of special configuration needed to use UniFi behind the Letsencrypt reverse proxy? I have my cert and domain name (unifi.domain.com) working fine. Typing in https://unifi.domain.com redirects me to https://unifi.domain.com/manage/account/login?redirect=%2Fmanage. Then when I try to login I get a login error. I assume the issue is because it's not redirecting me to unifi.domain.com:8443 even though that's what is listed in my site-conf file for unifi. I must be missing something simple...
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
I'd like to migrate my LE container from using subdomains to using wildcard. Right now I'm doing http validation so I obviously have to switch to DNS validation. How exactly do I go about picking a provider for the DNS plugin config? Does it matter who I choose?
-
[Support] binhex - Airsonic
Can anyone speak to (this goes for Airsonic and Libresonic) where user created/imported playlists get stored? I have users with lots of playlists that I want to import over. They are not stored in the playlists directory under appdata as anything that is stored in there shows up for all users. I just tested importing one user playlist and it too does not show up in the playlists folder in appdata. So are these just stored in the database somewhere? I'm just asking because having to manually export and import every single playlist will SUCK.