>데이터 베이스 >MySQL 튜토리얼 >CentOS下配置phpMyAdmin

CentOS下配置phpMyAdmin

WBOY
WBOY원래의
2016-06-07 15:57:221005검색

本文出自:http://blog.csdn.net/svitter 引文出自:http://hi.baidu.com/owbtkcjhtmaeuyr/item/175d53ff2ad985b231c1991e 解决apache启动错误httpd:Could not reliably determine... locate httpd.conf vim httpd.conf 在#ServerName www.example.com:80下

本文出自:http://blog.csdn.net/svitter

引文出自:http://hi.baidu.com/owbtkcjhtmaeuyr/item/175d53ff2ad985b231c1991e

解决apache启动错误"httpd:Could not reliably determine..."

locate httpd.conf

vim httpd.conf

在#ServerName www.example.com:80下添加:
ServerName localhost:80

CentOS系统中启用RPMForge软件库安装phpMyAdmin:

64位系统使用如下命令

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm

rpm -Uhv rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm

32位系统使用如下命令:

wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.i386.rpm

rpm -Uhv rpmforge-release-0.5.2-2.el5.rf.i386.rpm

现在可以安装phpMyAdmin如下命令:

yum install phpmyadmin

vim /usr/share/phpmyadmin/config.inc.php

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

$cfg['Servers'][$i]['auth_type'] = 'config'; //Server for cookie

$cfg['Servers'][$i]['user'] = 'root'; // MySQL user

$cfg['Servers'][$i]['password'] = ''; // MySQL password

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.