最近由于需要用到phpMyAdmin来管理服务器上的mysql数据库,所以今天就学习了下如何安装phpMyAdmin,顺便也记录下来以备后查。
一、软件安装包
1.httpd-2.2.6.tar.gz
2.php-5.2.5.tar.gz
3.phpMyAdmin-2.11.5.1-all-languages.tar.gz
4.php-mysqlnd-5.0.1-beta.tar.gz
二、安装apache的httpd
#tar xf httpd-2.2.6.tar.gz
#cd httpd-2.2.6
#./configure --prefix=/usr/local/apache2 --enable-module=so
#make
#make install
三、安装php5
#tar xf php-mysqlnd-5.0.1-beta.tar.gz
#tar xf php-5.2.5.tar.gz
#cd php-5.2.5
#rm -f -R ext/mysqli
#cp -R ../php-mysqlnd-5.0.1-beta/php5/ext/mysqli ./ext/
#./buildconf --force
#./configure --prefix=/usr/local/php5 --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/usr/local/lib --enable-track-vars --with-xml --with-mysqli --enable-mysqlnd --with-mbstring --enable-mbstring=all
#make
#make install
#cp php.ini-dist /usr/local/lib/php.ini
四、安装phpMyAdmin(假设安装目录在:/webapp/phpMyAdmin)
#tar xf phpMyAdmin-2.11.5.1-all-languages.tar.gz
#mv phpMyAdmin-2.11.5.1-all-languages /webapp/phpMyAdmin
五、配置apache的httpd.conf
#vi /usr/local/apache2/conf/httpd.conf
1)将DocumentRoot和Directory的目录改为:/webapp/phpMyAdmin
2)在DirectoryIndex中添加index.php
3)添加php的扩展类型:
AddType application/x-httpd-php .php .phtml .php3 .inc
AddType application/x-httpd-php-source .phps
六、配置phpMyAdmin
#cd /webapp/phpMyAdmin
#cp config.sample.inc.php config.inc.php
#vi config.inc.php
对如下的字段进行配置即可,没有的可以自己添加:
$cfg['Servers'][$i]['auth_type'] = 'config'; // 认证模式,可以有cookie、http和config
$cfg['blowfish_secret'] = 'mabiqiang'; // 使用cookie方式认证的密码短语
$cfg['Servers'][$i]['host'] = '127.0.0.1'; // 设置你的数据库服务器的访问IP
$cfg['Servers'][$i]['user'] = 'root'; // config认证模式时的访问用户名称
$cfg['Servers'][$i]['password'] = 'root'; // config认证模式时的访问密码
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // 连接方式,tcp(默认)或socket
$cfg['Servers'][$i]['extension'] = 'mysqli'; // MYSQL扩展,可以为mysql和mysqli(推荐mysql4.1.0以上版本)
$cfg['Servers'][$i]['only_db'] = array('db1','db2'); // 只显示指定的数据库,字符串或数组
以上是给出了phpMyAdmin的基本配置信息,具体的还需要根据个人的情况做适当的调整。另外,对于php5的安装,我是使用了mysql官方提供的php-mysqlnd-5.0.1-beta.tar.gz,而没有使用mysql-dev。前者是mysql官方最新推荐的php对mysql的访问驱动,相比以前的,官方的解说如下:
Q: Is mysqlnd a new PHP extension?
No, the new MySQL driver for PHP is not a new PHP extension. The driver is a replacement for libmysql on the internal C level of the PHP extension ext/mysqli.
You can continue to compile the ext/mysqli extension with libmysql like ever since. We will not remove this functionality. Alternatively you can compile ext/mysqli with mysqlnd. We suggest that you try it, because mysqlnd is easier to compile and we found it to be faster than libmysql.
Q: Does it work with any MySQL Server before 4.1?
The MySQL native driver for PHP requires PHP 5 or PHP 6.
You can use it to connect to the MySQL Server 4.1 or newer.
Q: Can other PHP extensions use it?
Yes, they can, if they want to. The source code of the new driver is the ext/mysqli/mysqlnd directory of the download files. Extension writes will find that mysqlnd mimics the API of libmysql respectively the MySQL C API.
分享到:
相关推荐
"PHPMYADMIN安装图解" PHPMYADMIN是MySQL数据库管理器,它提供了一个基于Web的图形化界面,方便用户管理数据库。以下是PHPMYADMIN安装图解的知识点总结: 一、 PHPMYADMIN安装前的准备 * 下载最新版本的...
### Linux phpMyAdmin 安装攻略详解 #### 一、前言 在Linux环境下安装phpMyAdmin可以帮助用户更方便地管理MySQL数据库。本文将详细介绍如何在Linux系统中安装并配置phpMyAdmin,以便用户能够轻松地对MySQL数据库...
### phpMyAdmin安装配置方法全过程 #### 一、前言 在进行数据库管理时,phpMyAdmin是一款非常实用且强大的工具。它不仅提供了图形化的界面来管理MySQL数据库,还简化了数据库操作流程,使得数据库的管理和维护变得...
【phpMyAdmin安装配置教程傻瓜版】 在Web开发领域,phpMyAdmin是一个非常流行的MySQL数据库管理工具,它提供了一个直观的用户界面,允许非技术用户通过浏览器来创建、修改和管理数据库。本教程将带你逐步完成...
【phpMyAdmin配置全攻略】 phpMyAdmin 是一个基于Web的MySQL数据库管理工具,它允许用户通过浏览器方便地管理MySQL数据库和PHP页面。本攻略将详细介绍如何配置phpMyAdmin,确保安全并实现高效管理。 **快速安装...
### phpMyAdmin安装配置方法全过程及问题解决 #### 一、前言 在现代网站开发过程中,数据库管理是一项至关重要的工作。phpMyAdmin作为一个广泛使用的MySQL数据库管理工具,以其直观的Web界面和丰富的功能深受...
在FreeBSD 11.0操作系统中安装phpMyAdmin是一个涉及多个步骤的过程,涉及到系统管理、包管理、网络服务配置等多个IT知识点。首先,我们来详细了解这个过程。 **1. 环境准备** 在开始安装之前,确保你的FreeBSD系统...
phpMyAdmin安装过程包括下载安装包、解压、配置等步骤。 * 下载phpMyAdmin安装包:从官方网站下载最新版本的phpMyAdmin安装包。 * 解压安装包:使用unzip命令解压安装包。 * 配置phpMyAdmin:编辑config.inc.php...
phpmyadmin安装文档 开发者可参考
### LAMP的安装之phpMyAdmin的配置 #### 一、引言 LAMP(Linux、Apache、MySQL、PHP)是一种流行的开源Web开发平台组合,它允许开发者在Linux操作系统上利用Apache Web服务器、MySQL数据库以及PHP脚本语言来构建...
**phpMyAdmin 安装教程全攻略** phpMyAdmin 是一款功能强大的开源工具,用于管理和维护 MySQL 或 MariaDB 数据库。它提供了用户友好的界面,使得数据库操作变得简单易行,无论是在本地还是远程服务器上。最新版本为...
总结,本教程详细阐述了在CentOS7上搭建LNMP环境和phpMyAdmin的步骤,涵盖了从虚拟机安装、网络配置到服务器软件的安装与配置。这将帮助初学者快速掌握Linux服务器的基础运维技能,为进一步的Web开发和服务器管理...
在 Ubuntu 上安装 phpMyAdmin phpMyAdmin 是一个基于 Web 的 MySQL 数据库管理工具,它提供了一个友好的图形用户界面,使用户可以轻松地管理 MySQL 数据库。在 Ubuntu 上安装 phpMyAdmin 非常简单,本文将指导您...
【标题】"轻松加愉快:一键安装mysql+phpmyadmin" 涉及的主要知识点是MySQL数据库管理系统和phpMyAdmin的安装与配置。MySQL是一种广泛使用的开源关系型数据库,而phpMyAdmin则是一个基于Web的MySQL数据库管理工具,...
在解压缩"phpMyAdmin-5.2.1-all-languages"后,你会得到一个包含所有语言文件的完整安装包,可以按照官方文档的指示进行安装和配置,从而开始你的MySQL数据库管理之旅。无论你是个人开发者还是大型企业的数据库管理...