MSDeploy をビルド プロセスに統合していますが、認証に問題があります。次のコマンドは正常に機能します。
msdeploy -verb:sync -source:appHostConfig="KitchenPC",computerName=192.168.0.3,userName=Administrator,password=secret -dest:package=c:\DeployTest\KPC.zip
ただし、これは機能しません。
msdeploy -verb:sync -source:appHostConfig="KitchenPC",computerName=192.168.0.3,userName=kpcpublish,password=secret -dest:package=c:\DeployTest\KPC.zip
エラーが発生します:
Error Code: ERROR_USER_NOT_ADMIN
More Information: Connected to '192.168.0.11' using the Web Deployment Agent Service, but could not authorize. Make sure you are an administ
rator on '192.168.0.11'. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_USER_NOT_ADMIN.
Error: The remote server returned an error: (401) Unauthorized.
Error count: 1.
上記のリンクの指示と、見つけた他のドキュメントに従いましたが、ほぼすべて同じことを言っています。
- kpcpublishというアカウントを作成しました
- このアカウントをMSDepSvcUsersというグループに追加しました。管理者にもアカウントを追加しました。
- サイトを右クリックして[Deploy] - > [Configure Web Deploy Publishing ] を選択し、リストに kpcpublish を追加しました。次のように述べています。
.
Publish enabled for 'SERVER\kpcpublish' Granted 'SERVER\kpcpublish' full control on 'C:\Website' Successfully created settings file 'C:\Users\Administrator\Desktop\SERVER_kpcpublish_KitchenPC.PublishSettings'
欠けているステップがあるに違いありませんが、何ができるのかわかりません。
アップデート:
プロパティの完全な HTTP パスを使用するとcomputerName
、次のエラーが表示されます。
エラー コード: ERROR_DESTINATION_NOT_REACHABLE 詳細情報: リモート コンピューター ("192.168.0.3") に接続できませんでした。リモート コンピューターで、Web Deploy がインストールされ、必要なプロセス ("Web 管理サービス") が開始されていることを確認します。詳細については、http: //go.microsoft.com/fwlink/ ?LinkId=221672#ERROR_DES TINATION_NOT_REACHABLE をご覧ください。エラー: リモート サーバーに接続できません エラー: 接続先が一定時間後に適切に応答しなかったため、接続試行が失敗したか、接続されたホストが応答しなかったために確立された接続が失敗しました 192.168.0.3:8192 エラー数: 1 .
確認したところ、Web 管理サービスは実際に実行されています。
別の更新:
システムを完全に舗装し、最初から再セットアップしました。IIS の役割をインストールし、WMSVC の実行に必要な [管理ツール] の下の [管理サービス] を確認しただけです。次に、Web PI をインストールし、「ホスティング プロバイダーの推奨構成」をインストールしました。これにより、Web Deploy 3.0 がインストールされます。ただし、これをインストール中にエラーが発生したことに気付きました (前回もこのエラーが発生したと思います)。次のようになります。
ログファイルもここに添付しました。
次に、Web Deploy 3.0 を手動でインストールしようとしましたが、既にインストールされていると表示されます。次に、MSI をhttp://www.iis.net/download/webdeployから直接ダウンロードし、「修復」モードで実行しました。それはうまくいったようです。また、WMSVC サービスが稼働していることにも気付きました。だからこれはよさそうだ。
それでも、MSDeploy は接続しません。ある種のファイアウォールの問題かもしれないと思ったので、ローカルで実行しました。HTTPS と HTTP の両方を使用して接続しようとしました。HTTPS でエラーが発生します。HTTP は 2 ~ 3 分後にタイムアウトします。
HTTPS:
msdeploy -verb:sync -source:appHostConfig="Default Web Site",computerName=https://STAGING:8172/msdeploy.axd,userName=Administrator,password=Khorf123 -dest:package=c:\DeleteMe.zip
Info: Using ID 'f3a54096-adc4-4f54-9e4f-ad8fde12edb6' for connections to the remote server.
Error Code: ERROR_CERTIFICATE_VALIDATION_FAILED
More Information: Connected to the remote computer ("staging") using the specified process ("Web Management Service"), but could not verify the server's certifi
cate. If you trust the server, connect again and allow untrusted certificates.
Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_CERTIFICATE_VALIDATION_FAILED.
Error: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.
Error: The remote certificate is invalid according to the validation procedure.
Error count: 1.
HTTP:
msdeploy -verb:sync -source:appHostConfig="Default Web Site",computerName=http://STAGING:8172/msdeploy.axd,userName=Administrator,password=Khorf123 -dest:package=c:\DeleteMe.zip
Info: Using ID 'ebee66f0-08e5-4d9d-98ea-0c2e59784895' for connections to the remote server.
Error: Could not complete the request to remote agent URL 'http://staging:8172/msdeploy.axd'.
Error: The operation has timed out
Error count: 1.