实战:Ubuntu系统环境搭建LAMP服务
2009-04-18 11:06:58 来源:WEB开发网核心提示: 搜索apache2软件包勾选apache2和apache2.2 common两项接下来我们简单介绍利用命令安装apache,具体安装命令如下所示:$ sudo apt-get install apache2然后运行Apache,实战:Ubuntu系统环境搭建LAMP服务(2),命令如下所示
搜索apache2软件包
勾选apache2和apache2.2 common两项
接下来我们简单介绍利用命令安装apache,具体安装命令如下所示:
$ sudo apt-get install apache2
然后运行Apache,命令如下所示:
$ sudo /etc/init.d/apache2 restart
Apache在安装期间将会新建一个目录:/var/www,该目录是该服务器中存放文档的根目录。只要在的地址栏输入http://localhost/或机器的IP地址就能访问放置在此目录中的所有文档。
测试apache安装成功
配置apache
终端使用命令
sudo gedit /etc/apache2/apache2.conf
弹出apache2.conf文件
在配置文件中加入以下代码
添加文件类型支持
AddType application/x-httpd-php .php .htm .html
默认字符集
AddDefaultCharset UTF-8
服务器地址
ServerName 127.0.0.1
添加首页文件
<IfModule dir_module>
DirectoryIndwx index.htm index.html index.php
</IfModule>
PHP是一种流行的服务器端脚本语言,一般与MySQL或 Postgres结合起来用于管理Web内容、blog和论坛。下面介绍其安装方法,其实它的安装也很简单,命令如下所示:
$ sudo apt-get install libapache2-mod-php5
更多精彩
赞助商链接