MSBUILD发布ERROR_USER_UNAUTHORIZED

时间:2017-06-16 13:31:24

标签: msbuild gitlab publish gitlab-ci continuous-delivery

摘要

我在Windows Server 2016上使用9.2.0 Gitlab的CI多运行程序。在我通过MSBUILD发布ASP.NET项目的步骤中,我从IIS获得了身份验证错误ERROR_USER_UNAUTHORIZED。但是当我在构建机器上使用CMD窗口时,我运行相同的命令进行发布 - 所有内容都已发布。如果我使用SYSTEMADMINISTRATOR帐户,则无关紧要。

重现的步骤

  1. 设置IIS发布。
  2. 设置Gitlab的构建代理。
  3. 创建Gitlab的YAML构建脚本(见下文)。
  4. 运行构建。
  5. 实际行为

    在发布步骤中,我遇到了ERROR_USER_UNAUTHORIZED错误。

    预期行为

    在发布步骤中,我将ASP.NET发布到服务器上。

    相关日志和/或屏幕截图

      C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\Microsoft\VisualStudio\v15.0\Web\Microsoft.Web.Publishing.targets(4292,5): msdeploy error ERROR_USER_UNAUTHORIZED: Не удалось выполнить задачу Web Deploy. (Выполнено подключение к удаленному компьютеру ("192.168.1.66") с использованием службы веб-управления, но не удалось авторизовать. Убедитесь, что вы используете правильные имя пользователя и пароль, что существует сайт, к которому выполняется подключение, и что учетные данные представляют пользователя, у которого есть разрешения на доступ к сайту.  Дополнительные сведения: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_USER_UNAUTHORIZED.) [C:\Gitlab_Build_Agents\1\builds\2378ccf8\0\rushydro\aisa\Sources\Mvc\Mvc.csproj]
    

    环境描述

    我在Windows 2016上使用共享Runner(gitlab-ci-multi-runner-windows-386,版本9.2.0).MSBUILD是Microsoft Visual Studio 2017的一部分。

    YAML脚本

    variables:
      solution: Sources\Faso.sln
      msbuild: C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\MSBuild\15.0\Bin\MSBuild.exe
      nunit: C:\NUnit\NUnit.Framework-3.7.0\bin\net-4.5\nunitlite-runner.exe
      nuget: C:\NuGet\nuget.exe
    
    before_script:
      - echo Setting encoding...
      - echo %solution%
      - echo Restoring NuGet packages...
      - '"%nuget%" restore "%solution%"'
    
    stages:
      - build-test
      - deploy-5023
    
    build-test:
      stage: build-test
      script:  
      - chcp 65001
      - echo Building...
      - '"%msbuild%" "%solution%" /t:Build /p:Configuration=Release /p:TargetFramework=v4.5.2'
      - echo Testing...
      - dir /s /b *.Tests.dll | findstr /r Tests\\*\\bin\\ > testcontainers.txt
      - 'for /f %%f in (testcontainers.txt) do "%nunit%" "%%f"'
      except:
      - tags
    
    deploy-5023:
      stage: deploy-5023
      script:
      - chcp 65001
      - echo Deploying...
      - '"%msbuild%" "%solution%" /p:DeployOnBuild=True /p:DeployTarget=MSDeployPublish /p:MsDeployServiceUrl=https://192.168.1.66:8172/msdeploy.axd /p:username=user /p:password=password /p:Configuration=Release /p:TargetFramework=v4.5.2 /p:AllowUntrustedCertificate=True /p:DeployIisAppPath=Faso /p:MSDeployPublishMethod=WMSVC /p:SkipExtraFilesOnServer=True /p:ExcludeFilesFromDeployment="Web.config;ConnectionStrings.config;system.config"'
      when: manual
      except:
      - tags
      artifacts:
        expire_in: 1 week
        paths:
        - Sources\Mvc\App_Data\
        - Sources\Mvc\bin\
        - Sources\Mvc\Content\
        - Sources\Mvc\favicon.ico
        - Sources\Mvc\Global.asax
        - Sources\Mvc\Web.config
    

1 个答案:

答案 0 :(得分:3)

通过更改MSBUILD的参数顺序和格式来解决。

- '"%msbuild%" "%solution%" /p:DeployOnBuild=True;Username=username;Password=password;DeployTarget=MSDeployPublish;MsDeployServiceUrl=https://192.168.1.66:8172/msdeploy.axd;Configuration=Release;TargetFramework=v4.5.2;AllowUntrustedCertificate=True;DeployIisAppPath=Faso;MSDeployPublishMethod=WMSVC;SkipExtraFilesOnServer=True;ExcludeFilesFromDeployment="Web.config;ConnectionStrings.config;system.config"'