局域网搭建 Web 服务器测试环境,因为Mac OS X 自带了 Apache 和 PHP 环境,我们只需要简单的启动它就行了。1.命令:sudo apachectl startApache服务器默认的web根目录在:/Library/WebServer/Documents Apache的配置文件在 ...
分类:
Web程序 时间:
2019-05-30 17:52:18
阅读次数:
134
sudo apachectl -k restart 重启Apache sudo apachectl -k start 启动Apache sudo apachectl -k stop 停止Apache ...
分类:
Web程序 时间:
2019-05-09 10:52:55
阅读次数:
123
承接上文 1./usr/local/apache/bin/apachectl start启动apache,出现错误 解决方法:(进入安装目录,编辑httpd.conf文件,添加ServerName localhost:80或者去掉ServerName www.example前面的#号,这里添加本地i ...
分类:
Web程序 时间:
2019-03-19 18:30:57
阅读次数:
254
1.playbook练习 安装Apache并修改监听端口为8080 修改ServerName配置,执行apachectl -t命令不报错 设置默认主页hello world 启动服务并设开机自启 *********** json数据格式: {} 集合,里面存放多组键值对 [ ] 数组,存放多个值,可 ...
分类:
其他好文 时间:
2019-03-08 16:57:39
阅读次数:
205
使用/usr/local/apache/bin/apachectl start启动,apache服务无响应。
分类:
Web程序 时间:
2019-02-21 12:34:25
阅读次数:
178
httpd简介 httpd是Apache超文本传输协议(HTTP)服务器的主程序。被设计为一个独立运行的后台进程,它会建立一个处理请求的子进程或线程的池。 通常,httpd不应该被直接调用,而应该在类Unix系统中由apachectl调用,在Windows中作为服务运行。 httpd版本 主要介绍h ...
分类:
Web程序 时间:
2019-01-16 19:15:10
阅读次数:
265
1. 打开终端,开启Apache: //开启apache: sudo apachectl start //重启apache: sudo apachectl restart //关闭apache: sudo apachectl stop 回车会提示输入密码,也就是你电脑的密码,http://127.0 ...
分类:
Web程序 时间:
2018-12-28 19:25:37
阅读次数:
189
操作环境:Mac OS 一、搭建简单的HTTP连接 1、安装apache服务 1) 查看apache是否安装,若未安装,立即安装 apachectl -v 2) 修改配置文件 前往/etc/apache2文件夹,打开其中最重要的配置文件httpd.conf (带d的名字的文件是守护进程的配置文件) ...
分类:
Web程序 时间:
2018-12-13 23:32:02
阅读次数:
312
一、启动apache遇到错误:httpd: Could not reliably determine the server's fully qualified domain name [root@server httpd-2.2.4]# /usr/local/apache/bin/apachectl ...
分类:
Web程序 时间:
2018-11-29 20:17:26
阅读次数:
163
MacOS 自带Apatch服务器, 在浏览器输入 http://127.0.0.1/ 出现it works,代表访问成功 一. 启动 启动 sudo apachectl start 重启 sudo apachectl restart 关闭 sudo apachectl stop 二.添加文件 将文 ...
分类:
系统相关 时间:
2018-11-19 12:41:32
阅读次数:
323