Loading

上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 35 下一页
摘要: http协议概念: * 即超文本传输协议。它规定了浏览器与服务器之间的通讯规则。 * http是基于请求/响应模式的,所以分为请求协议和响应协议 http的类型: HTTP协议的版本:HTTP/1.0、HTTP/1.1 在HTTP1.0协议中,客户端与web服务器建立连接后,只能获得一个web资源。 阅读全文
posted @ 2016-10-23 18:12 头痛不头痛 阅读(320) 评论(0) 推荐(0)
摘要: 一、基本概念 1.1、软件体系结构 1.C/S:Client/Servlet,例如QQ就是CS结构需要编写服务器端程序和客户端程序。缺点:更新需要两端,总要求客户下载新的客户端程序优点:安全性比较好2. B/S:Browser/Server缺点:安全性较差优点:只需要编写服务器端程序 1.2、WEB 阅读全文
posted @ 2016-10-23 17:47 头痛不头痛 阅读(716) 评论(0) 推荐(0)
摘要: 下载安装包: wget http://www.memcached.org/files/memcached-1.4.32.tar.gz wget https://cloud.github.com/downloads/libevent/libevent/libevent-1.4.14b-stable.t 阅读全文
posted @ 2016-10-18 01:00 头痛不头痛 阅读(269) 评论(0) 推荐(0)
摘要: 安装服务端程序 yum install vsftpd -y Vsftpd的程序与配置文件位置 主程序 /usr/sbin/vsftpd 用户配置文件 /etc/vsftpd/ftpusers /etc/vsftpd/user_list 主配置文件 /etc/vsftpd/vsftpd.conf 配置 阅读全文
posted @ 2016-10-11 16:23 头痛不头痛 阅读(319) 评论(0) 推荐(0)
摘要: 环境准备: 总共四台机器,两台装有Nginx的机器做负载均衡,两台机器装有Apache作为WEB服务器。 机器信息 hostname IP 说明 lb01 192.168.1.19 nginx主负载均衡器 lb02 192.168.1.16 nginx辅负载均衡器 web01 192.168.1.1 阅读全文
posted @ 2016-10-03 01:38 头痛不头痛 阅读(211) 评论(0) 推荐(0)
摘要: 增加nginx源 vim /etc/yum.repos.d/nginx.repo 安装nginx 查看配置文件 配置nginx vim /etc/nginx/nginx.conf 阅读全文
posted @ 2016-10-02 17:26 头痛不头痛 阅读(355) 评论(0) 推荐(0)
摘要: 环境准备: 准备4台机器,两台装好LVS和Keepalived,作为调度器,另外两台装好httpd服务,作为Real Server。 网络配置: Diretcory: 名称 接口 IP 用途 MASTER eth0 192.168.1.19 用于WAN的数据转发 eth1 10.0.0.19 用于L 阅读全文
posted @ 2016-10-01 11:28 头痛不头痛 阅读(254) 评论(0) 推荐(0)
摘要: 实例 #!/usr/bin/env Python #coding:utf-8 import tornado.httpserver import tornado.ioloop import tornado.options import tornado.web from tornado.options 阅读全文
posted @ 2016-09-27 15:53 头痛不头痛 阅读(280) 评论(0) 推荐(0)
摘要: IP配置 eth0 名词解释: 主节点: master 备节点: backup 虚拟路由器冗余协议: VRRP(Virtual Route Redundancy Protocol) ,它的出现是为了解决静态路由的单点故障 2.安装 在主调度器和备用调度器进行同样的安装,不同的是配置文件 安装open 阅读全文
posted @ 2016-09-25 23:53 头痛不头痛 阅读(579) 评论(0) 推荐(0)
摘要: openpyl 模块是解决 Microsoft Excel 2007/2010 之类版本中扩展名是 Excel 2010 xlsx/xlsm/xltx/xltm 的文件的读写的第三方库。 安装 pip install openpyxl workbook 和 sheet的建立 引入模块 >>> fro 阅读全文
posted @ 2016-09-22 10:51 头痛不头痛 阅读(490) 评论(0) 推荐(0)
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 35 下一页