工作中反复性的版本号移植,一天上线10几次,让我痛不欲生,频繁的操作也可能出现疲劳性失误,导致严重的生产故障。于是乎,闲暇时间。我開始研究使用powershell自己主动部署程序到Linuxserver。

脚本中涉及到下面工具:

1、Wincp:借助其自身的命令行模式完毕程序部署

2、powershell的ssh-session模块。通过载入该模块连接到Linuxserver,运行相关shell命令

3、.net

開始上代码

#Public environment configure

$script:linuxPath="D:\test\newpath.txt"

$script:parentPath="D:\test\"

$script:parentPath2=$parentPath -replace "\\","/"

$script:projectConfigureFile="D:\test\projectConfigureFile.csv"

#运行shell函数

function Exec-Bash($computers,$user,$pwd,$linux_command){

    #Check SshSessions Module

    $modules=Get-Command -Module ssh-sessions

    if($modules -eq $null){

        Import-Module ssh-sessions

    }

    if($computers.GetType().IsArray){

        foreach($computer in $computers){

            $sshsession=Get-SshSession|?{$_.computername -eq $computer}

            if($sshsession.Connected -ne "true"){

                New-SshSession -ComputerName $computer -Username $user -Password $pwd -ErrorAction Stop

            }

            Invoke-SshCommand -ComputerName $computer -Quiet -Command $Linux_command

        }

    }else{

        $sshsession=Get-SshSession|?

{$_.computername -eq $computers}

        if($sshsession -eq $null){

            New-SshSession -ComputerName $computers -Username $user -Password $pwd -ErrorAction Stop

        }

        Invoke-SshCommand -ComputerName $computers -Quiet -Command $Linux_command

    }

    Remove-Item $linuxPath

}

#回收session函数

function Recycle-Session{

    param($computers)

    if($computers.GetType().IsArray){

        foreach($c in $computers){

            Remove-SshSession -ComputerName $c | out-null

        }

    }else{

        Remove-SshSession -ComputerName $computers | out-null

    }

}

#解密函数。主要用于解密server登录password

function Decrypt-String($Encrypted, $Passphrase, $salt="SaltCrypto", $init="IV_Password"){

    if($Encrypted -is [string]){

        $Encrypted = try{[Convert]::FromBase64String($Encrypted)}catch{return $false}

    }

    $r = new-Object System.Security.Cryptography.RijndaelManaged

    $pass = [Text.Encoding]::UTF8.GetBytes($Passphrase)

    $salt = [Text.Encoding]::UTF8.GetBytes($salt)

    $r.Key = (new-Object Security.Cryptography.PasswordDeriveBytes $pass, $salt, "SHA1", 5).GetBytes(32) #256/8

    $r.IV = (new-Object Security.Cryptography.SHA1Managed).ComputeHash( [Text.Encoding]::UTF8.GetBytes($init) )[0..15]

    $d = $r.CreateDecryptor()

    $ms = new-Object IO.MemoryStream @(,$Encrypted)

    $cs = new-Object Security.Cryptography.CryptoStream $ms,$d,"Read"

    $sr = new-Object IO.StreamReader $cs

    Write-Output $sr.ReadToEnd()

    $sr.Close()

    $cs.Close()

    $ms.Close()

    $r.Clear()

}

#在Windows环境下创建备份信息

function Creat-Path{

    Clear-Content $linuxPath -ErrorAction SilentlyContinue

    $toLinuxPath=dir -r $parentPath |%{$_.versioninfo}|select filename

    $n=""

    foreach($p in $toLinuxPath){

        $newPath=$p.filename -replace "\\","/"|%{$_ -replace $parentPath2,""}

        foreach($newP in $newPath){

            $n=$n +  ' ' + $newp

        }

    }

    $n=$n -replace 'newpath.txt',''

    $n > $linuxPath

    $n=""

}

#上传操作

function Upload{

    $projectNames=dir -Directory $parentPath|%{$_.Name}

    if($projectNames -eq $null){

        Write-Warning "$parentPath 中没有须要操作的项目信息。请确认后再运行"

        pause

        break

    }

    if($projectNames.GetType().IsArray){

        Write-Warning 为避免误操作。请逐个项目备份移植,谢谢!

        pause

        break

    }else{

        $projectConfigureInfo=Import-Csv $projectConfigureFile|?{$_.project -eq $projectNames}

        if($projectConfigureInfo -ne $null){

            $project=$projectConfigureInfo.project

            $computers=$projectConfigureInfo.iplist

            $port=$projectConfigureInfo.port

            $user=$projectConfigureInfo.account

            $passwd=Decrypt-String $projectConfigureInfo.passwd "MyStrongPassword"

            $webpath=$projectConfigureInfo.webpath

            #创建备份信息

            Creat-Path

            $question=Read-Host 备份信息已拼接完毕。是否登录到server进行备份(Y/N)

            switch($question){

                Y{

                    #连接到server运行备份命令

                    if($computers.IndexOf(',') -gt 0){

                        $computers=$computers -split ","

                    }

                    $sourcePath=gc $linuxPath

                    $linux_command="cd $webpath;/sbin/backup $sourcePath"

#Exec-Bash $computers[0] $user $passwd $linux_command

                    Recycle-Session $computers

                    if($?){

                        Write-Host 文件备份已完毕 -ForegroundColor Green

                        Remove-Item $linuxPath -Force -ErrorAction Stop

                    }

                    break

                }

                N{return $false}

                default{return $false}

            }

            #准备移植

            Write-Host "$projectNames 项目配置信息例如以下:" -ForegroundColor Yellow

            $projectConfigureInfo|select project,iplist,port,account,webpath|ft

            $rh=Read-Host 请确认是否開始上传文件(Y/N)

            switch($rh){

                Y{

                    if($computers.gettype().isarray){

                        foreach($computer in $computers){

                            $openstr="open"+" sftp://"+$user+":"+$passwd+"@"+$computer+":"+$port

                            D:\Tools\winscp520\WinSCP.exe /console /command "option batch continue" "option confirm off" $openstr "option transfer binary" "put $parentPath*" #"exit"

                        }

                    }else{

                        $openstr="open"+" sftp://"+$user+":"+$passwd+"@"+$computers+":"+$port

                        D:\Tools\winscp520\WinSCP.exe /console /command "option batch continue" "option confirm off" $openstr "option transfer binary" "put $parentPath*" #"exit"

                    }

                    break

                }

                N{return $false}

                default{return $false}

            }

}else{

            Write-Warning "没有匹配到项目 $projectNames 的配置信息。请检查配置文件 $script:projectConfigureFile"

            pause

            break

        }

    }

}

Upload

#>

Powershell 的自己主动部署的更多相关文章

  1. 菜鸟教程工具(三)——Maven自己主动部署Tomcat

    书连接至背面,在博客上,他介绍了如何使用Maven该项目包,这篇文章说,关于如何使用Maven会踢war部署包Tomcat.而不是手动copy过去. 眼下比較流行的方式有两种:一种是利用Tomcat官 ...

  2. 【大话QT之十三】系统软件自己主动部署实现方案

    本篇文章是对[大话QT之十二]基于CTK Plugin Framework的插件版本号动态升级文章的补充,在上篇文章中我们阐述的重点是新版本号的插件已经下载到plugins文件夹后应该怎样更新本地正在 ...

  3. Eclipse中的Web项目自己主动部署到Tomcat

    一.原因. 1.写java程序有一段时间了,但非常久没用eclipse了.所以使用eclipse编写的web项目部署到tomcat 的方式也不是非常清楚,以下记录一下将Eclipse 上的web项目自 ...

  4. SVN配置以及自己主动部署到apache虚拟文件夹

    SVN配置以及自己主动部署到apache虚拟文件夹 一.VisualSVN server 服务端和TortoiseSVNclient下载 VisualSVN下载:http://subversion.a ...

  5. MAVEN自己主动部署到tomcat

    前面几篇文章maven生成的war包都是手动部署到tomcat,显然这样是非常麻烦的.那么这一篇文章就来介绍一个怎样使用maven高速自己主动的部署项目到tomcat容器中. 1.首先我们须要配置to ...

  6. 【转】Powershell与jenkins集成部署的运用(powershell运用)

    powershell简介: 远程管理采用的一种新的通信协议,Web Services for Management,简称WS-MAN它通过http或者https进行工作,WS-WAN的实现主要基于一个 ...

  7. Eclipse中的Web项目自己主动部署到Tomcat以及怎样在Eclipse中使用My Eclipseproject

    我是一个新手学习Java,servlet和Jsp. 痛苦的是我时候一个.net程序猿,习惯了微软的VS IDE一切都是封装好的.傻瓜式的使用, 不须要关心内部实现. 悲催的是我看到资料都是My Ecl ...

  8. Service Fabric 用 Powershell 部署应用到本地

    前置说明 安装 Service Fabric SDK,会在本机 C:\Program Files\Microsoft SDKs\Service Fabric\Tools\PSModule\Servic ...

  9. Maven实现Web应用集成測试自己主动化 -- 部署自己主动化(WebTest Maven Plugin)

    上篇:Maven实现Web应用集成測试自己主动化 -- 測试自己主动化(WebTest Maven Plugin) 之前介绍了怎样在maven中使用webtest插件实现web的集成測试,这里有个遗留 ...

随机推荐

  1. Maker's Schedule, Manager's Schedule

    http://www.paulgraham.com/makersschedule.html manager's schedule 随意性强,指随时安排会面,开会等活动的 schedule; maker ...

  2. 批处理学习笔记1 - Hellow World

    记录自己学习批处理的一点总结吧. 批处理的好处: 可以配合vs,在build完文件之后执行自己的批处理命令. 可以批量修改文件名,或者进行复杂的查询等,对文件可编程操作. 从Hellow world开 ...

  3. [na]诺顿ghost磁盘对刻(备份系统分区或数据分区)

    一 诺顿ghost简介 ,可以克隆分区 也可以克隆磁盘 ,克隆成img或磁盘内容对刻 ,磁盘分区--img---磁盘分区 磁盘---磁盘 二 操作步骤 对刻好的系统 整体思路: ,A是模板机,A有C ...

  4. Remoting异步回调,向在线用户广播消息

    本文目的:向Remoting在线客户端广播消息. 使用的主要技术:异步,回调,广播. 实现过程: 定义远程实例 using System; using System.Collections.Gener ...

  5. hdoj1160 FatMouse's Speed 动态规划

    FatMouse's Speed Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) ...

  6. ny16 矩形嵌套

    矩形嵌套 时间限制:3000 ms  |  内存限制:65535 KB 难度:4 描述 有n个矩形,每个矩形可以用a,b来描述,表示长和宽.矩形X(a,b)可以嵌套在矩形Y(c,d)中当且仅当a< ...

  7. Office 2013 Excel 打开文档很慢很慢的解决方法

    这个问题查了很多案例,试了很多方法,但是只有下面这个方法有用! 这几天打开excel文档很慢很慢,双击之后好久没反应,过会儿它才慢慢冒出来,当时将就了,刚刚休息的时候想着查一下吧,不然很影响工作效率! ...

  8. JS地毯式学习三

    1. 插件是一类特殊的程序 . 他可以扩展浏览器的功能 , 通过下载安装完成 . 比如 , 在线音乐.视频动画等等插件. // 检测非 IE 浏览器插件是否存在function hasPlugin(n ...

  9. 【C#/WPF】获取项目的根目录(Root Directory)

    /// <summary> /// 获得项目的根路径 /// </summary> /// <returns></returns> public str ...

  10. WIFEXITED/WEXITSTATUS/WIFSIGNALED

    WIFEXITED/WEXITSTATUS/WIFSIGNALED If the exit status value (*note Program Termination::) of the chil ...