Ubuntu下搭建Lighttpd+PHP+MySQL环境

简单的几个命令在Ubuntu下搭建Lighttpd+PHP+MySQL环境,Lighttpd是众多OpenSource轻量级的web server中较为优秀的一个。支持FastCGI, CGI, Auth, 输出压缩(output compress), URL重写, Alias等重要功能,而Apache之所以流行,很大程度也是因为功能丰富,在lighttpd上很多功能都有相应的实现了,这点对于apache的用户是非常重要的,因为迁移到lighttpd就必须面对这些问题。

1》安装MySQL

sudo apt-get install mysql-server mysql-client

2》安装lighttpd

sudo apt-get install lighttpd

3》安装php及php扩展

sudo apt-get install php5 php5-cgi php5-mysql

4》安装phpmyadmin

sudo apt-get install phpmyadmin

5》启用Lighttpd的fastcgi模块

cd /etc/lighttpd/conf-enabled

sudo lighttpd-enable-mod fastcgi

6》重启Lighttpd服务

sudo service lighttpd restart

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://127.0.0.1/wyypfd.html