使用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
原文地址:http://blog.csdn.net/xiaokui_wingfly/article/details/45483365