[CentOS 7]pgadmin4 설치

HardCarry·2022년 6월 30일

[https://www.pgadmin.org/download/pgadmin-4-rpm/][링크텍스트](https://www.pgadmin.org/download/pgadmin-4-rpm/)

설치 안되는 에러 있으면 아래와 같이 해결

yum --disablerepo=pgAdmin4 
yum-config-manager --disable pgAdmin4
sudo yum -i install pgadmin4
sudo yum install pgadmin4-desktop
sudo yum install pgadmin4-web

Transaction check error: 발생

해결 방법으로 다음과 같다.

  1. Install the yum-utils package:
yum install yum-utils
  1. The package-cleanup --dupes lists all duplicate packages:
package-cleanup --dupes
  1. The package-cleanup --cleandupes removes the duplicates (it asks for a confirmation to remove all duplicates unless the -y switch is given):
package-cleanup --cleandupes  
  1. Edit /etc/yum.conf, set the following line:
exactarch=1
  1. Run yum command:
yum clean all
yum update
profile
안녕하세요, 하드캐리입니다

0개의 댓글