mac os apache 配置方法详细介绍
程序员文章站
2022-10-19 23:53:18
本文将详细介绍mac os apache 配置方法,需要的朋友可以作为参考... 12-11-13...
我使用的mac os x版本是10.8.2,mac自带了apache环境。
启动apache
设置虚拟主机
启动apache
打开“终端(terminal)”,输入 sudo apachectl -v,(可能需要输入机器秘密)。如下显示apache的版本
接着输入 sudo apachectl start,这样apache就启动了。打开safari浏览器地址栏输入 “http://localhost”,可以看到内容为“it works!”的页面。其位于“/library(资源库)/webserver/documents/”下,这就是apache的默认根目录。
apache的安装目录在:/etc/apache2/,etc默认是隐藏的。有三种方式查看:
1.dock下右键finder,选择"前往文件夹",输入"/etc"
2.在finder下----》前往---》前往文件夹,然后输入/etc
3.可以在terminal 输入 "open /etc"
设置虚拟主机
1.在终端运行“sudo vi /etc/apache2/httpd.conf”,打开apche的配置文件
2.在httpd.conf中找到“#include /private/etc/apache2/extra/httpd-vhosts.conf”,去掉前面的“#”,保存并退出。
3.运行“sudo apachectl restart”,重启apache后就开启了虚拟主机配置功能。
4.运行“sudo vi /etc/apache2/extra/httpd-vhosts.conf”,就打开了配置虚拟主机文件httpd-vhost.conf,配置虚拟主机了。需要注意的是该文件默认开启了两个作为例子的虚拟主机:
<virtualhost *:80>
serveradmin webmaster@dummy-host.example.com
documentroot "/usr/docs/dummy-host.example.com"
servername dummy-host.example.com
errorlog "/private/var/log/apache2/dummy-host.example.com-error_log"
customlog "/private/var/log/apache2/dummy-host.example.com-access_log" common
</virtualhost>
<virtualhost *:80>
serveradmin webmaster@dummy-host2.example.com
documentroot "/usr/docs/dummy-host2.example.com"
servername dummy-host2.example.com
errorlog "/private/var/log/apache2/dummy-host2.example.com-error_log"
customlog "/private/var/log/apache2/dummy-host2.example.com-access_log" common
</virtualhost>
而实际上,这两个虚拟主机是不存在的,在没有配置任何其他虚拟主机时,可能会导致访问localhost时出现如下提示:
forbidden
you don't have permission to access /index.php on this server最简单的办法就是在它们每行前面加上#,注释掉就好了,这样既能参考又不导致其他问题。
5.增加如下配置
<virtualhost *:80>
documentroot "/library/webserver/documents"
servername localhost
errorlog "/private/var/log/apache2/localhost-error_log"
customlog "/private/var/log/apache2/localhost-access_log" common
</virtualhost>
<virtualhost *:80>
documentroot "/users/snandy/work"
servername mysites
errorlog "/private/var/log/apache2/sites-error_log"
customlog "/private/var/log/apache2/sites-access_log" common
<directory />
options indexes followsymlinks multiviews
allowoverride none
order deny,allow
allow from all
</directory>
</virtualhost>
保存退出,并重启apache。
6.运行“sudo vi /etc/hosts”,打开hosts配置文件,加入"127.0.0.1 mysites",这样就可以配置完成sites虚拟主机了,可以访问“http://mysites”了,在10.8之前mac os x版本其内容和“http://localhost/~[用户名]”完全一致。
7.注意,记录log的“errorlog "/private/var/log/apache2/sites-error_log"”也可以删掉,但记录日志其实是一个好习惯,在出现问题时可以帮助我们判断。如果保留这些log代码,一定log文件路径都是存在的,如果随便修改一个不存在的,会导致apache无法服务而没有错误提示,这个比较恶心。
启动apache
设置虚拟主机
启动apache
打开“终端(terminal)”,输入 sudo apachectl -v,(可能需要输入机器秘密)。如下显示apache的版本
接着输入 sudo apachectl start,这样apache就启动了。打开safari浏览器地址栏输入 “http://localhost”,可以看到内容为“it works!”的页面。其位于“/library(资源库)/webserver/documents/”下,这就是apache的默认根目录。
apache的安装目录在:/etc/apache2/,etc默认是隐藏的。有三种方式查看:
1.dock下右键finder,选择"前往文件夹",输入"/etc"
2.在finder下----》前往---》前往文件夹,然后输入/etc
3.可以在terminal 输入 "open /etc"
设置虚拟主机
1.在终端运行“sudo vi /etc/apache2/httpd.conf”,打开apche的配置文件
2.在httpd.conf中找到“#include /private/etc/apache2/extra/httpd-vhosts.conf”,去掉前面的“#”,保存并退出。
3.运行“sudo apachectl restart”,重启apache后就开启了虚拟主机配置功能。
4.运行“sudo vi /etc/apache2/extra/httpd-vhosts.conf”,就打开了配置虚拟主机文件httpd-vhost.conf,配置虚拟主机了。需要注意的是该文件默认开启了两个作为例子的虚拟主机:
复制代码
代码如下:<virtualhost *:80>
serveradmin webmaster@dummy-host.example.com
documentroot "/usr/docs/dummy-host.example.com"
servername dummy-host.example.com
errorlog "/private/var/log/apache2/dummy-host.example.com-error_log"
customlog "/private/var/log/apache2/dummy-host.example.com-access_log" common
</virtualhost>
<virtualhost *:80>
serveradmin webmaster@dummy-host2.example.com
documentroot "/usr/docs/dummy-host2.example.com"
servername dummy-host2.example.com
errorlog "/private/var/log/apache2/dummy-host2.example.com-error_log"
customlog "/private/var/log/apache2/dummy-host2.example.com-access_log" common
</virtualhost>
而实际上,这两个虚拟主机是不存在的,在没有配置任何其他虚拟主机时,可能会导致访问localhost时出现如下提示:
forbidden
you don't have permission to access /index.php on this server最简单的办法就是在它们每行前面加上#,注释掉就好了,这样既能参考又不导致其他问题。
5.增加如下配置
复制代码
代码如下:<virtualhost *:80>
documentroot "/library/webserver/documents"
servername localhost
errorlog "/private/var/log/apache2/localhost-error_log"
customlog "/private/var/log/apache2/localhost-access_log" common
</virtualhost>
<virtualhost *:80>
documentroot "/users/snandy/work"
servername mysites
errorlog "/private/var/log/apache2/sites-error_log"
customlog "/private/var/log/apache2/sites-access_log" common
<directory />
options indexes followsymlinks multiviews
allowoverride none
order deny,allow
allow from all
</directory>
</virtualhost>
保存退出,并重启apache。
6.运行“sudo vi /etc/hosts”,打开hosts配置文件,加入"127.0.0.1 mysites",这样就可以配置完成sites虚拟主机了,可以访问“http://mysites”了,在10.8之前mac os x版本其内容和“http://localhost/~[用户名]”完全一致。
7.注意,记录log的“errorlog "/private/var/log/apache2/sites-error_log"”也可以删掉,但记录日志其实是一个好习惯,在出现问题时可以帮助我们判断。如果保留这些log代码,一定log文件路径都是存在的,如果随便修改一个不存在的,会导致apache无法服务而没有错误提示,这个比较恶心。
下一篇: 使用ASP程序对“HTML炸弹”进行屏蔽
推荐阅读
-
Mac OS10.11下mysql5.7.12 安装配置方法图文教程
-
Vmware10上MAC OS 10.9安装配置方法图文教程
-
Win7安装和配置Apache2.4服务器的详细方法
-
详细介绍通过配置Apache实现404页面替换
-
Mac怎么保存网页图片?苹果电脑网页图片保存方法图文详细介绍
-
linux防墙iptables详细介绍、配置方法与案例
-
苹果Mac系统CPU使用率查看方法图文详细介绍
-
Mac OS X 10.10如何批量修改文件名?MAC Finder批量改名方法介绍
-
Vmware10上MAC OS 10.9安装配置方法图文教程
-
Mac OS上怎么制作iphone铃声?mac制作iPhone铃声方法介绍