PRVG-1172 IP address is on multiple interfaces virbr0

By DBAStack

Published on:

PRVG-1172 IP address is on multiple interfaces virbr0

Introduction

In this article, we'll look at resolving the PRVG-1172 IP address is on multiple interfaces virbr0 issue.

Cause

This PRVG-1172 IP address is on multiple interfaces virbr0 issue occurred during the RAC installation using the cluvy command.

Solution

We need to assess the current state of the virbr0 service address. To resolve the issue, we must first stop it while it's running and then proceed to disable it. Let's checkout the below command to do it.

Note: We have 2 ways to resolve the issue. I will share both the ways.

Method 1

Step 1) systemctl status libvirtd.service

Step 2) systemctl stop libvirtd.service

Step 3) systemctl disable libvirtd.service

Step 4) Reboot the machine

Step 5) ifconfig (Verify the IP addresses)

Method 2

Step 1) Verify the virbro status with the help of the below command.

brctl show

Output :

PRVG-1172 IP address is on multiple interfaces virbr0

Step 2) Make the virbr0 address down.

ip link set virbr0 down

Output :

ip link set virbr0 down

Step 3) Delete the virbr0 address.

brctl delbr virbr0

Output :

brctl delbr virbr0

Step 4) Verify the virbro status.

brctl show

Output :

brtcl show

Conclusion

We can resolve the issue with the help of the above 2 methods and then proceed with the RAC Installation.

Note: If you want to set the Lab in your home for practice to get your hands dirty then you can download and install Oracle VirtualBox, followed by the operating system, the Oracle binary software, and finally, create the database.

DBAStack

I have experience in database technology for more than 8 years. I hope with the help of this blog I will share knowledge and real-world experience with you all. You all can join me and together we will explore the world of database technology!

Related Post

Avahi-Daemon Not Configured (PRVG-1360)

INS-10102 Installer initialization failed

Port 1521 provided for this listener is currently in use

Copy plan from one database to another in Oracle 19c

Leave a Comment