さくらのVPSを使ってみる:phpMyAdmin

さくらのVPS では、phpMyAdminはyumでインストールできます。


# yum -y install phpmyadmin

このままではローカルホストからしか接続できないので、設定を変更します。
# vi /etc/httpd/conf.d/phpMyAdmin.conf
<Directory /usr/share/phpMyAdmin/>
#   <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>

デフォルトではBASIC認証なので、Cookieを使った認証に変更します。(お好みで)
# vi /etc/phpMyAdmin/config.inc.php
$cfg['blowfish_secret'] = '適当な文字列';
$cfg['Servers'][$i]['auth_type']     = 'cookie';

Apacheを再起動して完了。
# /etc/rc.d/init.d/httpd restart


  • Spread The Love
  • Digg This Post
  • Tweet This Post
  • Stumble This Post
  • Submit This Post To Delicious
  • Submit This Post To Reddit
  • Submit This Post To Mixx

0 Response to “さくらのVPSを使ってみる:phpMyAdmin”

Leave a Reply