Solve the problem of yum installation error Protected multilib versions

Solve the problem of yum installation error Protected multilib versions

Today, when installing nginx on the cloud server, I need to install some dependent libraries such as zlib first, but an error occurs when installing zlib.

yum install -y zlib zlib-devel

(-y means automatic y if you need to select yes or no) The following is the error

Protected multilib versions: zlib-1.2.7-17.el7.x86_64 != zlib-1.2.7-15.el7.i686

The reason is that multiple libraries cannot coexist, but updating does not work either. However, you can add

--setopt=protected_multilib=false

The complete command is

yum install -y zlib zlib-devel --setopt=protected_multilib=false

Okay, perfect solution, Prefect

The above article on solving the problem of yum installation error Protected multilib versions is all the content that the editor shares with you. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to mirrorlist.txt error in Yum installation

<<:  Usage and performance optimization techniques of aggregate function count in MySQL

>>:  Detailed explanation of how to automatically refresh the page and refresh method after deleting Vue list data

Recommend

MySQL Innodb key features insert buffer

Table of contents What is insert buffer? What are...

Why MySQL does not recommend deleting data

Table of contents Preface InnoDB storage architec...

Native JS to implement real-time clock

Share a real-time clock effect implemented with n...

js canvas realizes random particle effects

This article example shares the specific code of ...

Vue3 implements Message component example

Table of contents Component Design Defining the f...

How to use union all in MySQL to get the union sort

Sometimes in a project, due to some irreversible ...

Implementing parameter jump function in Vue project

Page Description:​ Main page: name —> shisheng...

MYSQL unlock and lock table introduction

MySQL Lock Overview Compared with other databases...

Example code comparing different syntax formats of vue3

The default template method is similar to vue2, u...

Vue implements online preview of PDF files (using pdf.js/iframe/embed)

Preface I am currently working on a high-quality ...

JavaScript to achieve a simple countdown effect

This article example shares the specific code of ...

What are the new features of Apache Spark 2.4, which will be released in 2018?

This article is from the Apache Spark Meetup held...