Fedora 13
Sponsored Link

Operate from web browser - phpmyadmin2010/06/01

  Install phpmyadmin to operate MySQL from Web browser. Web server is also needed.

[1] Install phpmyadmin
[root@www ~]#
yum -y install phpMyAdmin php-mysql php-mcrypt


[root@www ~]#
vi /etc/phpMyAdmin/config.inc.php


# line 33: specify auth type

$cfg['Servers'][$i]['auth_type'] = '
http
';

[root@www ~]#
vi /etc/httpd/conf.d/phpMyAdmin.conf


# line 13: add IP address you allow

Allow from 127.0.0.1
10.0.0.0/24


[root@www ~]#
/etc/rc.d/init.d/httpd reload

Reloading httpd:     [  OK  ]
[2] Access to 'http://(your hostname or IP address)/(alias name you set)/' with web browser, then following screen is shown. Login with a user in MySQL.
 
[3] Just logined. You can operate MySQL on here.
 
Matched Content