質問者
WSUSサーバ Windows2012 r2 バージョン: 6.3.9600.18694 にて同期が失敗する。

質問
-
お世話になります。
2019年8月25日より同時処理が失敗が続いてます。
クリーンアップ実施後も同現象です。以下のエラーメッセージが表示されます。
SoapException: Fault occurred
場所 System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
場所 System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
場所 Microsoft.UpdateServices.ServerSyncWebServices.ServerSync.ServerSyncProxy.GetUpdateData(Cookie cookie, UpdateIdentity[] updateIds)
場所 Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.WebserviceGetUpdateData(UpdateIdentity[] updateIds, List`1 allMetadata, List`1 allFileUrls, List`1& updatesWithSecureFileData, Boolean isForConfig)
場所 Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.GetUpdateDataInChunksAndImport(List`1 neededUpdates, List`1 allMetadata, List`1 allFileUrls, Boolean isConfigData)
場所 Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.ExecuteSyncProtocol(Boolean allowRedirect)昨年も同様、
https://blogs.technet.microsoft.com/jpwsus/2018/10/22/2018-9-sync/
にあったように、Microsoft 側サイトの一時的な障害ですか?ご確認お願い致します。
すべての返信
-
こんにちは。
以下、KBが該当している可能性があるかと思います。
WSUS synchronization fails with SoapException
https://support.microsoft.com/en-us/help/4482416/wsus-synchronization-fails-with-soapexceptionログを確認して合致しているようなら、対策を実施して頂ければ。
仮にMicrosoft 側の障害であれば、公式見解を待つか、メーカに問い合わせを行わない
と判断できないと思います。。 -
ご返信ありがとうございます。
Resolutionの部分読みましたが・・・
手順通りWSUSを終了させ、
その後PowerShell で下記のスクリプトをps1ファイルに書き込んで実行させました。
$server = Get-WsusServer
$config = $server.GetConfiguration()
# Check current settings before you change them
$config.MUUrl
$config.RedirectorChangeNumber
# Update the settings if MUUrl is https://fe2.update.microsoft.com/v6
$config.MUUrl = "https://sws.update.microsoft.com"
$config.RedirectorChangeNumber = 4002
$config.Save()
iisreset
Restart-Service *Wsus* -vPowerShell を起動させ、以下のコマンドよりスクリプトを実行しました。
PS C:\Users\administrator2\Desktop> ./kb.ps1
https://fe2.update.microsoft.com/v6
0停止中...
インターネット サービスは正常に停止されました
開始中...
インターネット サービスは正常に再開されました
詳細: 対象 "WSUS Certificate Server (WSusCertServer)" に対して操作 "Restart-Service" を実行しています。
詳細: 対象 "WSUS Service (WsusService)" に対して操作 "Restart-Service" を実行しています。
PS C:\Users\administrator\Desktop>実行自体は問題なかったと思いますが・・・はじめて、PowerShell を実行させたのでちょっと心配です。
再度同期処理実行させたいのですが、なかなか同期状態の表示がしません。
とりあえず気長に画面の更新後を待ってい実行してみます。
(マシンは2コア・メモリ7GBなんですが・・・なぜか遅い・・・)
ありがとうございます。