标签:war body 第一章 客户 appdata 启动 测试 永久 doc
第一章 web
实验环境
系统类型 |
IP地址 |
主机名 |
所需软件 |
Centos 6.5 |
192.168.100.150 |
Cxh.linuxfan.cn |
httpd-2.2.17.tar.gz |
|
|
|
|
|
|
|
|
Ø 准备环境,上传软件包,并解压编译安装;
Ø 安装后优化调整;
Ø 修改定制配置文件并启动服务;
:set nu ##打印出行号
29 ServerRoot "/usr/local/httpd"
40 Listen 80
65 User daemon
66 Group daemon
88 ServerAdmin admin@linuxfan.cn ##修改管理员的邮箱
97 ServerName www.linuxfan.cn:80 ##添加网站的域名
104 DocumentRoot "/usr/local/httpd/htdocs"
131 <Directory "/usr/local/httpd/htdocs"> ##此区域标识网页的设置,如限制、认证等
...
159 </Directory>
186 ErrorLog "logs/error_log"
193 LogLevel warn
215 CustomLog "logs/access_log" common
Ø 客户端访问测试;
Ø 优化httpd服务:调整其工作模式;
Ø .prefork(进程+子进程)模式,默认:
3.worker(多进程+多线程)工作模式:
4. event工作模式:
5.http状态返回状态码:
状态码首位 |
范围 |
分类 |
1xx |
100-101 |
信息提示 |
2xx |
200-206 |
成功 |
3xx |
300-305 |
重定向 |
4xx |
400-415 |
客户端错误 |
5xx |
500-505 |
服务器错误 |
常见的状态返回码:
200 ok 301 请求的永久页面跳转 403 禁止访问该页面
404 找不到页面 500 服务器内部错误 502 网关错误
503 当前服务不可用 504 网关请求超时
标签:war body 第一章 客户 appdata 启动 测试 永久 doc
原文地址:https://www.cnblogs.com/chcc/p/11858805.html