I'm on the hunt for a free SFTP server that isn't web-based. I want something that I can install and run locally instead of relying on a web service. Any recommendations?
4 Answers
If you're open to it, you can also set up an SFTP server using Docker. This would isolate it from your primary OS, making it pretty manageable! Plus, it's a good learning opportunity if you want to dive deeper into this.
You might want to check out Rebex Tiny SFTP Server or BitVise. Just keep in mind that some of these have limitations like user counts, but they can work for basic needs.
I found Rebex, but it looks like it only allows one user, which isn't ideal. I'm still looking for an option that fits better.
You could go with OpenSSH, which is a common option for Linux systems. It has everything you need built-in, but I get that it might seem a bit complicated if you're not familiar with setting up a separate OS account.
Yeah, I get that it can be tricky if you're new to this. You might also want to look into alternatives like SFTPgo or Core FTP, but they can come with their own complexities.
Seriously, any Linux machine can run an SFTP server. If you're after something free, consider hosting it on your own system. Just remember that storage and bandwidth aren't usually free unless you manage it yourself!

Thanks for the tip! I really appreciate it. I'm definitely aiming to learn more about this.