Table of Contents
, , , ,

PhpMyAdmin

PhpMyAdmin is web interface to administrate Mysql databases.
:!: Pay attention to secure phpmyadmin access from internet.

Installation

You first need to install Mysql and a Web Server (Apache) with PHP support.

Then to add phpmyadmin, install the package :

Steps during the install :

Configuration

Add the access to phpmyadmin into apache with a configuration similar to :

        <Directory /usr/share/phpmyadmin/>
                allow from all
                Order deny,allow
        </Directory>

By default, the apache configuration file (/etc/phpmyadmin/apache.conf) is loaded by a symbolic lynk inside /etc/apache2/conf.d.
It is also possible to replace it with a manual load from a config file, for example :

        Include /etc/phpmyadmin/apache.conf
        <Directory /usr/share/phpmyadmin/>
                allow from all
                Order deny,allow
        </Directory>

By default phpmyadmin is available on the website into /phpmyadmin/.

The phpmyadmin configuration is located in /etc/phpmyadmin/. You can modify here the apache configuration, the access rights, footer and header.

Links