Heim > Backend-Entwicklung > PHP-Tutorial > Ubuntu中PhpMyAdmin装配说明

Ubuntu中PhpMyAdmin装配说明

WBOY
Freigeben: 2016-06-13 13:25:30
Original
713 Leute haben es durchsucht

Ubuntu中PhpMyAdmin安装说明

一.下载Apache/Php/PhpMyAdmin
相关下载地址如下:
Apche: http://httpd.apache.org/download.cgi
Php: http://cn.php.net/get/php-5.3.2.tar.gz/from/a/mirror
PhpMyAdmin: http://www.phpmyadmin.net/home_page/index.php

下载后的文件:

httpd-2.2.15.tar.gz
php-5.3.2.tar.gz
phpMyAdmin-3.3.1-all-languages.zip
Nach dem Login kopieren

?

二.安装


1.安装apache

tar -zxvf httpd-2.2.15.tar.gz
cd httpd-2.2.15
./configure --prefix=/usr/local/apache/ --enable-so
make
make install
Nach dem Login kopieren

2.安装php

tar -zxvf php-5.3.2.tar.gz
cd php-5.3.2
./configure \
    --with-apxs2=/usr/local/apache/bin/apxs \
    --with-mysql=/usr/include/mysql \
    --prefix=/usr/local/apache/php \
    --with-config-file-path=/usr/local/apache/php \
make
make install
Nach dem Login kopieren

若系统中没有/usr/include/mysql,需要安装libmysqlclient15-dev,通过apt来安装
apt-get install libmysqlclient15-dev


3.安装PhpMyAdmin

unzip phpMyAdmin-3.3.1-all-languages.zip
mv phpMyAdmin-3.3.1-all-languages phpadmin
mv phpadmin /usr/loca/apache/htdocs
Nach dem Login kopieren

若访问Php页面时,apache直接显示(无法解析)php的源码,修改apache的配置文件

/usr/local/apache/conf/http.conf
检查LoadModule php5_module路径是否正确
LoadModule php5_module??????? modules/libphp5.so
查找AddType,修改内容如下:

    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php .htm
Nach dem Login kopieren

重启apache,

/usr/local/apache/bin/apachectl restart
Nach dem Login kopieren
?

测试php运行情况。


新建一个名为test.php的页面,内容如下:

<?php
    phpinfo();
?>
Nach dem Login kopieren

访问该页面,若能显示php版本的相关信息,说明安装正确,若不能正常显示,请检查个部分是否

安装正确。

?

关于PhpMyadmin的详细配置说明请参考phpmyadmin的文档。默认的情况下可以正常访问mysql。


Good Luck .

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage