摘要:
``` builder.Services.AddTransient(); builder.Services.AddHttpClient("searchIp", config => { }).ConfigurePrimaryHttpMessageHandler(provider => { var pr 阅读全文
摘要:
## 问题 ``` Unhandled exception. System.TypeInitializationException: The type initializer for 'AgileConfig.Server.Data.Freesql.FreeSQL' threw an excepti 阅读全文
摘要:
背景 openwrt 有些固件不太稳定,会时不时的断网,导致家里无法上网,遇到这种情况只能手动重启openwrt设备,该操作不方便,作为一个极客爱好者,那肯定是要实现自动化处理的了,写一个简单的脚本加入到crontab定时任务中,就可完全自动化检测了,解放双手。 脚本思路 1、ping指定域名5次, 阅读全文
摘要:
创建本地秘钥 1、切换到 .ssh目录 cd ~/.ssh 2、生成本地秘钥 ssh-keygen -t rsa -C "yourname@email" 本地公钥上传到远程服务器 1、拷贝本地公钥到远程服务器 ** 方式一:通过命令拷贝** scp ~/.ssh/id_rsa.pub user@ip 阅读全文
摘要:
左侧导航选择“密钥对” 从本地导入.pub 公钥 通过ssh命令连接AWS服务器 C:\\Users\\Administrator\\.ssh\\id_rsa XXXX.ap-southeast-1.compute.amazonaws.com为AWS的公有 DNS ssh root@XXXX.ap- 阅读全文
摘要:
问题一 FATAL: Unable to connect to relay host, errno=10061 kex_exchange_identification: Connection closed by remote host Connection closed by UNKNOWN por 阅读全文
摘要:
后端接口 强制 Web API 从请求正文读取简单类型,添加 [FromBody] 属性到参数 [HttpPost] [Route("create")] public Task<CalendarDto> CreateAsync([FromBody]string name) { return _cal 阅读全文
摘要:
问题 POST请求的时候ABP后端接口报错 The required antiforgery cookie is not present 解决方案 清理下浏览器当前站点Cookie,然后再重试即可 阅读全文