会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
chester
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
43
下一页
2019年6月23日
GRPC Oauth Identity
摘要: gRPC中集成asp.net identity实现oAuth认证 在asp.net core 3.0中开启identity认证 asp.net core 3.0种需要导入的identity包与core 2.2发生了些变化: <ItemGroup> <PackageReference Include=
阅读全文
posted @ 2019-06-23 12:50 chester·chen
阅读(593)
评论(0)
推荐(0)
编辑
2019年6月21日
GRPC 截止时间与元数据
摘要: 截止时间 gRPC 允许客户端在调用一个远程方法前指定一个最后期限值。这个值指定了在客户端可以等待服务端多长时间来应答,超过这个时间值 RPC 将结束并返回DEADLINE_EXCEEDED错误。在服务端可以查询这个期限值来看是否一个特定的方法已经过期,或者还剩多长时间来完成这个方法。 元数据 元数
阅读全文
posted @ 2019-06-21 17:00 chester·chen
阅读(1133)
评论(0)
推荐(0)
编辑
2019年6月6日
自定义AuthorizeFilter
摘要: using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Authorization.Infrastructure; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Authorization; using Microsoft.AspNet...
阅读全文
posted @ 2019-06-06 13:41 chester·chen
阅读(1278)
评论(0)
推荐(1)
编辑
2019年6月5日
elk docker-compose
摘要: version: '3.1' services: elasticsearch: image: docker.elastic.co/elasticsearch/elasticsearch:6.2.4 container_name: elasticsearch ports: - "9200:9200" volumes: - elasticsearch-data:/us...
阅读全文
posted @ 2019-06-05 10:44 chester·chen
阅读(463)
评论(0)
推荐(0)
编辑
2019年5月29日
jenkins pipeline中获取shell命令的标准输出或者状态
摘要: //获取标准输出//第一种 //第二种 //第三种 //获取执行状态 //第一种 //第二种 //第三种 //无需返回值,仅执行shell命令 //最简单的方式 例如: 工作中需要获取shell 命令的执行状态,返回0或者非0groovy语句写法为: 如果grep命令执行没有报错,正常情况下exit
阅读全文
posted @ 2019-05-29 13:39 chester·chen
阅读(15888)
评论(0)
推荐(0)
编辑
jenkinsfile
摘要: https://blog.csdn.net/diantun00/article/details/81075007 https://www.cnblogs.com/stulzq/p/10115589.html
阅读全文
posted @ 2019-05-29 13:35 chester·chen
阅读(358)
评论(0)
推荐(0)
编辑
Git pull记住密码
摘要: 在使用https git拉取代码时,每次git pull的时候都会让输入用户名和密码 进入项目目录 命令:git config --global credential.helper store 然后会生成一个本地文件用于记录用户名和密码,这个文件我们无需关心 再次git pull一下,会让输入用户名
阅读全文
posted @ 2019-05-29 13:32 chester·chen
阅读(2187)
评论(0)
推荐(0)
编辑
jenkins pipline
摘要: def getHost(){ def remote = [:] remote.name = 'server02' remote.host = '39.19.90' remote.user = 'root' remote.port = 22 remote.password = '#########' remote.allowAnyHosts ...
阅读全文
posted @ 2019-05-29 11:56 chester·chen
阅读(329)
评论(0)
推荐(0)
编辑
2019年5月25日
redis安装
摘要: 一、安装redis 第一步:下载redis安装包 wget http://download.redis.io/releases/redis-4.0.6.tar.gz 第二步:解压压缩包 tar -zxvf redis-4.0.6.tar.gz 第三步:yum安装gcc依赖 yum install g
阅读全文
posted @ 2019-05-25 18:42 chester·chen
阅读(192)
评论(0)
推荐(0)
编辑
Identityserver4证书
摘要: dotnet应用用IdentityServer4做了登陆的功能,本地运行没有问题,部署到服务器上面就出现上面的问题,打开服务器的日志记录开关,获取到下面的异常信息。原来是 通过分析日志信息,发现报错的原因是因为IdentityServer4的加密签名导致的。 IS4中如果token的类型是JWT,则
阅读全文
posted @ 2019-05-25 14:25 chester·chen
阅读(1112)
评论(0)
推荐(0)
编辑
上一页
1
···
13
14
15
16
17
18
19
20
21
···
43
下一页