Ubuntu 13.04
Sponsored Link

phpMyAdmin インストール2013/05/12

 
Webサーバーはインストール済みとして、 phpMyAdmin というパッケージをインストールして、ブラウザでMySQLの操作ができるようにします。
[1] まずは phpMyAdmin のインストールと設定です。
root@www:~#
aptitude -y install phpmyadmin
# インストール中、phpmyadminをどこで使うか聞かれるので必要な箇所にチェックを入れる

 +------------------------+ Configuring phpmyadmin +-------------------------+
 | Please choose the web server that should be automatically configured to   |
 | run phpMyAdmin.                                                           |
 |                                                                           |
 | Web server to reconfigure automatically:                                  |
 |                                                                           |
 |    [ ] apache2                                                            |
 |    [ ] lighttpd                                                           |
 |                                                                           |
 |                                                                           |
 |                                  <Ok>                                     |
 |                                                                           |
 +---------------------------------------------------------------------------+

# 必要ないのでNo

 +------------------------+ Configuring phpmyadmin +-------------------------+
 |                                                                           |
 | The phpmyadmin package must have a database installed and configured      |
 | before it can be used.  This can be optionally handled with               |
 | dbconfig-common.                                                          |
 |                                                                           |
 | If you are an advanced database administrator and know that you want to   |
 | perform this configuration manually, or if your database has already      |
 | been installed and configured, you should refuse this option.  Details    |
 | on what needs to be done should most likely be provided in                |
 | /usr/share/doc/phpmyadmin.                                                |
 |                                                                           |
 | Otherwise, you should probably choose this option.                        |
 |                                                                           |
 | Configure database for phpmyadmin with dbconfig-common?                   |
 |                                                                           |
 |                    <Yes>                       <No>                       |
 |                                                                           |
 +---------------------------------------------------------------------------+

root@www:~#
cp /etc/phpmyadmin/apache.conf /etc/apache2/conf.d/phpmyadmin.conf

root@www:~#
vi /etc/apache2/conf.d/phpmyadmin.conf
# 8行目あたりに以下追記

   Order Deny,Allow
   Deny from all
   Allow from 127.0.0.1 10.0.0.0/24
root@www:~#
/etc/init.d/apache2 restart

* Restarting web server apache2
... waiting ...done.
[2] 「http://(ホスト名)/phpmyadmin/」にアクセスします。 以下のような画面になるので MySQL に登録してあるユーザーでログインします。
[3] ログインできました。ここから様々な操作が視覚的に行えます。
関連コンテンツ