I want to SSH to a server and execute a simple command like "id" and get the output of it and store it to a file on my primary server. I do not privileges to install Net::SSH which would make my task very easy. Please provide me a solution for this. I tried using backticks but I am not able to store the output on the machine from which my script runs.
|
|
If you have ssh host keys setup you can simply run the ssh system command and then specify the command to run on the machine after that. For example:
You should be able to chomp/store that output. |
|||
|
|
|
You can always install modules locally, and that is the method you should look into; however, you should be able to get away with
|
||||
|
|
|
Assuming that you're in an environment like me where you can't add additional modules and you can't create an Identity file, then you can use this script as a starting point. If you can set up ssh keys then simply use the backticks command already posted, although you might need the -i option
|
||||
|
|
|
The best way to run commands remotely using SSH is
You can use this either in bash or in perl. However, If you want to use perl you can install the perl modules in your local directory path as suggested by Brain in his comment or from Perl FAQ at "How do I keep my own module/library directory?". Instead of using Net::SSH I would suggest to use Net::SSH::Perl with the below example.
|
||||
|
|
|
If you're using backticks try this:
This is only useful if you have a publickey that the above command won't prompt for password. |
|||
|
|
|
or, assuming host keys are present and you want to do something with the command ouput ...
|
|||
|
|
|
|||
|
|