码迷,mamicode.com
首页 >  
搜索关键字:apply security setting    ( 14715个结果
logstash报错如下:Validation Failed: 1: this action would add [2] total shards, but this cluster currently has [999]/[1000] maximum shards open
超过最大分片引起的,在es机器上执行:curl -XPUT -H "Content-Type:application/json" -d '{"persistent":{"cluster":{"max_shards_per_node":10000}}}' 'http://es-host:9200/_c ...
分类:其他好文   时间:2021-05-25 17:41:51    阅读次数:0
Spring Security + OAuth2 + JWT 基本使用
Spring Security + OAuth2 + JWT 基本使用 前面学习了 Spring Security 入门,现在搭配 oauth2 + JWT 进行测试。 1、什么是 OAuth2 OAuth 是一个关于授权(authorization)的开放网络标准,使得第三方应用可以使用该令牌在限 ...
分类:编程语言   时间:2021-05-24 16:37:46    阅读次数:0
Javascript中apply、call、bind
这篇文章实在是很难下笔,因为网上相关文章不胜枚举。 巧合的是前些天看到阮老师的一篇文章的一句话: “对我来说,博客首先是一种知识管理工具,其次才是传播工具。我的技术文章,主要用来整理我还不懂的知识。我只写那些我还没有完全掌握的东西,那些我精通的东西,往往没有动力写。炫耀从来不是我的动机,好奇才是。" ...
分类:移动开发   时间:2021-05-24 16:11:19    阅读次数:0
csrf_token 验证
在django 中运用 csrf_token 验证, 排除一些跨站请求攻击。 首先在settings.py文件中 打开 csrf中间件 MIDDLEWARE = [ 'django.middleware.security.SecurityMiddleware', 'django.contrib.se ...
分类:其他好文   时间:2021-05-24 16:00:37    阅读次数:0
adb monkey指令使用笔录
指令:adb shell "monkey -p com.mob.mobpush.demo --ignore-crashes --ignore-timeouts --ignore-security-exceptions --throttle 1000 -s 500 -v -v -v 999999999 ...
分类:数据库   时间:2021-05-24 14:46:08    阅读次数:0
chattr: Operation not permitted while setting flags on file 问题解决
前言 之前在利用docker 2375端口漏洞的时候,写公钥发现没有权限,检查后发现其被chattr锁定了 当使用chattr命令去解锁时,就出现了这个问题 chattr: Operation not permitted while setting flags on file 解决方案 chattr ...
分类:其他好文   时间:2021-05-24 13:37:55    阅读次数:0
详讲自定义动画的实现
动画只需要连续绘制图片就可以形成动画,那么就可以改变参数,使参数连续变化就可以形成动画了 以移动圆为例: //画大圆的paintprivate val paintBigCircle: Paint by lazy { Paint().apply { style = Paint.Style.FILL c ...
分类:其他好文   时间:2021-05-24 12:51:59    阅读次数:0
spring-security查询数据库源码解析
private final AuthenticationManagerBuilder authenticationManagerBuilder; UsernamePasswordAuthenticationToken authenticationToken = new UsernamePasswor ...
分类:数据库   时间:2021-05-24 10:25:37    阅读次数:0
nginx 配置html后缀当php解析
修改php-fpm.conf security.limit_extensions = .php .html 查看php-fpm.conf内listen,如果是端口则nginx.conf server内容为 location ~ \.php|\.html(.*)$ { fastcgi_pass 127 ...
分类:Web程序   时间:2021-05-24 09:26:26    阅读次数:0
Django关于数据库的对接操作
对近期的数据库配置进行一个记录,方便我以后查阅。 我的Django项目配备的是Mysql的数据库,平时使用的工具是VS Code,推荐安装Mysql插件,效果不错: 下面是在项目的setting.py中配置的Mysql连接数据: DATABASES = { 'default': { 'ENGINE' ...
分类:数据库   时间:2021-05-24 09:06:47    阅读次数:0
14715条   上一页 1 ... 5 6 7 8 9 ... 1472 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!