libgtk-3.so.0 not found when trying to run mongodb-compass from RedHAt Linux - mongodb

I tried installing the latest version of Mongo compass by running the RPM in the red hat instance:
sudo yum install mongodb-compass-1.17.0.x86_64.rpm
When I try to run the mongodb-compass, I am getting the below error:
[ec2-user#ip-10-93-230-148 ~]$ mongodb-compass
mongodb-compass: error while loading shared libraries: libgtk-3.so.0: cannot open shared object file: No such file or directory
Can anyone please advise on how to resolve this issue?
Thanks
DJ

I am able to run compass in Redhat instance by installing gtk3-devel

Related

install php driver of mongo db on mac with m1 chip

I'm trying to install mongodb php driver on mac with m1 chip using pecl.
php 7.4
XAMPP
when I run command:
sudo pecl install mongodb
it start downloading, phpize, configure and after all make of downloaded package, but during the make process it throw this error in spite of that file exist.
result was same when I tried the steps manually too.
1 error generated.
make: *** [src/libmongoc/src/libmongoc/src/mongoc/mongoc-scram.lo] Error 1
ERROR: `make' failed
so I need to know if some one faced same issue and could solve it or not. I'll attach a shot of error
if you need any other deta
best regards

unable to install jd-gui on ubuntu 16.04,64 bit machine

Getting following error:
error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
Already tried installing using below cmd:
sudo apt-get install ia32-libs-gtk
Getting error for this too:E: Unable to locate package ia32-libs-gtk
Seems you need to install x86 version:
sudo apt-get install libgtk2.0-0:i386

Install robo3t on Ubuntu 16.04 LTS issue

I've tried to install robo3t in Ubuntu 16.04 LTS. When I run command ./robo3t, I received an error:
./robo3t: error while loading shared libraries: /home/robo3t-1.1.1-linux-x86_64-c93c6b0/bin/../lib/libQt5Network.so.5: file too short
Please help me resolve this issue! Thanks all
vist https://askubuntu.com/questions/386281/error-while-loading-shared-libraries-libglu-so-1
below command in my aws ubuntu 16.04 instance solved for me
sudo apt-get install libglu1

DB2 error while loading shared libraries

When i execute 'db2stop' or 'db2start' command on Centos finally 6.4 (Final). I am getting error as follows:
> error while loading shared libraries: libnuma.so.1: cannot open shared
> object file: No such file or directory
I tried as follows commands but it didn't work..
# yum install compat-libstdc++-33
# yum install libaio
waiting your solutions.
I executed the following command and I got it: apt-get install numactl
And also if you get following error
DBT3514W The db2prereqcheck utility failed to find the following 32-bit library file: "/lib/libpam.so*"
then execute
sudo yum install pam.i686

Unable to install rpm package in Red Hat Linux

I am using Red Hat Linux installed on VMWare ESXi.
I am using putty to access the machine.
I want to install xyz.noarch.rpm package on RHEL system.
When I try the command
rpm -ivh xyz.noarch.rpm
I get an error package already installed.
When I verify the same by using the rpm -q xyz.noarch.rpm.
I get response as package xyz.noarch.rpm is not installed.
I also tried with the uninstalling the same by using the command as rpm -ev xyz.noarch.rpm the also I get the same response as package xyz.noarch.rpm is not installed.
Can anybody help me to sort out the issue?
The file is named xyz.noarch.rpm, but in the database it's just xyz. So try rpm -qi xyz.
i faced a similar issue and found that both installation and removal (erase) was not working for a rpm package that i installed. i tried using
rpm -e --allmatches <package-name>
more info at : http://www.redhat.com/archives/rpm-list/2002-March/msg00138.html