orkanson

WSUS Fehler bei Nachinstallationsaufgaben

Hallo,

die Nachinstallationsaufgaben brechen leider immer wieder ab. Aus dem Log werde ich nicht schlau. Kann jemand was anfangen und helfen?

Alle WSUS Rollen deinstallieren - neuinstallieren hat nichts gebracht.

2018-12-20 16:47:49  Postinstall started
2018-12-20 16:47:49  Detected role services: Api, UI, WidDatabase, Services
2018-12-20 16:47:49  Start: LoadSettingsFromParameters
2018-12-20 16:47:49  Content local is: True
2018-12-20 16:47:49  Content directory is: G:\WSUS-Server
2018-12-20 16:47:49  SQL instname is: 
2018-12-20 16:47:49  End: LoadSettingsFromParameters
2018-12-20 16:47:49  Start: Run
2018-12-20 16:47:49  Fetching WsusAdministratorsSid from registry store
2018-12-20 16:47:49  Value is S-1-5-21-341760806-497443497-2456209545-1025
2018-12-20 16:47:49  Fetching WsusReportersSid from registry store
2018-12-20 16:47:49  Value is S-1-5-21-341760806-497443497-2456209545-1026
2018-12-20 16:47:50  Configuring content directory...
2018-12-20 16:47:50  Configuring groups...
2018-12-20 16:47:50  Starting group configuration for WSUS Administrators...
2018-12-20 16:47:50  Found group in regsitry, attempting to use it...
2018-12-20 16:47:52  Writing group to registry...
2018-12-20 16:47:52  Finished group creation
2018-12-20 16:47:52  Starting group configuration for WSUS Reporters...
2018-12-20 16:47:52  Found group in regsitry, attempting to use it...
2018-12-20 16:47:52  Writing group to registry...
2018-12-20 16:47:52  Finished group creation
2018-12-20 16:47:52  Configuring permissions...
2018-12-20 16:47:52  Fetching content directory...
2018-12-20 16:47:52  Fetching ContentDir from registry store
2018-12-20 16:47:52  Value is G:\WSUS-Server
2018-12-20 16:47:52  Fetching group SIDs...
2018-12-20 16:47:52  Fetching WsusAdministratorsSid from registry store
2018-12-20 16:47:52  Value is S-1-5-21-341760806-497443497-2456209545-1025
2018-12-20 16:47:52  Fetching WsusReportersSid from registry store
2018-12-20 16:47:52  Value is S-1-5-21-341760806-497443497-2456209545-1026
2018-12-20 16:47:52  Creating group principals...
2018-12-20 16:47:52  Granting directory permissions...
2018-12-20 16:47:52  Granting permissions on content directory...
2018-12-20 16:47:53  Granting registry permissions...
2018-12-20 16:47:53  Granting registry permissions...
2018-12-20 16:47:53  Granting registry permissions...
2018-12-20 16:47:53  Configuring shares...
2018-12-20 16:47:53  Configuring network shares...
2018-12-20 16:47:53  Fetching content directory...
2018-12-20 16:47:53  Fetching ContentDir from registry store
2018-12-20 16:47:53  Value is G:\WSUS-Server
2018-12-20 16:47:53  Fetching WSUS admin SID...
2018-12-20 16:47:53  Fetching WsusAdministratorsSid from registry store
2018-12-20 16:47:53  Value is S-1-5-21-341760806-497443497-2456209545-1025
2018-12-20 16:47:53  Content directory is local, creating content shares...
2018-12-20 16:47:53  Creating share "UpdateServicesPackages" with path "G:\WSUS-Server\UpdateServicesPackages" and description "A network share to be used by client systems for collecting all software packages (usually applications) published on this WSUS system."  
2018-12-20 16:47:53  Deleting existing share...
2018-12-20 16:47:53  Creating share...
2018-12-20 16:47:53  Share successfully created
2018-12-20 16:47:53  Creating share "WsusContent" with path "G:\WSUS-Server\WsusContent" and description "A network share to be used by Local Publishing to place published content on this WSUS system."  
2018-12-20 16:47:53  Deleting existing share...
2018-12-20 16:47:53  Creating share...
2018-12-20 16:47:53  Share successfully created
2018-12-20 16:47:53  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."  
2018-12-20 16:47:53  Deleting existing share...
2018-12-20 16:47:53  Creating share...
2018-12-20 16:47:53  Share successfully created
2018-12-20 16:47:53  Finished creating content shares
2018-12-20 16:47:53  Stopping service WSUSService
2018-12-20 16:47:53  Stopping service W3SVC
2018-12-20 16:47:54  Configuring WID database...
2018-12-20 16:47:54  Configuring the database...
2018-12-20 16:47:54  Establishing DB connection...
2018-12-20 16:47:55  Checking to see if database exists...
2018-12-20 16:47:55  Database exists
2018-12-20 16:47:55  Switching database to single user mode...
2018-12-20 16:47:58  Loading install type query...
2018-12-20 16:47:58  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

2018-12-20 16:47:58  Install type is: Reinstall
2018-12-20 16:47:58  Creating logins...
2018-12-20 16:47:58  Fetching account info for S-1-5-20
2018-12-20 16:47:58  Found principal
2018-12-20 16:47:58  Found account
2018-12-20 16:47:58  Got binary SID
2018-12-20 16:47:58  Fetching WsusAdministratorsSid from registry store
2018-12-20 16:47:58  Value is S-1-5-21-341760806-497443497-2456209545-1025
2018-12-20 16:47:58  Fetching account info for S-1-5-21-341760806-497443497-2456209545-1025
2018-12-20 16:47:58  Found principal
2018-12-20 16:47:58  Found account
2018-12-20 16:47:58  Got binary SID
2018-12-20 16:47:58  Setting content location...
2018-12-20 16:47:58  Fetching ContentDir from registry store
2018-12-20 16:47:58  Value is G:\WSUS-Server
2018-12-20 16:47:58  Swtching DB to multi-user mode......
2018-12-20 16:48:00  Finished setting multi-user mode
2018-12-20 16:48:00  Writing DB settings to registry...
2018-12-20 16:48:00  Disposing Connection
2018-12-20 16:48:00  Clearing Connection Pools
2018-12-20 16:48:00  Marking PostInstall done for UpdateServices-WidDatabase in the registry...
2018-12-20 16:48:00  Starting service W3SVC
2018-12-20 16:48:00  Configuring IIS...
2018-12-20 16:48:00  Start: ConfigureWebsite
2018-12-20 16:48:01  Configuring website on port 8530
2018-12-20 16:48:40  2018-12-20 16:48:03  Info      IISCustomAction    Setupaktion wird ausgeführt, Befehl "/Install"   
2018-12-20 16:48:37  Info      IISCustomAction    Der Befehl "/Install" wurde erfolgreich ausgeführt.  

2018-12-20 16:48:40  End: ConfigureWebsite
2018-12-20 16:48:40  Configuring performance counters...
2018-12-20 16:48:40  Configuring Stats.NET perf counter...
2018-12-20 16:48:40  Configuring reporting perf counter...
2018-12-20 16:48:40  Configuring client webservice perf counter...
2018-12-20 16:48:40  Configuring server sync webservice perf counter...
2018-12-20 16:48:40  Configuring API remoting perf counter...
2018-12-20 16:48:40  Bringing services online...
2018-12-20 16:48:40  Checking initialization status... 
2018-12-20 16:48:50  StartServer starting...
2018-12-20 16:48:50  Generating encryption key to write to the registry...
2018-12-20 16:48:50  Generating encryption key to write to the database...
2018-12-20 16:48:51  Generating encryption key succeeded...
2018-12-20 16:48:51  Setting WSUSService to autostart...
2018-12-20 16:48:51  WSUSService is set to autostart.
2018-12-20 16:48:51  Starting WSUSService...
2018-12-20 16:48:51  WSUSService is now started.
2018-12-20 16:48:51  Importing default detectoids.
2018-12-20 16:48:51  Importing CriticalUpdates.xml...
2018-12-20 16:48:51  Importing Drivers.xml...
2018-12-20 16:48:51  Importing DriverSets.xml...
2018-12-20 16:48:52  Importing FeaturePacks.xml...
2018-12-20 16:48:52  Importing MicrosoftCorporation.xml...
2018-12-20 16:48:52  Importing SecurityUpdates.xml...
2018-12-20 16:48:52  Importing ServicePacks.xml...
2018-12-20 16:48:52  Importing Tools.xml...
2018-12-20 16:48:52  Importing UpdateRollups.xml...
2018-12-20 16:48:53  Importing Updates.xml...
2018-12-20 16:48:53  Importing Windows.xml...
2018-12-20 16:48:53  Importing Windows2000family.xml...
2018-12-20 16:48:53  Importing WindowsServer2003DatacenterEdition.xml...
2018-12-20 16:48:54  Importing WindowsServer2003Family.xml...
2018-12-20 16:48:54  Importing WindowsXPfamily.xml...
2018-12-20 16:48:54  Importing LocalPublisher.xml...
2018-12-20 16:48:55  Importing LocallyPublishedPackages.xml...
2018-12-20 16:48:55  Importing Applications.xml...
2018-12-20 16:48:56  Importing Exchange.xml...
2018-12-20 16:48:57  Importing Office.xml...
2018-12-20 16:48:57  Importing SQL.xml...
2018-12-20 16:48:57  Importing Exchange2000Server.xml...
2018-12-20 16:48:57  Importing ExchangeServer2003.xml...
2018-12-20 16:48:57  Importing OfficeXP.xml...
2018-12-20 16:48:57  Importing Office2003.xml...
2018-12-20 16:48:58  Importing SQLServer.xml...
2018-12-20 16:48:58  Importing WindowsXP64BitEditionVersion2003.xml...
2018-12-20 16:48:59  Importing DefinitionUpdateSusXml.xml...
2018-12-20 16:49:00  Importing ClientServicingApiDetectoid.xml...
2018-12-20 16:49:00  Importing default detectoids succeeded.
2018-12-20 16:49:03  Synchronization in progress. Please cancel synchronization and rerun postinstall again. Exception: System.Net.WebException: Fehler bei der Anforderung mit HTTP-Status 503: Service Unavailable.
   bei System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall)
   bei System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object parameters)
   bei Microsoft.UpdateServices.Internal.ApiRemoting.GetServerVersion()
   bei Microsoft.UpdateServices.Internal.DatabaseAccess.AdminDataAccessProxy.GetServerVersion()
   bei Microsoft.UpdateServices.Internal.BaseApi.UpdateServer.CreateUpdateServer(String serverName, Boolean useSecureConnection, Int32 portNumber)
   bei Microsoft.UpdateServices.Internal.BaseApi.UpdateServer..ctor(Boolean bypassApiRemoting)
   bei Microsoft.UpdateServices.Setup.StartServer.StartServer.FixSubscriptionCategories()
2018-12-20 16:49:03  StartServer encountered errors. Exception=Synchronization in progress. Please cancel synchronization and run postinstall again.
2018-12-20 16:49:03  Microsoft.UpdateServices.Administration.CommandException: Der WSUS-Dienst konnte nicht gestartet und nicht konfiguriert werden.
   bei Microsoft.UpdateServices.Administration.PostInstall.Run()
   bei Microsoft.UpdateServices.Administration.PostInstall.Execute(String arguments)
Auf Facebook teilen
Auf X (Twitter) teilen
Auf Reddit teilen
Auf Linkedin teilen

Content-ID: 396273

Url: https://administrator.de/forum/wsus-fehler-bei-nachinstallationsaufgaben-396273.html

Ausgedruckt am: 26.04.2025 um 05:04 Uhr

Orkanson
Orkanson 20.12.2018 um 18:31:23 Uhr
Goto Top