- 论坛徽章:
- 0
|
本帖最后由 supself 于 2012-10-09 23:45 编辑
- #!/bin/bash
- #deploy files to Nginx1,2,3,4,5
- deploy_path=/home/zxc/Nginx_deploy
- publish_path=/home/zxc/Nginx_publish
- unzip $publish_path/static.zip
- for ((i=1;i<=5;i++))
- do
- Remote_path=/opt/Nginx$i/
- nohup ssh deploy@192.168.121.1 "cd $Remote_path;rm -rf static" < /dev/null &
- nohup ssh deploy@192.168.121.2 "cd $Remote_path;rm -rf static" < /dev/null &
- nohup scp -r $deploy_path/static deploy@192.168.121.1:$Remote_path &
- nohup scp -r $deploy_path/static deploy@192.168.121.2:$Remote_path &
- done
- rm -rf $deploy_path/static
复制代码 [/code]
本地服务器已经配置好公钥,会报错,生成nohup.out文件,提示
/home/zxc/Nginx_deploy/static : No such file or directory
我把代码改成- #!/bin/bash
- #deploy files to Nginx1,2,3,4,5
- deploy_path=/home/zxc/Nginx_deploy
- publish_path=/home/zxc/Nginx_publish
- unzip $publish_path/static.zip
- for ((i=1;i<=5;i++))
- do
- Remote_path=/opt/Nginx$i/
- ssh deploy@192.168.121.1 "cd $Remote_path;rm -rf static" < /dev/null
- ssh deploy@192.168.121.2 "cd $Remote_path;rm -rf static" < /dev/null
- scp -r $deploy_path/static deploy@192.168.121.1:$Remote_path
- scp -r $deploy_path/static deploy@192.168.121.2:$Remote_path
- done
- rm -rf $deploy_path/static
复制代码 然后就没有问题
为什么上面的代码就会报错呢?求指教! |
|