Compartir a través de


MSSQLSERVER_17120

Se aplica a:SQL Server

Detalles

Atributo Value
Nombre de producto SQL Server
Id. de evento 17120
Origen de eventos MSSQLSERVER
Componente SQLEngine
Nombre simbólico INIT_SPAWN
Texto del mensaje SQL Server no pudo generar el subproceso %s. Compruebe el registro de errores de SQL Server y el registro de errores del sistema operativo para obtener información sobre posibles problemas relacionados.

Explicación

El error 17120 se genera cuando no se puede crear un subproceso que realiza tareas en segundo plano o del sistema. Algunos ejemplos de tareas en segundo plano son Checkpoint, Lazy Writer, Database Recovery task, Log Reader, Log Writer, Auto shrink task, Communication Manager, Parallel Reo worker task y muchos más. en %s el error contiene el nombre de la tarea. Estos son ejemplos de cómo puede aparecer este error en los registros de errores:

Error: 17120, Severity: 16, State: 1.
SQL Server could not spawn checkpoint thread. Check the SQL Server error log and the operating system error log for information about possible related problems.
Error: 17120, Severity: 16, State: 1.
SQL Server could not spawn FRunCommunicationsManager thread. Check the SQL Server error log and the operating system error log for information about possible related problems.
Error: 17120, Severity: 16, State: 1.
SQL Server could not spawn log writer thread. Check the SQL Server error log and the operating system error log for information about possible related problems.

Causa

SQL Server no puede crear un subproceso para que una tarea en segundo plano empiece a ejecutarse. Las causas más comunes son:

  • Memoria baja o sin memoria disponible en el sistema o dentro de SQL Server
  • SQL Server está en medio de un apagado
  • SQL Server es que el servicio no se puede iniciar debido a un problema de configuración o recurso erróneo

Acción del usuario

Diagnostique otros errores y en el sistema y vuelva a intentar la operación.

  1. Problemas de memoria insuficiente: El primer paso para iniciar la investigación es comprobar si hay condiciones de memoria insuficiente o de memoria insuficiente. Examine el registro de eventos del sistema y los registros de errores de SQL. Para obtener información sobre cómo solucionar problemas, consulte Solución de problemas de memoria insuficiente o poca memoria en SQL Server

  2. Resolución de protocolos mal configurados Un problema común que se ha notificado incluye protocolos SQL Server mal configurados. Para obtener más información, consulte SQL Server no se puede iniciar si todos los protocolos están deshabilitados. Puede observar la siguiente secuencia de errores en el registro de errores:

    Error: 17182, Severity: 16, State: 1.
    TDSSNIClient initialization failed with error 0xd, status code 0x4. Reason: **All protocols are disabled. The data is invalid**.
    Error: 17182, Severity: 16, State: 1.
    TDSSNIClient initialization failed with error 0xd, status code 0x1. Reason: Initialization failed with an infrastructure error. Check for previous errors. The data is    invalid.
    Error: 17826, Severity: 18, State: 3.
    Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the    error log.
    Error: 17120, Severity: 16, State: 1.
    SQL Server could not spawn FRunCommunicationsManager thread. Check the SQL Server error log and the operating system error log for information about possible related    problems.
    
  3. Resolución de problemas de configuración y actualización de TLS Otro problema común que se ha notificado incluye la configuración de TLS en el servidor, lo que impide que SQL Server cree una tarea de comunicación en segundo plano.

    Error: 26011, Severity: 16, State: 1.
    The server was unable to initialize encryption because of a problem with a security library. The security library may be missing. Verify that security.dll exists on  the    system.
    Error: 17182, Severity: 16, State: 1.
    TDSSNIClient initialization failed with error 0x139f, status code 0x80. Reason: Unable to initialize SSL support. The group or resource is not in the correct state  to    perform the requested operation.
    Error: 17182, Severity: 16, State: 1.
    TDSSNIClient initialization failed with error 0x139f, status code 0x1. Reason: Initialization failed with an infrastructure error. Check for previous errors. The group  or    resource is not in the correct state to perform the requested operation.
    Error: 17826, Severity: 18, State: 3.
    Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in  the    error log.
    Error: 17120, Severity: 16, State: 1.
    SQL Server could not spawn FRunCommunicationsManager thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.
    

    Asegúrese de configurar TLS correctamente para SQL Server. Para obtener información sobre las actualizaciones necesarias, consulte Compatibilidad con TLS 1.2 para Microsoft SQL Server

  4. Resolución de problemas de certificados de cifrado Otro problema común es la configuración incorrecta de los certificados TLS/SSL que conducen a SQL Server no poder iniciar e iniciar un subproceso.

    Error: 26014, Severity: 16, State: 1.
    Unable to load user-specified certificate [Cert Hash(sha1) "%hs"]. The server will not accept a connection. You should verify that the certificate is correctly installed.    See "Configuring Certificate for Use by SSL" in Books Online.
    
    Error: 17182, Severity: 16, State: 1.
    TDSSNIClient initialization failed with error 0x80092004, status code 0x80. Reason: Unable to initialize SSL support. Cannot find object or property.
    
    Error: 17826, Severity: 18, State: 3.
    Could not start the network library because of an internal error in the network library. To determine the cause, review the errors immediately preceding this one in the    error log.
    
    Error: 17120, Severity: 16, State: 1.
    SQL Server could not spawn FRunCommunicationsManager thread. Check the SQL Server error log and the Windows event logs for information about possible related problems.
    

    Para más información, consulte SQL Server servicio no se puede iniciar después de configurar una instancia para usar un certificado de capa de sockets seguros.