yum安装phpMyAdmin

来源:互联网 发布:sun官方java教程 pdf 编辑:程序博客网 时间:2024/06/05 08:59

yum安装phpMyAdmin


1、yum安装相关软件

yum install httpd httpd-devel yum install php php-mysql php-common php-gd php-mbstring php-mcrypt php-devel php-xml yum install epel-releaseyum install phpmyadmin


2、配置mysql主机

/etc/phpMyAdmin/config.inc.php

$cfg['Servers'][$i]['host']          = 'mysqlDB';


3、配置访问权限

/etc/httpd/conf.d/phpmyadmin.conf

<Directory /usr/share/phpMyAdmin/>   Order Deny,Allow   Deny  from All   Allow from 127.0.0.1   Allow from ipaddress</Directory>

重启

service htttpd restart







1 0