Tratando de instalar el CU de Junio de Sharepoint 2013, al ejecutar psconfig para finalizar la instalación, me lanzaba el error que faltaban features (relacionadas al CU de junio) instalar en un par de servers, pero ya se había instalado el CU y se había reiniciado los servers.
Error: Missing on “Server”
Error: Some farm products and patches were not detected on this or other servers. If products or patches are missing locally, you must quit this program and install the required products and patches on this server before restarting this wizard.
Entonces lo que hice es ejecutar el siguiente comando
Get-SPProduct –local
Este comando refresca la información de hotfix instalados en el servidor local en la base de configuración. Una vez realizado la ejecución de este comando en cada servidor, actualizo (Refresh) el configuration wizard.
Para saber que Software falta instalar puede ejecutar el siguiente comando:
$spprod = Get-SPProduct
$spprod.Servers | select ServerName, Products, InstallStatus
$spprod.Servers | ? { $_.InstallStatus -eq "InstallRequired" } | % { $_.RequiredButMissingPatches }
Status Message | Description |
No action required | Upgrade is complete on the database. |
Upgrade in progress | Self-explanatory. This message will change once the database is upgraded. |
Database is too old and upgrade is required | The database is outside of compatibility range and must be upgraded. |
Database is in compatibility range and upgrade is recommended | The database is running within compatibility range, but can be upgraded. |
Database is up to date, but some sites are not completely upgraded. | The schema of the database was successfully upgraded, however some children (site collections) within the database have failed to be completely upgraded within this content database. |
Database is too new and is not supported | The database is outside of compatibility range and cannot be used by the farm because it is at a higher version level than the farm supports. Note, this shouldn’t occur for connected databases but can be reported when attempting to attach a database. |
Installed | Shown to indicate that no action is required. |
Missing/Required | Shown if a product is required on each server or if a patch for a given MSI is on one server but not the one this status is shown for. |
Missing/Optional | Shown if a product is not required on each server. |
Superseded | Shown if a patch is no longer required on a server because a newer patch supersedes it. |
En el caso que necesites upgrade las bases de contenido, puedes ejecutar el siguiente script
Get-SPContentDatabase | select Name, NeedsUpgrade
Status Message | Description |
No action required | Upgrade is complete on the database. |
Upgrade in progress | Self-explanatory. This message will change once the database is upgraded. |
Database is too old and upgrade is required | The database is outside of compatibility range and must be upgraded. |
Database is in compatibility range and upgrade is recommended | The database is running within compatibility range, but can be upgraded. |
Database is up to date, but some sites are not completely upgraded. | The schema of the database was successfully upgraded, however some children (site collections) within the database have failed to be completely upgraded within this content database. |
Database is too new and is not supported | The database is outside of compatibility range and cannot be used by the farm because it is at a higher version level than the farm supports. Note, this shouldn’t occur for connected databases but can be reported when attempting to attach a database. |
En el caso que hayas instalado todo el SW requerido, y te siga apareciendo el mensaje de error de “Missing on”, puedes ejecutar PSConfig con el parámetro “-noinstallcheck”, este ignora la verificación del patch en los servers.
PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures -installcheck -noinstallcheck.
Algunos links útiles:
No hay comentarios:
Publicar un comentario