美文网首页
Mac 系统启动Apache

Mac 系统启动Apache

作者: rainbowboy | 来源:发表于2018-11-14 14:29 被阅读9次

Mac系统里自带有Apache服务,所以只需要启动或者停止来使用该服务即可

1、查询Apache版本

sudo apachectl -v
看到的结果是

Server version: Apache/2.4.34 (Unix)
Server built:   Aug 17 2018 16:29:43

2、启动Apache命令

sudo apachectl start
Apache启动状态下再次启动时使用命令
sudo apachectl restart
在浏览器里输入
http://localhost或者http://127.0.0.1

Apache默认端口是80也可以通过如下两种方式查看效果
http://localhost:80或者http://127.0.0.1:80
效果如下:

127.0.0.1.png
localhost.png

关闭Apache服务
sudo apachectl stop

3、Apache服务的部署

在不修改配置的情况下,web资源需要放在/Library/WebServer/Documents/下才可以通过浏览器访问本机上的服务资源,如果需要更换路径就需要修改配置httpd.conf
修改方式:
进入/private/etc/apache2/,打开httpd.conf,找到DocumentRoot,修改为你想访问的路径,然后把web项目放到你修改的路径下就可以通过浏览器访问了。
效果图如下:

DocumentRoot.png

如果想修改监听的端口,仍然是修改/private/etc/apache2/httpd.conf这个文件,找到Listen,把端口修改为你想监听的端口即可。如下效果图

ListenPort.png

比如我们把DocumentRoot修改为"~/Desktop/MyWeb",端口修改为:8088MyWeb文件夹下有个index.html文件,那我们在浏览器里这样访问就可以了:http://localhost:8088/
如果MyWeb文件夹下有个JingDong文件夹,JingDong下有个index.html文件,那访问JingDong就可以这样做:http://localhost:8088/JingDong

更新时间: 2018-11-14

相关文章

  • Mac 系统启动Apache

    Mac系统里自带有Apache服务,所以只需要启动或者停止来使用该服务即可 1、查询Apache版本 sudo a...

  • Mac系统启动 Apache 服务

    在Mac系统中,已经安装好了 Apache 服务,我们只需要通过以下方式启动,即可直接使用! 一、Apache服务...

  • mac的php环境

    关闭apache随系统启动 开启apache 重启apache: 关闭apache: 开启PHP开启PHP,需要修...

  • Mac OS X中配置Apache

    Mac OS X中配置Apache 我使用的Mac OS X版本是10.8.2,Mac自带了Apache环境。 启...

  • mac下自带的apache配置cgi

    title: mac下自带的apache配置cgidate: 2017-06-12tags: mac apache...

  • mac 开启Apache

    mac 开启Apache * 开启Apache:sudo apachectl start * 关闭Apache:s...

  • 配置Mac Apache服务器

    配置Mac Apache

  • MAC 搭建Apache+php+phpredis环境

    mac自带apache以及php apache apache命令: 开启sudo apachectl start重...

  • 无标题文章

    # 关于 Mac 自带的Apache如何开启 -- 首先我要说的就是,其实 **Mac自带的 Apache 是...

  • Mac安装Tomcat

    Mac自带Apache 自我调试 调试apache(扩展) 此步骤可以跳过 开启apache 关闭apache 修...

网友评论

      本文标题:Mac 系统启动Apache

      本文链接:https://www.haomeiwen.com/subject/zmxjfqtx.html