红联Linux门户
Linux帮助

ubuntu配置php

发布时间:2015-11-20 17:43:13来源:linux网站作者:xiaodong60606

1.安装apache2

执行命令 apt-get install apache2

网页目录在/var/www/

可以输入ip地址浏览到该目录下的index.html网页


2.安装PHP

执行命令apt-get install php5 libapache2-mod-php5

重启apache2   /etc/init.d/apache2 restart

在/var/www/文件夹下新建检测文件info.php

内容为

<?php

phpinfo()

?>

打开网页进行检测


3.安装mysql

执行命令apt-get install mysql-server mysql-client

安装过程中输入密码


4.php获取mysql支持

执行命令apt-cache search php5查看需要安装的包

部分安装apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear

重启apache2   /etc/init.d/apache2 restart


5.安装phpmyadmin管理mysql数据库

执行命令apt-get install phpmyadmin

默认安装路径/usr/share/phpmyadmin

然后把phpmyadmin 复制到/var/www/目录下,通过http://ip/phpmyadmin即可访问mysql数据库。


ubuntu15.04手动安装nginx1.93并配置php:http://www.linuxdiyf.com/linux/13151.html

Linux下安装配置PHP环境(Apache2):http://www.linuxdiyf.com/linux/12355.html

CentOS 6中配置PHP的LNMP的开发环境:http://www.linuxdiyf.com/linux/11474.html

Linux安装配置PHP:http://www.linuxdiyf.com/linux/10364.html

在CentOS 6.4中配置PHP开发环境:http://www.linuxdiyf.com/linux/10221.html