Ubuntu在下面LAMP(Linux+Apache+MySQL+PHP) 开发环境的搭建

LAMP在行业是一个非常流行的词。此4字母代表Linux。Apache,MySQL和PHP。

LAMP其高效、灵活的特点已经成为中小企业的首选。

它已经推出了快速构建LAMP道路。

1 在Ubuntu打开终端,输入

sudo
apt-get install apache2 php5-mysql libapache2-mod-php5 mysql-server

一口气就能够下载(apache2,php5,mysql)三个工具



2
安装MySQL的时候,会让你设定一个Root管理员的password,输入2次后,选择确定就可以



3
安装完毕以后打开浏览器输入,localhost或者127.0.0.1,回车

会出现It Works,则已经成功安装

4 创建一个PHP的測试文件my.php,存放在apache的主文件夹位置,主文件夹的位置可在文件(/etc/apache2/sites-enabled/000-default.conf) 中设置,

Ubuntu在下面LAMP(Linux+Apache+MySQL+PHP) 开发环境的搭建

我的主文件夹是 /homt/timothy/workspace/web

sudo
touch
/home/timothy/workspace/web/my.php

sudo
gedit /home/timothy/workspace/web/my.php

写入 

<?

php

phpinfo();

?

>

保存

Ubuntu在下面LAMP(Linux+Apache+MySQL+PHP) 开发环境的搭建

5 訪问http://localhost/test.php 或者 http://127.0.0.1/test.php

Ubuntu在下面LAMP(Linux+Apache+MySQL+PHP) 开发环境的搭建

假设在页面上出现

Forbidden

You don't have permission to access

的字样,则能够查看apache2.conf文件

sudo gedit /etc/apache2/apache2.conf

确保一下配置正确

<Directory /home/timothy/workspace/web>

Options FollowSymLinks

AllowOverride None

</Directory>

版权声明:本文博客原创文章,博客,未经同意,不得转载。

上一篇:javaweb学习之Servlet开发(二)


下一篇:Nginx代理实现内网主机访问公网服务