Azure Pipelines-部署代理問題

 

使用Azure Pipelines時代理腳本一直不成功,根據官方提示,可使用下方的註冊腳本自動執行代理shell

 

 

實際執行過程當中,常常是沒法執行完成,仔細閱讀腳本,發現該腳本一共作了以下幾步:windows

1.下載代理 agentZip壓縮包到C盤azagent目錄下服務器

2.解壓縮agent爲Agent1(若是存在序號會一次遞增)工具

3.運行解壓後的agent目錄種的「config.cmd」 啓動配置測試

4.刪除agentzip包ui

$ErrorActionPreference="Stop";If(-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent() ).IsInRole( [Security.Principal.WindowsBuiltInRole] 「Administrator」)){ throw "Run command in an administrator PowerShell prompt"};If($PSVersionTable.PSVersion -lt (New-Object System.Version("3.0"))){ throw "The minimum version of Windows PowerShell that is required by the script (3.0) does not match the currently running version of Windows PowerShell." };If(-NOT (Test-Path $env:SystemDrive\'azagent')){mkdir $env:SystemDrive\'azagent'}; cd $env:SystemDrive\'azagent'; for($i=1; $i -lt 100; $i++){$destFolder="A"+$i.ToString();if(-NOT (Test-Path ($destFolder))){mkdir $destFolder;cd $destFolder;break;}}; $agentZip="$PWD\agent.zip";$DefaultProxy=[System.Net.WebRequest]::DefaultWebProxy;$securityProtocol=@();$securityProtocol+=[Net.ServicePointManager]::SecurityProtocol;$securityProtocol+=[Net.SecurityProtocolType]::Tls12;[Net.ServicePointManager]::SecurityProtocol=$securityProtocol;$WebClient=New-Object Net.WebClient; $Uri='https://vstsagentpackage.azureedge.net/agent/2.144.2/vsts-agent-win-x64-2.144.2.zip';if($DefaultProxy -and (-not $DefaultProxy.IsBypassed($Uri))){$WebClient.Proxy= New-Object Net.WebProxy($DefaultProxy.GetProxy($Uri).OriginalString, $True);}; $WebClient.DownloadFile($Uri, $agentZip);Add-Type -AssemblyName System.IO.Compression.FileSystem;[System.IO.Compression.ZipFile]::ExtractToDirectory( $agentZip, "$PWD");.\config.cmd --deploymentgroup --deploymentgroupname "DeployGroup" --agent $env:COMPUTERNAME --runasservice --work '_work' --url 'https://dev.azure.com/TestRepo/' --projectname 'WebDemo'; Remove-Item $agentZip;

因爲微軟官網下載很慢致使第一步就卡住,那咱們就直接從官網直接下載壓縮包,在腳本中能夠直接看到zip包的下載地址,直接下載該文件便可。url

第二步:手動解壓到C盤azagent目錄下的Agent1文件夾中(目錄能夠自由建立,這裏使用的是agent1)spa

該目錄下存在2個cmd,config.cmd用來執行代理參數的配置,run.cmd負責啓動agent.net

第三步:配置代理config參數,這裏使用的powshell 須要 .\ 才能運行cmd 喔3d

 .\config

 

 

運行完發現部署組並無出現該代理,難道配置錯誤,仔細再閱讀原腳本,發現官方腳本中 config後面帶了一堆參數,ok 此次所有加上,裏面附帶了所屬部署組和項目名稱等參數

.\config.cmd --deploymentgroup --deploymentgroupname "DeployGroup" --agent $env:COMPUTERNAME --runasservice --work '_work' --url 'https://dev.azure.com/TestRepo/' --projectname 'WebDemo'

因爲以前已經配置了一次 須要先刪除原有的配置再執行(執行 .\config.cmd remove便可),而後再執行上面的腳本便可.

 

PS C:\azagent\A3> .\config.cmd remove
正在從服務器刪除代理
輸入 身份驗證類型 (對於 PAT 按 Enter) >
輸入 我的訪問令牌 > ***********************************
正在鏈接到服務器...
已成功: 正在從服務器刪除代理
正在刪除 .credentials
已成功: 正在刪除 .credentials
正在刪除 .agent
已成功: 正在刪除 .agent
PS C:\azagent\A3> .\config.cmd --deploymentgroup --deploymentgroupname "DeployGroup" --agent $env:COMPUTERNAME --runasse
rvice --work '_work' --url 'https://dev.azure.com/TestRepo/' --projectname 'WebDemo'

>> 鏈接:

輸入 身份驗證類型 (對於 PAT 按 Enter) > vwvyzagdtm7nhup
爲 身份驗證類型 輸入一個有效值。
輸入 身份驗證類型 (對於 PAT 按 Enter) >
輸入 我的訪問令牌 > ***********************************
正在鏈接到服務器...

>> 註冊代理:

正在掃描工具功能。
正在鏈接到服務器。
輸入 代理的部署組標記? (是/否) (對於 N 按 Enter) >
已成功添加代理
正在測試代理鏈接。
2019-02-11 01:22:26Z: 設置已保存。
輸入 要用於服務的用戶賬戶 (對於 NT AUTHORITY\SYSTEM 按
將文件權限授予「NT AUTHORITY\SYSTEM」。
已成功安裝服務 vstsagent.TestRepo.iZcdeh6xxtihkjZ
已成功設置服務 vstsagent.TestRepo.iZcdeh6xxtihkjZ 的恢
服務 vstsagent.TestRepo.iZcdeh6xxtihkjZ 已成功設置爲延
已成功配置服務 vstsagent.TestRepo.iZcdeh6xxtihkjZ
已成功啓動服務 vstsagent.TestRepo.iZcdeh6xxtihkjZ

 

此次終於看到成功界面了~~~~(>_<)~~~~

Azure devops項目 Deplpoyment Goups菜單中Targets下也終於出現了的該機器信息,狀態顯示Healthy表示健康可用,後續就能夠將項目發佈到該機器上了😄

 

注意:這裏使用的身份驗證類型爲PAT 建立Token後使用使用生成的Token令牌.建立方法 官方給出了教程

相關文章
相關標籤/搜索