码迷,mamicode.com
首页 > 数据库 > 详细

Ubuntu下的LAMP(Linux+Apache+MySQL+PHP) 开发环境架设

时间:2014-06-29 22:14:44      阅读:291      评论:0      收藏:0      [点我收藏+]

标签:style   http   get   width   文件   os   

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管理员的密码,输入2次后,选择确定即可


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

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


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

bubuko.com,布布扣

我的主目录是 /homt/timothy/workspace/web

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

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

写入 

<?php

phpinfo();

?>

保存

bubuko.com,布布扣


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

bubuko.com,布布扣


如果在页面上出现 

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>

Ubuntu下的LAMP(Linux+Apache+MySQL+PHP) 开发环境架设,布布扣,bubuko.com

Ubuntu下的LAMP(Linux+Apache+MySQL+PHP) 开发环境架设

标签:style   http   get   width   文件   os   

原文地址:http://blog.csdn.net/android_shrimp/article/details/35780099

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!