码迷,mamicode.com
首页 > Web开发 > 详细

Ubunto 安装Apache服务器

时间:2015-05-04 18:02:04      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:apache   服务器   ubuntu   

使用Ubunto安装可以使用源代码编译模式安装也可以使用apt命令或apt图形软件包安装

编译模式:

1. 首先要下载安装依赖包,比如apr,apr-util,apache等

2. tar解压包

3. ./configure配置,指定安装位置

4. make编译

5. sudo make install 安装

详情请参考百度。我这里就使用apt命令模式安装了,在终端输入:sudo apt-get install apache2 回车输入密码即可安装,我这里已经安装过了

使用编译模式可以指定安装目录,比如安装在/usr/local/apache2中,apt-get使用默认安装路径

技术分享


默认安装完成后会启用apache2服务,服务的端口号默认为80,如下测试,默认页面指定/usr/www/html/index.html页面

技术分享


可以在页面中加入自己的html进行测试如下图加入自己的html

技术分享

技术分享

启动、停止、重启命令

// Apache  
//Task: Start Apache 2 Server /启动apache服务  
# /etc/init.d/apache2 start  
//or  
$ sudo /etc/init.d/apache2 start  
//Task: Restart Apache 2 Server /重启apache服务  
# /etc/init.d/apache2 restart  
//or  
$ sudo /etc/init.d/apache2 restart  
//Task: Stop Apache 2 Server /停止apache服务  
# /etc/init.d/apache2 stop  
//or  
$ sudo /etc/init.d/apache2 stop  
 
// Mysql  
/etc/init.d/mysql start  
/etc/init.d/mysql stop  
/etc/init.d/mysql restart  


Ubunto 安装Apache服务器

标签:apache   服务器   ubuntu   

原文地址:http://blog.csdn.net/xiaokui_wingfly/article/details/45483365

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