如何使用批处理和登录打开putty然后在bash上执行命令列表

时间:2016-05-02 09:42:13

标签: bash batch-file putty sunos

我有一个配置了oracle的Sun OS服务器;与数据库11g我想要备份,现在我在putty控制台上使用ssh连接到终端但是,我需要的是找到一种方法,使用批处理连接ssh到服务器然后登录然后登录到oracle然后采取备份,这是可能的以及如何。

1 个答案:

答案 0 :(得分:8)

如果您真的想使用putty来执行此操作,可以在Windows的命令提示符中使用以下内容(这将打开putty及其终端并在您的文本文件中执行传递的参数):

putty.exe plink  -ssh -load profileName -l username -pw password -m commandPath -t

或者

putty.exe -ssh username@ip -pw password -m commandPath

e.g:

putty.exe -ssh rootz@10.10.10.10 -pw rootzpass -m c:\commands\mycommands.txt

其中 profileName 是保存在putty中的配置文件, commandPath 是包含要执行的命令和用户名是服务器用户, ip 是服务器的IP地址,密码是您的服务器密码,然后您可以在textFile中放置您想要的任何命令。

<强>参考 the.earth putty documentation