Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Ginni
Contributor III
Contributor III

Replicate Installation

I am currently attempting to install Qlik Replicate on a Linux system and have encountered some difficulties. I used the following commands as part of the installation process:

rpm -ivh areplicate-2024.5.0-563.x86_64.rpm

rpm -i areplicate-2024.5.0-563.x86_64.rpm

Unfortunately, I received an error message, and despite my efforts to troubleshoot the issue.

Ginni_0-1743093719771.png

 

I have not been able to resolve it. I would greatly appreciate any assistance or suggestions you could provide to help me overcome this challenge.

Labels (1)
1 Solution

Accepted Solutions
john_wang
Support
Support

Hello @Ginni ,

This error usually occurs due to one of the following reasons:

1.  Permission issues – Ensure you have sufficient privileges (the file mask is 644 by default). You may try the installation by "root" account, or "sudo", like:

     sudo rpm -ivh areplicate-2024.5.0-563.x86_64.rpm

2.  Another process is using rpm – A package management process (like yum, dnf, or another rpm command) might already be running.

     ps aux | grep -E 'yum|dnf|rpm'

3.  Stale lock file – If no package manager is running, but the lock file still exists, remove it:

     sudo rm -f /var/lib/rpm/.rpm.lock

     Please take note: (1) If no active processes are found, removing the lock file is safe. (2) If the system has recently crashed or been interrupted during an RPM operation, the lock file may have been left behind incorrectly.

Hope this helps.

John.

Help users find answers! Do not forget to mark a solution that worked for you! If already marked, give it a thumbs up!

View solution in original post

3 Replies
john_wang
Support
Support

Hello @Ginni ,

This error usually occurs due to one of the following reasons:

1.  Permission issues – Ensure you have sufficient privileges (the file mask is 644 by default). You may try the installation by "root" account, or "sudo", like:

     sudo rpm -ivh areplicate-2024.5.0-563.x86_64.rpm

2.  Another process is using rpm – A package management process (like yum, dnf, or another rpm command) might already be running.

     ps aux | grep -E 'yum|dnf|rpm'

3.  Stale lock file – If no package manager is running, but the lock file still exists, remove it:

     sudo rm -f /var/lib/rpm/.rpm.lock

     Please take note: (1) If no active processes are found, removing the lock file is safe. (2) If the system has recently crashed or been interrupted during an RPM operation, the lock file may have been left behind incorrectly.

Hope this helps.

John.

Help users find answers! Do not forget to mark a solution that worked for you! If already marked, give it a thumbs up!
Ginni
Contributor III
Contributor III
Author

Thanks @john_wang for the detailed explanation. I really appreciate your efforts.

john_wang
Support
Support

Hello @Ginni ,

Thank you very much for your support! If possible, please share the final solution—it would be helpful for all of us and other users.

Regards,

John.

Help users find answers! Do not forget to mark a solution that worked for you! If already marked, give it a thumbs up!