Linux

CentOS 6.5 phpMyAdmin 설치

붉은양말 2015. 1. 9. 16:18
반응형



#yum install http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm

#yum -y 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

     </RequireAny>

   </IfModule>

   <IfModule !mod_authz_core.c>

     # Apache 2.2

     #Order Deny,Allow

     #Deny from All

     #Allow from 127.0.0.1

     #Allow from ::1

   </IfModule>

</Directory>


<Directory /usr/share/phpMyAdmin/setup/>

   <IfModule mod_authz_core.c>

     # Apache 2.4

     <RequireAny>

       #Require ip 127.0.0.1

       #Require ip ::1

     </RequireAny>

   </IfModule>

   <IfModule !mod_authz_core.c>

     # Apache 2.2

     #Order Deny,Allow

     #Deny from All

     #Allow from 127.0.0.1

     #Allow from ::1

   </IfModule>

</Directory>


# service httpd restart


접속 : http://your-server-ip/phpMyAdmin/



반응형