命令:
开启
apache: sudo apachectl start
重启
apache: sudo apachectl restart
关闭:
apache: sudo apachectl stop
设置Apache不自启动
sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist
设置Apache自启动
sudo launchctl load -w /System/Library/LaunchDaemons/org.apache.httpd.plist
launchd是Mac OS下,用于初始化系统环境的关键进程。类似Linux下的init, rc.此方法同样也适用于禁用系统的一些服务,比如打印机,蓝牙等.
测试
- 创建一个文件,如test.html(名字能够随意起),
- 接下来用浏览器访问 http://127.0.0.1/test.html
- IP(127.0.0.1)也可以换成你电脑的IP地址,这样在同一局域网的设备也可以访问服务器的内容。
网友评论