Everything posted by IamSpartacus
-
[Plugin] CA User Scripts
Can someone help me get an rsync user script working? I followed the below process for setting up ssh keys between two unRAID servers so that I can rsync between them without having to enter a password (ie. in a script). But even after doing this, it still prompts for a password when running rsync. What am I missing? 1. Test rsync over ssh (with password): Do a rsync to make sure it asks for the password for your account on the remote server, and successfully copies the files to the remote server. The following example will synchronize the local folder /home/test to the remote folder /backup/test (on 192.168.200.10 server). This should ask you for the password of your account on the remote server. rsync -avz -e ssh /home/test/ [email protected]:/backup/test/ 2. ssh-keygen generates keys. Now setup ssh so that it doesn’t ask for password when you perform ssh. Use ssh-keygen on local server to generate public and private keys. $ ssh-keygen Enter passphrase (empty for no passphrase): Enter same passphrase again: Note: When it asks you to enter the passphrase just press enter key, and do not give any password here. 3. ssh-copy-id copies public key to remote host Use ssh-copy-id, to copy the public key to the remote host. ssh-copy-id -i ~/.ssh/id_rsa.pub 192.168.200.10 Note: The above will ask the password for your account on the remote host, and copy the public key automatically to the appropriate location. If ssh-copy-id doesn’t work for you, use the method we discussed earlier to setup ssh password less login. 4. Perform rsync over ssh without password Now, you should be able to ssh to remote host without entering the password. ssh 192.168.200.10 Perform the rsync again, it should not ask you to enter any password this time. rsync -avz -e ssh /home/test/ [email protected]:/backup/test/
-
[support] pducharme's Dockers support thread
How do we know when 3.9.3 has been pushed to the repo and available for installation?
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
Nope, no dice even after re-installing. Yet running smartctl -a /dev/nvme0 does show the temperature.
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
Does the UD plugin display disk temperatures? I'm seeing this:
-
[Support] Linuxserver.io - Ombi
OMBI version 3? I'm seeing in OMBI that there is a new Pre-release version (Ombi v3.0.2881) available. Is anyone using this and/or any ETA on when this will make it to the LS container image?
-
unraid-autovmbackup: automate backup of virtual machines in unRAID - v0.4
How does one install this script? Trying via the WebGUI plugin install just throws errors.
-
Convert VMware VM to KVM
Has anyone here successfully converted their VMware VM's to work in UnRAID? I have a Linux Ubuntu Svr VM and a Windows Server 2012 VM I'd like to convert over to run on my UnRAID box.
-
Unassigned Devices - Managing Disk Drives and Remote Shares Outside of The Unraid Array
I'm interested to know how others are using this plugin for their appdata and/or VM's to separate them from cache. I'm looking to migrate all my docker containers (and thus appdata) from some Ubuntu Servers and want to keep their data separate from the cache pool as the performance of said cache pool really suffers during the mover process, etc. Specifically, my array doesn't start until my encryption key is entered. How will that affect my containers that will run/autostart on an unassigned device?
-
[Support] Linuxserver.io - Sonarr
I'm currently on the linuxserver/sonarr:develop container and want to migrate to the non-develop image. How would I go about doing this without corrupting my database?
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
PM'd.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
So I just updated my container by removing the HTTPVAL variable and replacing it with VALIDATION=http. Nothing else changed (already was forwarding 80 to get HTTPVAL working). Now I'm getting the following for all my certs: Type: unauthorized Detail: The key authorization file from the server did not match this challenge
-
RamDisk SMB Share?
All I need to put in the Go file is the path I created (ie. /mnt/ramdisk)?
-
RamDisk SMB Share?
What's the easiest way to create RamDisk Samba share in UnRAID accessible across the network?
-
Preclear plugin
What is the difference between erase disk and clear disk? Clear zero's the drive I believe but what does the erase disk option do?
-
[Support] brettm357 - UniFi
Now if only they'd let us manage UniFi cameras in the same application as switches/APs.
-
HDHomerun DVR docker
Or better yet Emby. Emby's live TV integration is much better than Plex.
-
[Support] binhex - Emby
Got it. Thanks for the information, much appreciated.
-
[Support] binhex - Emby
Does your container pull from their Github? I removed the container, did a docker pull, re-created but it still is on 3.2.32.0.
-
[Support] binhex - Emby
Perfect. Thanks.
-
[Support] binhex - Emby
I'm running this container on a different Linux box so I don't have that option.
-
[Support] binhex - Emby
How does one update Emby to the latest stable version using this container? I see it's not as simple as a docker restart emby like it was with Plex.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Yup I did the same. Works great.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Ok got it working. It was a port forwarding issue. I had to redirect incoming external connections that are using 8920 to 443 which is my internal port for my nginx reverse proxy. Works great now. Thanks for the help.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Ok I see it. Ok so I have the .pfx file now, I've copied it to my emby directory, and set that path in Emby > Advanced as well as my domain. Still unable to connect to my server though. I know it's a cert issue because I've confirmed a DNS lookup of my domain emby.mydomain.com resolves to my external IP and I see the connection passing through my firewall via the https port. Yet it never makes it to the Emby log which I'm told means it's a cert issue. This is from the Android app. If I just put in https://emby.mydomain.com into a browser it works fine. Was there anything else I haven't mentioned that you needed to setup to get this working through Emby apps?
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
And it applies to all subdomains?