# yum -y install phpmyadmin
설치 끝 입니다.
그런데 다른 브라우저에서 http://centos server주소/phpmyadmin 으로 접속하면 404 에러가 납니다.
이유는 최초 설정은 127.0.0.1 즉 로컬에서만 접속이 가능하도록 되어 있기 때문입니다.
# vi /etc/httpd/conf.d/phpMyAdmin.conf
<Directory /usr/share/phpMyAdmin/>
AddDefaultCharset UTF-8
<IfModule mod_authz_core.c>
# Apache 2.4
<RequireAny>
Require ip 127.0.0.1
Require ip ::1
</RequireAny>
</IfModule>
위 부분에서 <RequireAny> ~ </RequireAny> 사이에
Require all granted 를 추가해 준 후 저장후 빠져 나옵니다.
<RequireAny>
Require ip 127.0.0.1
Require all granted
Require ip ::1
</RequireAny>
# systemctl restart httpd
설정값 적용을 위해 아파치 서버를 재시작하면 접속이 되는것을 확인할 수 있습니다.
...[더 보기]