1)、LISTEN:首先服务端需要打开一个socket进行监听,状态为LISTEN. /* The socket is listening for incoming connections. 侦听来自远方TCP端口的连接请求 */ 2)、SYN_SENT:客户端通过应用程序调用connect进行ac ...
分类:
其他好文 时间:
2018-02-21 11:39:39
阅读次数:
192
By default the response body doesn’t contain all the data that might be needed in your app. Your server might return some special header which you hav ...
分类:
Web程序 时间:
2018-02-14 21:32:17
阅读次数:
345
TCP各个状态主要存在于三次握手和四次挥手的过程 1、TCP建立连接时的三次握手: 服务端应用监听端口处于LISTEN状态,等待建立连接。 第一次握手:客户端发送SYN=一个随机数,然后进入SYN_SENT状态。 第二次握手:服务端收到SYN后,向客户端回应ACK=随机数+1,同时发送SYN=k,然 ...
分类:
其他好文 时间:
2018-02-11 19:57:31
阅读次数:
131
Description The cows have been sent on a mission through space to acquire a new milking machine for their barn. They are flying through a cluster of s ...
分类:
其他好文 时间:
2018-02-04 00:26:08
阅读次数:
192
日志格式:常用日志格式 log_format main '$remote_addr - $remote_user [stime_local] $request' '"$status" $body_bytes_sent "$http_referer"' '"$http_user_agent" "$ht ...
分类:
其他好文 时间:
2018-01-31 22:18:41
阅读次数:
226
[root@lizhipenglinux01 ~]# rsync -av /etc/passwd /tmp/1.txtsending incremental file listpasswd sent 1318 bytes received 31 bytes 2698.00 bytes/sectota ...
分类:
其他好文 时间:
2018-01-28 18:14:19
阅读次数:
262
首先Client端发送连接请求报文,Server端接受连接后回复ACK报文,并为这次连接分配资源。Client端接收到ACK报文后也向Server段发生ACK报文,并分配资源,这样TCP连接就建立了。 第一次握手:建立连接时,客户端发送syn包(syn=j)到服务器,并进入SYN_SENT状态,等待 ...
分类:
其他好文 时间:
2018-01-25 12:00:56
阅读次数:
148
import jiebaimport numpy as np#打开词典文件,返回列表def open_dict(Dict = 'mini', path=r'/Users/apple888/PycharmProjects/Textming/Sent_Dict/Hownet/'): path = pat ...
分类:
其他好文 时间:
2018-01-23 16:41:49
阅读次数:
255
使用jedis 2.9连接 异常: redis.clients.jedis.exceptions.JedisDataException: ERR Client sent AUTH, but no password is set。 说我没有设置密码,当时我就震惊了。我明明设置了密码呀。我用redis- ...
分类:
其他好文 时间:
2018-01-21 20:37:10
阅读次数:
188
今天系统发布到测试环境,有一个用户登录后显示502 Bad Gateway错误,其他的用户都登录成功。但是在开发机链接测试数据库,使用该账号登录成功。 初步猜测是Nginx的问题,查看nginx的错误日志,得到以下错误信息: upstream sent too big header while re ...
分类:
其他好文 时间:
2018-01-15 17:32:43
阅读次数:
167