Error: Package: memcached-1.5.10-1.el6.remi.x86_64 (remi) Requires: libsasl2.so.2()(64bit)
i am trying to update sudo yum update -y it give me above error please help me how to fix this error
Thank you
Missing base repository, this dependency is provided by cyrus-sasl-lib-2.1.23-15.el6_6.2.x86_64
Related
do you know if there exists a way to use yum from inside a Lambda function. For example, I need to install mdbtools, but if in my lambda I write (in Python)
subprocess.run(['yum', 'install', 'mdbtools'])
then it says
[ERROR] FileNotFoundError: [Errno 2] No such file or directory: 'yum'
I also tried with
os.system('yum install mdbtools')
but it says
sh: yum: command not found
Finally, I read from here to enable also the EPEL repository, so I tried with
os.system('sudo amazon-linux-extras install epel -y; sudo yum-config-manager --enable epel; yum install mdbtools')
os.system('sudo amazon-linux-extras install epel -y; sudo yum-config-manager --enable epel; yum install mdbtools')
os.system('sudo amazon-linux-extras install epel -y; sudo yum-config-manager --enable epel; yum install mdbtools')
but again I get
sh: sudo: command not found
sh: sudo: command not found
sh: yum: command not found
Can you help? Thanks in advance.
If yum existed in the Lambda environment, it should be in /bin/yum. I've looked there, and don't see it, so I'm going to assume that you won't be able to run it.
If you need a library that can't be packaged in a deployment bundle, you'll need to use a Lambda Container Image. Start with one of the pre-built base images, and run yum in your Dockerfile.
However, I see that you've tagged this question with ms-access. If you're trying to install a Microsoft product in a the Linix-based Lambda environment, you'll need to do a lot more than just run yum.
This is not how it is intended to work with dependencies in Lambdas.
It can be achieved in another way though.
You should include all the libs and dependencies in your .zip file which you upload. More information on that here.
While running $ sudo yum -y update in RHEL, the execution failed with the error message:
Could not open: jenkins-2.249.1-1.1.noarch.rpm
error: gpg check failed.
Why do I get this error message and how can I resolve it?
Update Red Hat or its compatible operating systems using the below command:
rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
Then execute
$ sudo yum -y update
If the above package is out of date in the future, please click here to read more info: https://www.jenkins.io/blog/2020/07/27/repository-signing-keys-changing/
Please help me to resolve this issue about the install of the etsproxy
This is an error when running command below:
sudo easy_install etsproxy
Searching for etsproxy
Reading https://pypi.python.org/simple/etsproxy/
No local packages or download links found for etsproxy
error: Could not find suitable distribution for Requirement.parse('etsproxy')
Did u try install by pip?
pip install -U etsproxy
https://pypi.org/project/etsproxy/
Im following these steps to install gRPC on my freshly launched AWS EC2 Instance:
https://jitpaul.blog/2018/04/18/grpc-on-aws/
When I try to execute this line:
sudo yum install libgflags-dev libgtest-dev
I get this error:
I don't want to mess up anything, please help.
Try instead:
sudo yum install gflags-dev
sudo yum install gtest-dev
That should install libgflags-dev and libgtest-dev.
As soon as I do a successful yum install epel-release (epel-release-7-6 or epel-release-7-8) on a fresh Centos7 installation then any subsequent yum update or yum install end with the error message xz compression not available. I tried reinstalling a few times and I get the same problem. This is all happening in a chroot but I don t think it s relevant.
Please help :)
Installing pyliblzma before epel-release solves the problem for me. Remove epel-release if it already installed.
yum remove -y epel-release
yum install -y pyliblzma
yum install -y epel-release