CentOS 8.x 버전에서 부터는 yum install phpMyAdmin 으로 설치가 안되는군요~

직접 다운로드 받아서 설치하는 방법이 있긴 하지만 엄청 번거롭습니다.

 

아래는 dnf 명령어로 간단하게 설치 하는 방법입니다.

dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
dnf -y --enablerepo=remi install phpMyAdmin

엄청 간단하지요~ ㅎ

 

이제 외부에서 접속이 가능하게 아파치 설정을 바꾸어 주면 됩니다.

<Directory /usr/share/phpMyAdmin/>
   AddDefaultCharset UTF-8
   #Require local
   Require all granted
</Directory>

# systemctl restart httpd

아파치를 재시작 해주고 접속합니다.

 

제 경우엔 PHP-FPM 으로 설정이 되어 있어서 브라우저 화면에 아무것도 뜨지 않는 문제가 있었습니다.

그래서 wget https://files.phpmyadmin.net/phpMyAdmin/5.1.4/phpMyAdmin-5.1.4-all-languages.zip 다운로드 받아서 설치하고 오류를 확인해 봤더니 session.save_path 디렉토리 퍼미션 문제더군요~

이런 경우는 https://ivps.tistory.com/814 여기를 참고하세요~

 

블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,

오라클 클라우드에 CentOS 8 stream 버전을 설치하고 yum 명령어를 사용하니 아래와 같은 에러 메시지가 표시되네요~

패키지 설치해주는 yum 명령어가 8버전 부터는 dnf 로 바뀌었나봅니다.

좀더 확실하게 관리를 해준다고 하네요.

 

[root@ivps ~]# dnf clean all
Failed loading plugin "osmsplugin": No module named 'librepo'
58 files removed
[root@ivps ~]# dnf install python3-librepo -y
Failed loading plugin "osmsplugin": No module named 'librepo'
CentOS Stream 8 - AppStream                      16 MB/s |  27 MB     00:01
CentOS Stream 8 - BaseOS                         15 MB/s |  26 MB     00:01
CentOS Stream 8 - Extras                        290  B/s |  18 kB     01:02
CentOS Stream 8 - Extras common packages         80  B/s | 5.2 kB     01:05
Extra Packages for Enterprise Linux 8 - x86_64  572 kB/s |  13 MB     00:23
Extra Packages for Enterprise Linux 8 - Next -  160 kB/s | 179 kB     00:01
Dependencies resolved.
================================================================================
 Package                Architecture  Version               Repository     Size
================================================================================
Installing:
 python3-librepo        x86_64        1.14.2-4.el8          baseos         54 k
Upgrading:
 librepo                x86_64        1.14.2-4.el8          baseos         93 k

Transaction Summary
================================================================================
Install  1 Package
Upgrade  1 Package

Total download size: 147 k
Downloading Packages:
(1/2): python3-librepo-1.14.2-4.el8.x86_64.rpm  2.2 MB/s |  54 kB     00:00
(2/2): librepo-1.14.2-4.el8.x86_64.rpm          3.5 MB/s |  93 kB     00:00
--------------------------------------------------------------------------------
Total                                           399 kB/s | 147 kB     00:00
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transaction
  Preparing        :                                                        1/1
  Upgrading        : librepo-1.14.2-4.el8.x86_64                            1/3
  Installing       : python3-librepo-1.14.2-4.el8.x86_64                    2/3
  Cleanup          : librepo-1.14.2-3.el8.x86_64                            3/3
  Running scriptlet: librepo-1.14.2-3.el8.x86_64                            3/3
  Verifying        : python3-librepo-1.14.2-4.el8.x86_64                    1/3
  Verifying        : librepo-1.14.2-4.el8.x86_64                            2/3
  Verifying        : librepo-1.14.2-3.el8.x86_64                            3/3

Upgraded:
  librepo-1.14.2-4.el8.x86_64
Installed:
  python3-librepo-1.14.2-4.el8.x86_64

Complete!
[root@ivps ~]# dnf clean all
49 files removed

 

버전이 바뀔때 마다 적응을 해야하는군요~

 

블로그 이미지

영은파더♥

가상서버호스팅 VPS 리눅스 서버관리 윈도우 IT

,