If the ZENworks Server Upgrade fails, you must rectify the problem and re-run the ZENworks Upgrade Installer.
You must re-run the Upgrade Installer on the same server where the upgrade was started.
If the upgrade fails during the post-package upgrade database action, then on re-running and after zone authentication, the pre-upgrade Summary page displays and the upgrade proceeds to perform the database actions.
If Embedded PostgreSQL database is used, ensure that the .dbR and .logR files are deleted from the database folder before re-running the Upgrade Installer.
The following sections provide solutions to the problems that you might encounter while upgrading the ZENworks Primary Server:
ZENworks upgrade fails as the PostgreSQL Engine upgrade failed
The MDM device displays inconsistent status after upgrading to ZENworks 2020 Update 2
The Inventory-Only Agent (IOA) System Update Fails on SLED 15 SP1 devices
While using an MS-SQL database, during the upgrade or database creation, there are connection issues
Incorrect values displayed for the inventory records to be pruned
The ZENworks schema fails to upgrade due to collation incompatibility in MS SQL database
The upgrade XML log file is not displayed properly in Google Chrome and Firefox
On a Linux Primary Server, the legacy Novell services are listed in start configure action
ZENworks Upgrade Stuck at ZoneAuthConfigureAction
Externally mounted content-repo is not recognized
For example, if the content is available in /var/my-external-content-repo and /var/opt/novell/zenworks/content-repo points to that directory, then it might not work.
Hence, ensure that you move the /var/my-external-content-repo to a different partition and mount it to /var/opt/novell/zenworks/content-repo.
You can store your data on a local mount or on a network share such as NFS, SMB, or CIFS and mount the share in your content-repo directory to access your data.
Let us assume that /dev/sdb is a partition on which you are planning have the content-repo, perform the following steps:
Stop all the ZENworks services.
Create a directory by running mkdir /tmp/temp-mount
Mount the partition: mount </dev/sdb> /tmp/temp-mount
Move the content-repo by using mv /var/my-external-content-repo/* /tmp/temp-mount
Unmount the directory by using umount /tmp/temp-mount
Remove the directory by running rmdir /tmp/temp-mount
Remove the symbolic link by tunning rm /var/opt/microfocus/zenworks/content-repo/
Create a directory by running the mkdir /var/opt/microfocus/zenworks/content-repo/ command
mount </dev/sdb> /var/opt/microfocus/zenworks/content-repo. Ensure that this steps is performed automatically by adding an entry in the /etc/fstab file.
Example: //localhost/zenshare /var/opt/microfocus/zenworks/content-repo cifs username=root,password=rootpass 0 0
To verify, run ls /var/opt/microfocus/zenworks/content-repo
If the command lists the content and images folder, then the content-repo is configured successfully.
Run permissions.sh
Start all the ZENworks services.
ZENworks upgrade fails as the PostgreSQL Engine upgrade failed
The workaround should be performed only in case of stop service failure. However, this workaround is not recommended for failure at other stages.
Upgrade completes with an error on a Linux Primary Server
“![CDATA[Docker service check failed: Format specifier '%s']]. Severity is CDATA[8]]”
Search for the number of instances of “![CDATA[8]]” in the upgrade log. If there is only one instance, along with the above statement, then the upgrade is successful. Please verify the same by logging into ZCC.
Upgrading to ZENworks 2020 fails on Windows Primary Server
If the following error is seen in the system-update.log under folder %zenworks_home%\logs\system-update\5020000000fc50000000002019100412
[SystemUpdate] [MSI_INSTALL_ERROR] [ERROR] [novell-zenworks-primary-agent-20.0.0.3138.msi,1603] [] [] [ZENworks]
For more information, see TID.
If the server upgrade has already failed, then run the following command as a super user:
icacls "%zenworks_home%\cache" /remove:d Users
After running the command, retry the upgrade using the ZENworks 2020 Media Upgrade (ISO).
The MDM device displays inconsistent status after upgrading to ZENworks 2020 Update 2
After updating all the devices in the zone, you can ignore the MDM devices to baseline the update.
System Update Failed Due to Pending Reboot Error
The Inventory-Only Agent (IOA) System Update Fails on SLED 15 SP1 devices
To verify this, the Inventory-Only Agent (IOA) users or administrators can check the zmd-messages.log file and check for the 'Cannot run program "at": error=2, No such file or directory’ error.
In case the zypper command fails to identify the 'at' package, we can install the following RPMs:
The RPMs can be downloaded from https://rpmfind.net/linux/rpm2html/search.php
Search for ‘libHX28’ and download the rpm applicable to your OS platform.
Example: libHX28-3.22-lp150.1.7.x86_64.rpm
Search for ‘libfl2’ and download the rpm applicable to your OS platform.
Example: libfl2-2.6.4-lp150.2.48.x86_64.rpm
Search for ‘at’ and download the rpm applicable to your OS platform.
Example: at-3.1.20-lp150.2.27.x86_64.rpm
During the Upgrade of any Windows Primary Server, Windows Explorer Automatically Restarts a Few Times
For each prompt presented, press 'enter' to accept the <default> value, type 'back' to return to the previous action, or type 'quit' to exit.
When ZENworks Upgrade is launched, if the database is executing any transactions, it might conflict with the upgrade process
Log in to the database as a system user and launch the SQL client.
Execute one of the following scripts, based on the database type:
Oracle:
select 'ALTER SYSTEM KILL SESSION '''||SID||','||SERIAL#||''';' AS "Drop Query",b.sql_text,a.* from gv$session a, gv$sql b where (case when a.sql_id is null then a.prev_sql_id else a.sql_id end)=b.sql_id and a.program='JDBC Thin Client' and a.logon_time< (sysdate-3/60/24) and a.username='<<ZENWORKSUSER>>';
Where:
ZENWORKSUSER is the ZENworks database user name.
MS SQL:
select 'KILL '+cast(spid as varchar(100)) as "Drop Query", r.text,s.* from sys.sysprocesses s cross apply sys.dm_exec_sql_text (sql_handle) r where s.program_name='jTDS' and s.spid!=@@spid and s.login_time < dateadd(minute,-3,getdate()) and s.loginame='<<ZENWORKSUSER>>';
Where:
ZENWORKSUSER is the ZENworks database user name.
SQL Anywhere:
SELECT 'Drop connection '+cast(sa_conn_info.Number as varchar(100))+';' as "Drop Query", sa_conn_info.Number AS connection_number, DB_NAME( DBNumber ) AS database_name, sa_conn_info.name AS connection_name, sa_conn_info.userid, CONNECTION_PROPERTY( 'LoginTime', Number ) as "Login Time", CONNECTION_PROPERTY( 'LastStatement', Number ) As "Query" FROM sa_conn_info() where sa_conn_info.Number != @@spid and CONNECTION_PROPERTY( 'LoginTime', Number ) < dateadd(minute,-3,getdate()) and userid='<<ZENWORKSUSER>>';
Where
ZENWORKSUSER is the ZENworks database user name.
While using an Oracle database, during the upgrade or database creation, the TNS error message is displayed
While using an MS-SQL database, during the upgrade or database creation, there are connection issues
org.hibernate.exception.JDBCConnectionException: Cannot open connection Caused by: java.sql.SQLException: I/O Error: Connection reset Caused by: java.net.SocketException: Connection reset
By default, the maximum connection is 32,767. You can adjust it to Number of Primary Servers * 200.For more information on how to configure the user connections, see http://technet.microsoft.com/en-us/library/ms187030.aspx.
Check whether the MS-SQL server has high CPU utilization and database server load. Contact Micro Focus Customer Support for further assistance.
Incorrect values displayed for the inventory records to be pruned
For example, if you have marked 8,000,000 records out of the total 10,000,000 records for pruning, then 8,000,000 of 10,000,000 is displayed in the number of records specified for deletion field.
After successful pruning, when you relaunch the Upgrade wizard for pruning, the Database Pruning page displays an incorrect value in the Total number of records found to be deleted field.
For example, if 8,000,000 inventory records have been deleted out of 10,000,000 inventory records, then the ideal value to be displayed in the Total number of records found to be deleted field is 200,000.
Currently, an incorrect value is displayed. As a result, there is a mismatch in the values displayed for deleted Inventory records and for Inventory records that are yet to be deleted.
An error occurs when you delete a folder with a long name
com.novell.zenworks.datamodel.exceptions.InternalDataModelException: org.hibernate.exception.GenericJDBCException: Operation failed. The index entry of length 912 bytes for the index 'idx_zZENObject_Name' exceeds the maximum length of 900 bytes.
The ZENworks schema fails to upgrade due to collation incompatibility in MS SQL database
SQL Query to get Database Collations:
SELECT collation_name FROM sys.databases WHERE name = db_name();
SQL Query to get Database columns Collations:
select distinct collation_name from information_schema.columns where collation_name is not null;
Share the upgrade logs and queries output with the Micro Focus customer support for further analysis.
The upgrade XML log file is not displayed properly in Google Chrome and Firefox
microfocus-zenworks-configure -c
ConvertLogToHTMLConfigureAction -DlogFile=<LogFilePath>
The configure action converts the XML log file to HTML and opens the log file in a web browser.
Alternatively, you can view the log file using any text editor.
On a Linux Primary Server, the legacy Novell services are listed in start configure action
novell-zenworks-configure -c Start
The legacy Novell services are listed and not the new Micro Focus services. If you try to start, stop, or restart services, an exception error is displayed.
novell-zenworks-configure -c Start
The new Micro Focus services are now listed. You can start, stop, or restart the services.
ZENworks Primary Server Upgrade fails with the 'Zulu Platform x64 Architecture has stopped working' error
Zulu Platform x64 Architecture has stopped working
Note the current setting. Select Turn on DEP for essential Windows programs and services only if it is not selected. Restart the Windows server and retry upgrading ZENworks Primary Server. If the error persists, contact Micro Focus Support.
Important: If the setting was changed prior to upgrade, please revert the value and restart the Windows server.