CentOS 安装 nginx 教程 下载安装包 cd /usr/local wget http://nginx.org/download/nginx-1.19.8.tar.gz 安装依赖 yum install gcc-c++ yum install pcre yum install pcre-d ...
分类:
其他好文 时间:
2021-06-13 10:38:46
阅读次数:
0
wireshark工具使用 1、抓包头 有时候抓包不一定需要抓到全部的报文内容,只是想抓取主要的交互过程,这个时候可以配置抓取的内容长度。 配置方式:菜单中的Capture>Options,然后在弹出的窗口上定义“Limiteachpacketto”,这个值就是每一帧数据前多个个字节,这个包含TCP ...
分类:
其他好文 时间:
2021-06-13 10:01:02
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
问题背景 什么是TCP timestamps(TCP 时间戳)? The remote host implements TCP Timestamps, as defined by RFC1323 (https://www.ietf.org/rfc/rfc1323.txt). A side effec ...
分类:
移动开发 时间:
2021-06-13 09:49:28
阅读次数:
0
作者:rickiyang 出处:www.cnblogs.com/rickiyang/p/11074231.html 我们知道在TCP长连接或者WebSocket长连接中一般我们都会使用心跳机制–即发送特殊的数据包来通告对方自己的业务还没有办完,不要关闭链接。 那么心跳机制可以用来做什么呢? 我们知道 ...
分类:
Web程序 时间:
2021-06-13 09:48:57
阅读次数:
0
socket是TCP/IP协议的API TCP是数据的介质,Socket是TCP的介质. 查了一下RFC文档,Socket是RFC147,更新时间是1971年.TCP是RFC793,更新时间是1981年.Socket在ARPA网就出现了. 应该说TCP是socket上的一种通信协议. http:// ...
分类:
其他好文 时间:
2021-06-13 09:44:04
阅读次数:
0
1、去官网https://redis.io/下载对应的nginx包,推荐使用稳定版,上传到centos系统 /home/software/ 解压 tar -zxvf redis-5.0.5.tar.gz 或 使用linux wget命令:wget http://download.redis.io/r ...
分类:
其他好文 时间:
2021-06-13 09:30:04
阅读次数:
0
nginx下载地址 http://nginx.org/en/download.html Window启动命令: java -jar D:\jeecg-boot-module-system-2.0.0.jar Linux下后台进程启动命令: nohup java -jar jeecg-boot-mod ...
分类:
系统相关 时间:
2021-06-13 09:26:41
阅读次数:
0
问题描述 报错信息如下所示: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrit ...
分类:
Web程序 时间:
2021-06-11 19:17:07
阅读次数:
0
下载压缩包:nginx-1.19.0.tar.gz 解压缩:tar -zxvf nginx-1.19.0.tar.gz 进入解压后的目录:cd nginx-1.19.0 配置安装目录,这一步可忽略,使用默认配置:./configure --prefix=/usr/local/nginx 安装:mak ...
分类:
系统相关 时间:
2021-06-11 19:14:54
阅读次数:
0