解决补丁服务器 wsus 无状态更新 0x8024401f 错误
搭建了 WSUS 服务,做为上游补丁服务的副本供下游服务器更新,客户端服务器无法连接二级补丁更新服务,报错 0x8024401f,WSUS 提示计算机都是无状态的计算机,更新都是无状态的更新。
0x8024401f,一般来说是网络故障导致服务无法访问,系统的防火墙已经关闭,网络也能ping通基本就排除网络连接的问题。
通过排查日志C:\inetpub\logs\LogFiles\W3SVC1\u_exyymmdd.log
发现访问 /ClientWebService/client.asmx 服务返回 500 错误,初步定位为更新服务本身,直接通过页面访问地址可以返回具体错误原因。
访问 http://ip/ClientWebService/client.asmx ,返回报错
Could not find a base address that matches scheme https for the endpoint with binding BasicHttpBinding. Registered base address schemes are [http].
出现这个错误原因是更新服务配置了https协议,实际使用的是http,解决办法是去掉https服务。
修改 C:\Program Files\Update Services\WebServices\ClientWebService\Web.config
去掉标签 endpoint 和 bingding name 为 SSL 的配置,重起服务,访问页面不返回异常页面,补丁服务恢复正常。
80244010 http://woshub.com/windows-update-error-0x80244010-exceeded-max-server-round-trips/