wsus无法启动配置

报错信息用了好几种办法没解决求帮忙解决问题谢谢

数据我是默认安装 sql server2012

数据库需不需配置条件

防火墙规则已配置好端口8530 8531

IIS安装完成后需要配置哪些。 希望得到满意的答复可以加微信

2020-03-19 20:17:08  Postinstall started

2020-03-19 20:17:08  Detected role services: Api, Database, UI, Services

2020-03-19 20:17:08  Start: LoadSettingsFromParameters

2020-03-19 20:17:08  Content local is: True

2020-03-19 20:17:08  Content directory is: D:\WSUS

2020-03-19 20:17:08  SQL instname is: I-WSUS-Xd

2020-03-19 20:17:08  End: LoadSettingsFromParameters

2020-03-19 20:17:08  Start: Run

2020-03-19 20:17:08  Fetching WsusAdministratorsSid from registry store

2020-03-19 20:17:08  Value is S-1-5-21-3081642551-3989233995-284036475-1005

2020-03-19 20:17:08  Fetching WsusReportersSid from registry store

2020-03-19 20:17:08  Value is S-1-5-21-3081642551-3989233995-284036475-1006

2020-03-19 20:17:08  Configuring content directory...

2020-03-19 20:17:08  Configuring groups...

2020-03-19 20:17:08  Starting group configuration for WSUS Administrators...

2020-03-19 20:17:08  Found group in regsitry, attempting to use it...

2020-03-19 20:17:10  Writing group to registry...

2020-03-19 20:17:10  Finished group creation

2020-03-19 20:17:10  Starting group configuration for WSUS Reporters...

2020-03-19 20:17:10  Found group in regsitry, attempting to use it...

2020-03-19 20:17:10  Writing group to registry...

2020-03-19 20:17:10  Finished group creation

2020-03-19 20:17:10  Configuring permissions...

2020-03-19 20:17:10  Fetching content directory...

2020-03-19 20:17:10  Fetching ContentDir from registry store

2020-03-19 20:17:10  Value is D:\WSUS

2020-03-19 20:17:10  Fetching group SIDs...

2020-03-19 20:17:10  Fetching WsusAdministratorsSid from registry store

2020-03-19 20:17:10  Value is S-1-5-21-3081642551-3989233995-284036475-1005

2020-03-19 20:17:10  Fetching WsusReportersSid from registry store

2020-03-19 20:17:10  Value is S-1-5-21-3081642551-3989233995-284036475-1006

2020-03-19 20:17:10  Creating group principals...

2020-03-19 20:17:10  Granting directory permissions...

2020-03-19 20:17:10  Granting permissions on content directory...

2020-03-19 20:17:10  Granting registry permissions...

2020-03-19 20:17:10  Granting registry permissions...

2020-03-19 20:17:10  Granting registry permissions...

2020-03-19 20:17:10  Configuring shares...

2020-03-19 20:17:10  Configuring network shares...

2020-03-19 20:17:10  Fetching content directory...

2020-03-19 20:17:10  Fetching ContentDir from registry store

2020-03-19 20:17:10  Value is D:\WSUS

2020-03-19 20:17:10  Fetching WSUS admin SID...

2020-03-19 20:17:10  Fetching WsusAdministratorsSid from registry store

2020-03-19 20:17:10  Value is S-1-5-21-3081642551-3989233995-284036475-1005

2020-03-19 20:17:10  Content directory is local, creating content shares...

2020-03-19 20:17:10  Creating share "UpdateServicesPackages" with path "D:\WSUS\UpdateServicesPackages" and description "A network share to be used by client systems for collecting all software packages (usually applications) published

on this WSUS system."

2020-03-19 20:17:10  Deleting existing share...

2020-03-19 20:17:10  Creating share...

2020-03-19 20:17:10  Share successfully created

2020-03-19 20:17:10  Creating share "WsusContent" with path "D:\WSUS\WsusContent" and description "A network share to be used by Local Publishing to place published content on this WSUS system."

2020-03-19 20:17:10  Deleting existing share...

2020-03-19 20:17:10  Creating share...

2020-03-19 20:17:10  Share successfully created

2020-03-19 20:17:10  Creating share "WSUSTemp" with path "C:\Program Files\Update Services\LogFiles\WSUSTemp" and description "A network share used by Local Publishing from a Remote WSUS Console Instance."

2020-03-19 20:17:10  Deleting existing share...

2020-03-19 20:17:10  Creating share...

2020-03-19 20:17:10  Share successfully created

2020-03-19 20:17:10  Finished creating content shares

2020-03-19 20:17:10  Stopping service WSUSService

2020-03-19 20:17:11  Stopping service W3SVC

2020-03-19 20:17:12  Configuring database...

2020-03-19 20:17:12  Configuring the database...

2020-03-19 20:17:12  Establishing DB connection...

2020-03-19 20:17:12  Checking to see if database exists...

2020-03-19 20:17:12  Database exists

2020-03-19 20:17:12  Switching database to single user mode...

2020-03-19 20:17:15  Loading install type query...

2020-03-19 20:17:15  DECLARE @currentDBVersion       int

DECLARE @scriptMajorVersion     int = (14393)

DECLARE @scriptMinorVersion     int = (0)

DECLARE @databaseMajorVersion   int

DECLARE @databaseMinorVersion   int

DECLARE @databaseBuildNumber    nvarchar(10)

IF NOT EXISTS(SELECT * FROM sys.databases WHERE name='SUSDB')

BEGIN

SELECT 1

END

ELSE

BEGIN

SET @currentDBVersion = (SELECT SchemaVersion FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB')

SET @databaseBuildNumber = (SELECT BuildNumber FROM SUSDB.dbo.tbSchemaVersion WHERE ComponentName = 'CoreDB')

DECLARE @delimiterPosition INT = CHARINDEX('.', @databaseBuildNumber)

IF (@delimiterPosition = 0)

BEGIN

RAISERROR('Invalid schema version number', 16, 1) with nowait

return

END

SET @databaseMajorVersion = SUBSTRING(@databaseBuildNumber, 1, @delimiterPosition - 1)

SET @databaseMinorVersion = SUBSTRING(@databaseBuildNumber, (@delimiterPosition + 1), (10 - @delimiterPosition))

IF @currentDBVersion < 926

BEGIN

SELECT 3

END

ELSE

BEGIN

IF (@scriptMajorVersion > @databaseMajorVersion OR

(@scriptMajorVersion = @databaseMajorVersion AND @scriptMinorVersion > @databaseMinorVersion))

BEGIN

SELECT 2

END

ELSE IF (@scriptMajorVersion = @databaseMajorVersion AND

@scriptMinorVersion = @databaseMinorVersion)

BEGIN

SELECT 0

END

ELSE

BEGIN

SELECT 4

END

END

END

2020-03-19 20:17:15  Install type is: Reinstall

2020-03-19 20:17:15  Creating logins...

2020-03-19 20:17:15  Fetching account info for S-1-5-20

2020-03-19 20:17:15  Found principal

2020-03-19 20:17:15  Found account

2020-03-19 20:17:15  Got binary SID

2020-03-19 20:17:15  Fetching WsusAdministratorsSid from registry store

2020-03-19 20:17:15  Value is S-1-5-21-3081642551-3989233995-284036475-1005

2020-03-19 20:17:15  Fetching account info for S-1-5-21-3081642551-3989233995-284036475-1005

2020-03-19 20:17:15  Found principal

2020-03-19 20:17:15  Found account

2020-03-19 20:17:15  Got binary SID

2020-03-19 20:17:15  Setting content location...

2020-03-19 20:17:15  Fetching ContentDir from registry store

2020-03-19 20:17:15  Value is D:\WSUS

2020-03-19 20:17:15  Swtching DB to multi-user mode......

2020-03-19 20:17:15  Finished setting multi-user mode

2020-03-19 20:17:15  Writing DB settings to registry...

2020-03-19 20:17:15  Disposing Connection

2020-03-19 20:17:15  Clearing Connection Pools

2020-03-19 20:17:15  Marking PostInstall done for UpdateServices-Database in the registry...

2020-03-19 20:17:15  Starting service W3SVC

2020-03-19 20:17:15  Configuring IIS...

2020-03-19 20:17:15  Start: ConfigureWebsite

2020-03-19 20:17:16  Configuring website on port 8530

2020-03-19 20:17:34  2020-03-19 20:17:17  Info      IISCustomAction    正在执行安装程序操作,命令 /Install

2020-03-19 20:17:33  Info      IISCustomAction    命令 /Install 成功

2020-03-19 20:17:34  End: ConfigureWebsite

2020-03-19 20:17:34  Configuring performance counters...

2020-03-19 20:17:34  Configuring Stats.NET perf counter...

2020-03-19 20:17:34  Configuring reporting perf counter...

2020-03-19 20:17:34  Configuring client webservice perf counter...

2020-03-19 20:17:34  Configuring server sync webservice perf counter...

2020-03-19 20:17:34  Configuring API remoting perf counter...

2020-03-19 20:17:34  Bringing services online...

2020-03-19 20:17:34  Checking initialization status...

2020-03-19 20:17:34  Database needs initialization.

2020-03-19 20:17:34  StartServer starting...

2020-03-19 20:17:34  Generating encryption key to write to the registry...

2020-03-19 20:17:34  Generating encryption key to write to the database...

2020-03-19 20:17:34  Generating encryption key succeeded...

2020-03-19 20:17:34  Setting WSUSService to autostart...

2020-03-19 20:17:34  WSUSService is set to autostart.

2020-03-19 20:17:34  Starting WSUSService...

2020-03-19 20:17:34  WSUSService is now started.

2020-03-19 20:17:34  Importing default detectoids.

2020-03-19 20:17:34  Importing CriticalUpdates.xml...

2020-03-19 20:17:35  Importing Drivers.xml...

2020-03-19 20:17:35  Importing DriverSets.xml...

2020-03-19 20:17:35  Importing FeaturePacks.xml...

2020-03-19 20:17:35  Importing MicrosoftCorporation.xml...

2020-03-19 20:17:35  Importing SecurityUpdates.xml...

2020-03-19 20:17:35  Importing ServicePacks.xml...

2020-03-19 20:17:35  Importing Tools.xml...

2020-03-19 20:17:35  Importing UpdateRollups.xml...

2020-03-19 20:17:35  Importing Updates.xml...

2020-03-19 20:17:35  Importing Windows.xml...

2020-03-19 20:17:35  Importing Windows2000family.xml...

2020-03-19 20:17:35  Importing WindowsServer2003DatacenterEdition.xml...

2020-03-19 20:17:35  Importing WindowsServer2003Family.xml...

2020-03-19 20:17:35  Importing WindowsXPfamily.xml...

2020-03-19 20:17:35  Importing LocalPublisher.xml...

2020-03-19 20:17:35  Importing LocallyPublishedPackages.xml...

2020-03-19 20:17:35  Importing Applications.xml...

2020-03-19 20:17:35  Importing Exchange.xml...

2020-03-19 20:17:35  Importing Office.xml...

2020-03-19 20:17:35  Importing SQL.xml...

2020-03-19 20:17:35  Importing Exchange2000Server.xml...

2020-03-19 20:17:35  Importing ExchangeServer2003.xml...

2020-03-19 20:17:35  Importing OfficeXP.xml...

2020-03-19 20:17:35  Importing Office2003.xml...

2020-03-19 20:17:35  Importing SQLServer.xml...

2020-03-19 20:17:35  Importing WindowsXP64BitEditionVersion2003.xml...

2020-03-19 20:17:35  Importing DefinitionUpdateSusXml.xml...

2020-03-19 20:17:35  Importing ClientServicingApiDetectoid.xml...

2020-03-19 20:17:35  Importing default detectoids succeeded.

2020-03-19 20:17:35  Creating default subscription.

2020-03-19 20:17:35  Instantiating UpdateServer

2020-03-19 20:17:37  CreateDefaultSubscription failed. Exception: System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols.SoapException: 服务器无法处理请求。 ---> System.TypeInitializationException: “Microsoft.UpdateServices.Internal.ApiRemoting”的类型初始值设定项引发异常。

---> System.UnauthorizedAccessException: 对路径“Update Services”的访问被拒绝。

在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)

在 System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost)

在 System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost)

在 Microsoft.UpdateServices.Log.GetUsableLogFileName(String fileName, LogFileLocation& actualLogLocation)

在 Microsoft.UpdateServices.Log.InitializeFromConfig()

在 Microsoft.UpdateServices.Log.InitializeIfNeeded()

在 Microsoft.UpdateServices.Internal.ApiRemoting..cctor()

--- 内部异常堆栈跟踪的结尾 ---

在 Microsoft.UpdateServices.Internal.ApiRemoting..ctor()

--- 内部异常堆栈跟踪的结尾 ---

在 Microsoft.UpdateServices.Internal.BaseApi.SoapExceptionProcessor.DeserializeAndThrow(SoapException soapException)

在 Microsoft.UpdateServices.Internal.DatabaseAccess.AdminDataAccessProxy.GetServerVersion()

在 Microsoft.UpdateServices.Internal.BaseApi.UpdateServer.CreateUpdateServer(String serverName, Boolean useSecureConnection, Int32 portNumber)

在 Microsoft.UpdateServices.Internal.BaseApi.UpdateServer..ctor(Boolean bypassApiRemoting)

在 Microsoft.UpdateServices.Setup.StartServer.StartServer.CreateDefaultSubscription()

2020-03-19 20:17:37  StartServer encountered errors. Exception=System.Web.Services.Protocols.SoapException: 服务器无法处理请求。 ---> System.TypeInitializationException: “Microsoft.UpdateServices.Internal.ApiRemoting”的类型初始值设定项引发异常。 ---> System.UnauthorizedAccessException:

对路径“Update Services”的访问被拒绝。

在 System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)

在 System.IO.Directory.InternalCreateDirectory(String fullPath, String path, Object dirSecurityObj, Boolean checkHost)

在 System.IO.Directory.InternalCreateDirectoryHelper(String path, Boolean checkHost)

在 Microsoft.UpdateServices.Log.GetUsableLogFileName(String fileName, LogFileLocation& actualLogLocation)

在 Microsoft.UpdateServices.Log.InitializeFromConfig()

在 Microsoft.UpdateServices.Log.InitializeIfNeeded()

在 Microsoft.UpdateServices.Internal.ApiRemoting..cctor()

--- 内部异常堆栈跟踪的结尾 ---

在 Microsoft.UpdateServices.Internal.ApiRemoting..ctor()

--- 内部异常堆栈跟踪的结尾 ---

2020-03-19 20:17:37  Microsoft.UpdateServices.Administration.CommandException: 无法启动和配置 WSUS 服务

在 Microsoft.UpdateServices.Administration.PostInstall.Run()

在 Microsoft.UpdateServices.Administration.PostInstall.Execute(String[] arguments)

虚拟机安装未能启动服务器,虚拟机里安装Windowsserver2016,部署wsus出现无法启动和配置...相关推荐

  1. 虚拟机2012搭建DNS服务器,Windows Server2012 安装配置DNS服务器方法详解

    Windows Server2012 安装配置DNS服务器方法详解 在云服务器 Windows Server2012 上安装配置DNS服务器方法,安装与配置非常简单,在这里写个完整教程方便大家查询 一 ...

  2. 如何在mac里安装vmware,在mac里安装虚拟机,如何注册vmware

    安装步骤 下载并安装VMware Fusion. 打开VMware Fusion并单击"新建". 选择"安装从映像文件安装"的选项. 选择您要安装的Linux的 ...

  3. 华为服务器网卡驱动安装文件夹,服务器网卡驱动安装

    服务器网卡驱动安装 内容精选 换一换 华为云帮助中心,为用户提供产品简介.价格说明.购买指南.用户指南.API参考.最佳实践.常见问题.视频帮助等技术文档,帮助您快速上手使用华为云服务. 华为云帮助中 ...

  4. 虚拟机如何设置ftp服务器,虚拟机设置ftp服务器配置

    虚拟机设置ftp服务器配置 内容精选 换一换 对于不同的硬件设备,通过在BIOS中设置一些高级选项,可以有效提升服务器性能.服务器上的SMMU一般用来完成设备的地址转换,并且可以实现设备隔离,在虚拟化 ...

  5. 虚拟机连接到云服务器,虚拟机怎么连接云服务器

    虚拟机怎么连接云服务器 内容精选 换一换 通过Web浏览器登录资源,会话页面载入失败,提示由于服务器长时间无响应,连接已断开,请检查您的网络并重试(Code:T_514).云堡垒机系统与资源服务器之间 ...

  6. 虚拟机拷贝数据到服务器,虚拟机文件拷到u盘上

    虚拟机文件拷到u盘上 内容精选 换一换 如果您已对虚拟机磁盘进行备份,可参考本节将已备份的磁盘恢复到指定虚拟机.恢复前请确保目标虚拟机与备份虚拟机的磁盘控制器类型一致,否则将导致恢复失败.需要恢复的单 ...

  7. 华三刀片服务器如何安装系统,刀片服务器及其操作系统的安装方法及系统专利_专利查询 - 天眼查...

    一种刀片服务器操作系统的安装方法,其特征在于,包括:将刀片服务器设置为预启动执行环境PXE网卡启动:重启所述刀片服务器,所述PXE网卡获取并加载PXE控制内核:所述PXE控制内核加载操作系统启动内核以 ...

  8. 北信源安装显示同服务器,北信源客户端安装方法

    故障原因: 现像1:安装完北信源软件后,会卡在windows 花瓣处,无法启动. 现像2:或者启动后,在北信源控制台上,仅能观察到一台终端 现像3:接入办公网后,进入桌面后过一会自动死机的现像 故障分 ...

  9. 云服务器怎么安装虚拟主机,服务器上怎么安装虚拟主机

    服务器上怎么安装虚拟主机 内容精选 换一换 Linux操作系统XEN实例变更为KVM实例前,必须已完成必要的驱动安装和配置.本节操作指导您使用自动化脚本的方式为Linux云服务器安装驱动.配置磁盘自动 ...

  10. 服务器虚拟机租用价格,云服务器虚拟机租用

    云服务器虚拟机租用 内容精选 换一换 在分布式HA部署场景下,ASCS主备节点通过共享盘实现数据同步.本章节指导用户将ASCS主节点的数据盘绑定给ASCS备节点并为ASCS主备节点绑定浮动IP.已在S ...

最新文章

  1. 分布式缓存的面试题8
  2. LeetCode算法题0:分发糖果【贪心算法】
  3. Ubuntu终端命令行不显示颜色
  4. 阿里巴巴矢量图标库iconfont使用教程
  5. css3属性文字换行,CSS3让文本自动换行——word-break属性
  6. UVALive7670 Asa's Chess Problem,上下界费用流,另类解法
  7. 丁香园 武汉 神童_杭州、武汉、成都哪个城市更适合程序员发展
  8. iOS开发用如何用类quot;SKStoreProductViewControllerquot;跳转AppStore点赞评分?
  9. C#中常用的几个委托
  10. HBase中数据的多版本特性潜在的意外
  11. mysql 命令 select_Mysql基础命令(二)select查询操作
  12. 解决 Maven ‘parent.relativePath‘ of POM
  13. Gerrit error:remote: ERROR: The following addresses are currently registered:XXX
  14. C语言读取文件时txt中的汉字出现乱码的解决方案
  15. Python带_的变量或函数命名,带下划线的方法
  16. css实现文字渐变并兼容IE浏览器
  17. Java 编写在线考试系统-049 窗体程序 完整源码
  18. java线程 模拟窗口售票
  19. 【华人学者风采】聂礼强 山东大学
  20. Package ‘zipp‘ requires a different Python: 3.5.2 not in ‘>=3.6‘

热门文章

  1. 互联网12个创业派系500强,你认识多少?
  2. Android 正则表达式
  3. C语言经典回文数三种求法
  4. .NET Core技术研究-通过Roslyn代码分析技术规范提升代码质量
  5. 微信小程序下拉刷新功能
  6. 【软件测试岗面经分享】华为测试工程师面经,已成功上岸
  7. opencv之颜色空间转换(cvtColor)
  8. r语言和python的区别-Python和R语言的区别?
  9. 大转盘抽奖小程序源码
  10. MySQL 分页查询