clj-ssh icon indicating copy to clipboard operation
clj-ssh copied to clipboard

SSH commands via jsch

Results 32 clj-ssh issues
Sort by recently updated
recently updated
newest added

https://github.com/mwiede/jsch is actively updated and has some fixes and features, notably ed25519 keys.

I try to run command on remote machine, I success to connect through my MAC over ssh without password (use `known_host`) so I run through `REPL`: ``` (let [agent (clj-ssh.ssh/ssh-agent...

I am not sure under what circumstances this occurs but I've seen what appears to be transmission characters corrupting larger files when transferred to some, but not all, SFTP servers....

with-connection does not currently allow a timeout specification for making a connection.

(Created from https://github.com/jepsen-io/jepsen/issues/398) Hey, We're using Jepsen 0.1.14 which in turn uses `clj-ssh-0.5.14`. Here's a stack trace I ran into: ``` WARN [2019-07-09 11:53:31,619] main - jepsen.core Test crashed! java.lang.ArrayIndexOutOfBoundsException:...

Not sure if this is a bug or just something missing from the documentation, but when I do ``` (Let [agent (ssh-agent {})] (let [session (session agent domain {:strict-host-key-checking :no})]...

Hey this is my first time using this library, ive heard pretty good things about it. I am trying to execute the following command: `(sftp "host" :put file "/" :username...

- Allow for not using the default known_hosts file when creating the ssh-agent. This is useful in cases where strict-host-key-checking is set to no and we don't have a known_hosts...

If the machine doing the compilation does not have a file at `$HOME/.ssh/known_hosts`, the compilation (repl or jar or uberjar) fails. Right now I'm getting around the issue with below...

It took a fair amount of digging to find that setting the "PreferredAuthentications" option for creating a session allows you to change the auth type. It was defaulting to Kerberos...