Category: Server
-
Passwordless SSH between two machines using certificates
I’ve been meaning to post this somewhere useful for a while now, so here it is. Assumption Machine A wants to connect with SSH without passwords (with cert) to Machine B Method On Machine A: [bash] ssh-keygen [/bash] Make sure you pick no pass phrase. [bash] scp .ssh/id_rsa.pub user@machineb:.ssh/id_rsa.tmp [/bash] On Machine B: [bash] cat id_rsa.tmp >>…
-
Errors when running large numbers of unit tests via mstest on a windows server (just a note really)
This is really just a note for future reference and to help anyone else experiencing this issue: C# projects with hundreds of unit tests (more than a thousand or so) having unit tests failing randomly with the following error: The system could not find the environment option that was entered or Not enough storage is…
-
Emailing attachments directly to a Dropbox folder…
I’ve been toying with this idea for a while now, wanting to email attachments to my Dropbox account into a specific folder. There are lots of canned solutions to do this, but most of them require you to trust some third party with your documents. If you’re ok with that check out this post. I…