所谓的拦截器,其实可以理解为请求拦截,意义就是在发送请求或者响应请求之前做一些我们需要判断的事情,比如发送登录请求时判断token是否过期,是否需要携带token值,都可以在请求之前配置 import axios from 'axios' // 配置默认的host,假如你的API host是:htt ...
分类:
其他好文 时间:
2021-06-16 17:55:14
阅读次数:
0
1、解决DOS攻击生产案例:根据web日志或者或者网络连接数,监控当某个IP 并发连接数或者短时内PV达到100,即调用防火墙命令封掉对应的IP,监控频 率每隔5分钟。防火墙命令为:iptables -A INPUT -s IP -j REJECT 根据并发链接数 编写脚本: root@gitlab ...
分类:
其他好文 时间:
2021-06-16 17:47:42
阅读次数:
0
一、连接Redis服务器 redis-cli -h host -p port -a password 二、查询所有的keys keys * 三、获取指定的key对应的值 1)查询key对应的value type <key> 2)不同的type,查询的命令不一样 if value is of type ...
分类:
其他好文 时间:
2021-06-15 18:44:46
阅读次数:
0
Apache Flink Apache Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities. Learn more about Flin ...
分类:
其他好文 时间:
2021-06-15 18:01:00
阅读次数:
0
import redisr = redis.Redis(host="0.0.3.40",password="123123&*",port=6379,db=4,decode_responses=True)#字符 string k-v#哈希 hash#字符串 string k-v {"name":111 ...
分类:
编程语言 时间:
2021-06-13 10:56:05
阅读次数:
0
Mongodb的ReplicaSet实验 标签(空格分隔): MongoDB 本文验证了:要保证mongodb RS集群在宕机情况下的可用性,至少需要三台机器。 目的 本实验的ReplicaSet集群为 1*Primary, 1*Secondary, n*Arbiter。 目的是为了验证: 三机环境 ...
分类:
数据库 时间:
2021-06-13 10:01:36
阅读次数:
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
pymysql连接报错: _init__() takes 1 positional argument but 5 positional arguments (and 1 keyword-only argument) were given 解决方法: 连接方法加属性名称,例 pymysql.conne ...
分类:
其他好文 时间:
2021-06-13 09:42:22
阅读次数:
0
#!/bin/bash# 设置mysql的登录用户名和密码(根据实际情况填写)mysql_user="root"mysql_password="skyland"mysql_host="10.230.130.10"mysql_port="3306"mysql_charset="utf8mb4" # 备 ...
分类:
数据库 时间:
2021-06-10 17:38:08
阅读次数:
0
springCloud 1、创建一个简单的springcloud项目 先看基本项目结构 springcloud:父项目,总项目,对jar包版本等管控 springcloud-api:api主要是提供实体类的一个api模块 spring-cloud-provide-***-host:这个是一个服务提供 ...
分类:
编程语言 时间:
2021-06-08 23:36:55
阅读次数:
0