CentOS 6.x yum install phpmyadmin 설치에러
Apache + MySQL + PHP + phpMyAdmin 을 설치하는데 아래와 같은 에러가 나면서 설치가 안되는 경우가 있네요~
[root@c69 bin]# yum install phpmyadmin
...
--> Processing Conflict: php71u-common-7.1.6-1.ius.el6.x86_64 conflicts php-common < 7.1.6-1.ius.el6
--> Finished Dependency Resolution
Error: php71u-common conflicts with php-common-5.3.3-49.el6.x86_64
You could try using --skip-broken to work around the problem
You could try running: rpm -Va --nofiles --nodigest
yum clean all 을 해도 안되는군요~
epel-release 문제인가 싶어서 epel-release 를 삭제 했다가 재설치 하였습니다.
# yum remove epel-release
...
=====================================================================================================
Package Arch Version Repository Size
=====================================================================================================
Removing:
epel-release noarch 6-8 @extras 22 k
Removing for dependencies:
ius-release noarch 1.0-15.ius.el6 installed 8.4 k
Transaction Summary
=====================================================================================================
Remove 2 Package(s)
# yum install epel-release
...
=====================================================================================================
Package Arch Version Repository Size
=====================================================================================================
Installing:
epel-release noarch 6-8 extras 14 k
Transaction Summary
=====================================================================================================
Install 1 Package(s)
삭제할 때와 재설치 할때 설치되는 패키지가 다른걸 보니 ius-release 가 문제였던거 같네요~
이제 phpmyadmin 을 설치하니 잘 됩니다.
'LINUX' 카테고리의 다른 글
NGINX 다운로드 트래픽 제어 (0) | 2017.07.07 |
---|---|
CentOS 6.x phpMyAdmin 4.0.x 설치 (0) | 2017.07.06 |
NGINX 프록시 사용시 REMOTE_ADDR 문제 (0) | 2017.07.05 |
NGINX Service Unavailable (0) | 2017.07.05 |
MariaDB open_files_limit 값 변경하기 (0) | 2017.07.05 |