phpMyAdmin 설치
-
yum으로 phpMyAdmin 설치
# yum install epel-release
# yum install phpmyadmin -
외부 접속 설정 변경
# 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
Require ip xxx.xxx.xxx.xxx /* 외부 접속 IP 설정 */
</RequireAny>
</IfModule> # systemctl restart httpd /* 아파치 재시작 */
'Linux > CentOS' 카테고리의 다른 글
[퍼옴]MySQL (MariaDB) 외부 접속하기 with 삽질기 (2) | 2016.09.19 |
---|---|
사용자 전환 root-> user , user->root (0) | 2016.09.08 |
CentOS 버전 확인 방법 (0) | 2016.03.16 |
CentOS 7 관리 - APM : Apache, PHP, MariaDB 설치 (4) | 2016.03.16 |