shell脚本通过ssh登录到服务器进行操作
呵呵,这个问题有意思。 仔细想想,是本地环境和服务器环境的区别。你的脚本是存放在本地的,当你执行第一句的时候,已经转化为服务器的一个中断,享用的是服务器的环境。是看不到你本地的脚本的。
1、创建iptxt列表,每行一个ip
2、changesh
#!/bin/sh
for host in `cat iptxt`;do
echo ${host};
scp restartsh root@${host}:/opt;
ssh root@${host} "uname -a"
done
expect -c "
set timeout 30;
spawn /usr/bin/ssh admin@$ServerB-IP
expect {
\"yes/no\" {send \"yes\r\"; exp_continue}
\"password\" {send \"xxx\r\";}
expect {
\"# \" {send \"tar zcvf ~/hellotargz hello\r\"}
\"$ \" {send \"tar zcvf ~/hellotargz hello\r\"}
}
interact"
这样试试
如何在shell脚本里使用sftp批量传送文件
主要步骤如下:
1为运行shell脚本的本地用户生成密钥对
2将其中的公钥分发到sftp欲登录的远程服务器上
3编写并以上面的本地用户运行shell脚本
一生成密钥对
在shell脚本中使用sftp时必须用到密钥对(公钥和私钥)可使用下列方式生成(SSH 2X版
本),这里本地用户记为:local_user:
$ ssh-keygen –d
屏幕提示:
Generating public/private dsa key pair
Enter file in which to save the key (/home/local_user/ssh/id_dsa):
# 按回车保存为: /home/local_user/ssh/id_dsa,即当前用户local_user的私钥
Enter passphrase (empty for no passphrase):
# 按回车,表示读取密钥时不需要密钥的密码
Enter same passphrase again:
# 确认密钥的密码,必须和上面的输入相同
Your identification has been saved in /home/local_user/ssh/id_dsa
# 私钥保存信息
Your public key has been saved in /home/local_user/ssh/id_dsapub
# 公钥保存信息
The key fingerprint is:
ec:41:e8:08:38:0b:f8:1e:bc:92:98:32:fc:d7:69:7d
# 密钥指纹
二分发公钥
为了使用密钥,必须将公钥分发到欲登录的远程服务器上,这里远程服务器记为remote_hos
t,欲登录的远程用户记为remote_user
1copy公钥到欲登录的远程服务器的远程用户的家目录下,例如:
copy id_dsapub到remote_host:/home/remote_user/ssh/
若目录/home/remote_user/ssh/不存在,请先创建之
2将copy来的公钥文件改名为authorized_keys
3修改公钥文件的访问权限
chmod 644 authorized_keys
三示例
目标:
从远程服务器remote_host:/home/remote_user/data/
传送下列文件到本地计算机的当前目录: /home/local_user/data/:
20050201
20050202
20050203
20050204
20050205
方式1: 批模式
sftp提供了一个选项-b,用于集中存放sftp命令(该选项主要用于非交互模式的sftp)因此
对于上面的目标,可以生成如下的命令文件:
cd /home/remote_user/data/
lcd /home/local_user/data/
-get 20050201
-get 20050202
-get 20050203
-get 20050204
-get 20050205
quit
这里存为: sftp_cmdstxt
说明: get命令前加一个"-"以防止其执行错误时sftp执行过程被终止
以下为脚本示例:
#!/bin/sh
sftp -b /sftp_cmdstxt remote_user@remote_host
方式二:
#!/bin/sh
sftp remote_user@remote_host << EOF
cd /home/remote_user/data/
lcd /home/local_user/data/
-get 20050201
-get 20050202
-get 20050203
-get 20050204
-get 20050205
quit
EOF
shell连接不同的数据库会有不同的连接命令,像连oracle用sqlplus命令, mysql 用mysql命令,sybase用isql命令
如连接oracle:sqlplus 用户名/密码@ip地址[:端口]/service_name [as sysdba]
mysql命令 应该是mysql -u用户名 -p用户密码 -hIP
Access不清楚,access能安装在unix上吗应该只能在windows上才能用吧
0条评论