Prince
Prince

Reputation: 51

How to resolve libpcre.so.1()(64bit) dependency in amazon linux ami

When try to install maxscale, it ask libpcre. How to install libpcre on linux?

rpm -ivh maxscale-1.4.3-1.rhel.7.x86_64.rpm
warning: maxscale-1.4.3-1.rhel.7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 8167ee24: NOKEY
error: Failed dependencies:
       libpcre.so.1()(64bit) is needed by maxscale-1.4.3-1.x86_64

Upvotes: 5

Views: 7851

Answers (1)

Satoshi Isomatsu
Satoshi Isomatsu

Reputation: 1

This worked for me:

yum install pcre2-devel.x86_64

Upvotes: -2

Related Questions