tnblog
首页
视频
资源
登录
愿你出走半生,归来仍是少年
排名
3
文章
317
粉丝
22
评论
14
bootstrap 栅格布局一小例子
剑轩 : 后端写样式有点痛苦哇
一点flex布局的运用
剑轩 : 后端写样式有点痛苦哇
vue.js常用指令
剑轩 : 可以可以,多总结一点
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

启动grpc报错:HTTP/2 over TLS is not supported on Windows 7

11293人阅读 2020/1/30 17:35 总访问:2060962 评论:3 收藏:0 手机
分类: net core

.net core grpc报错:NotSupportedException: HTTP/2 over TLS is not supported on Windows 7 due to missing ALPN support

是因为win7不支持TLS的原因

解决方法:在Program.cs中配置不包含 TLS 的 HTTP/2 终结点即可

  1. public static IHostBuilder CreateHostBuilder(string[] args) =>
  2.     Host.CreateDefaultBuilder(args)
  3.         .ConfigureWebHostDefaults(webBuilder =>
  4.         {
  5.             //配置不包含TLS的HTTP/2终结点
  6.             webBuilder.ConfigureKestrel(options =>
  7.             {
  8.                 options.ListenLocalhost(50001, a => a.Protocols =
  9.                         Microsoft.AspNetCore.Server.Kestrel.Core.HttpProtocols.Http2);
  10.             });
  11.             webBuilder.UseStartup<Startup>();
  12.         });

主要是这句话 

  1. Protocols = HttpProtocols.Http2
 让kestrel支持无 tls http/2


调用的时候端口要换成50001,还要设置允许不安全的HTTP2支持

  1. public async void CallgRPC()
  2. {
  3.     //设置允许不安全的HTTP2支持
  4.     AppContext.SetSwitch("System.Net.Http.SocketsHttpHandler.Http2UnencryptedSupport"true);
  5.     var channel = GrpcChannel.ForAddress("http://localhost:50001");
  6.     var client = new Greeter.GreeterClient(channel);
  7.     var reply = await client.SayHelloAsync(new HelloRequest { Name = "GrpcClient" });
  8.     Console.WriteLine(reply.Message);
  9.     Console.WriteLine("Greeting: " + reply.Message);
  10.     Console.WriteLine("Press any key to exit...");
  11.     Console.ReadKey();
  12. }

官方文档有说明:https://docs.microsoft.com/zh-cn/aspnet/core/grpc/troubleshoot?view=aspnetcore-3.0&WT.mc_id=DT-MVP-5003133




欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价

风清月

2020/2/5 19:25:29

新年快乐~

小可爱:@风清月新年快乐~

2020/3/12 14:22:57 回复

小可爱:@风清月早生贵子,嘿嘿

2020/3/12 14:23:23 回复

nginx常用命令。nginx启动命令。nginx重启命令。nginx关闭命令。nginx测试配置文件是否正确。nginx nginx.pid文件丢失报错

启动命令:start nginx 关闭命令:nginx -s stop nginx -s quit nginx -s stop与nginx -s quit区别 Quit is a graceful shu...

net core启动报错Unable to configure HTTPS endpoint. No server certificate was specified

这是因为net core2.1默认使用的https,如果使用Kestrel web服务器的话没有安装证书就会报这个错其实仔细看他的错误提示,其...

window7 docker启动失败 error: Failed to create the VirtualBox object。VirtualBox com对象失败

docker启动失败 报错 error: Failed to create the VirtualBox object这个错是因为:virtuelbox 无法启动,所以启动之后会...

解决iis无法发布问题iis应用程序池无法启动问题

iis无法发布应该是应用程序池没有被启动,而直接启动又无法启动。可以使用下面的步骤来解决1.使用cmd执行命令fsutil resour...

docker启动报错 No default Boot2Docker ISO found locally downloading the latest

这是因为,启动时如果检测到没有 Boot2Docker,就会去下载,这个下载过程出现网络连接上的错误了,导致启动失败。可以去下...

docker 二次启动失败(本人这里使用的是hyper-v)

fatal: failed to start daemon: Error initializing network controller: Error creating default network: hnsCall faile...

IIS网站启动不了,错误提示“另一个程序正在使用此文件,进程无法访问”

一般情况下是因为端口被占,1、在开始--运行 里面输入cmd点回车,会出现运行窗口。2、在提示符后输入netstat -ano回车,找...

ASP.NET Core 启动过程(基础)

ASP.NET Core 启动过程[TOC] 环境准备 项目结构 项目环境 .netcore3.1 开始 启动流程 修改项目 ...

发生服务特定错误: 10048.数据库服务无法启动

很简单找到sqlserver配置管理器把TCP/IP禁用的就行

.net core修改启动端口

可以使用命令的时候修改启动端口很方便 dotnet run --urls=&quot;http://*:5006&quot;

.net core设置启动端口

可以使用命令的时候修改启动端口很方便dotnet run --urls=&quot;http://*:5006&quot;配置UseKestrel:贴下代码方便复制:we...

docker 容器的启动,停止,删除

可以先通过docer ps -a查看容器的运行状态可以看到很多容器就是没有启动状态的docker 容器的启动命令: docker start 容器i...

使用cmd启动.net core web api程序

在解决方法路径下输入cmd2.在控制台中输入Dotnet命令5728是启动的端口号,想单一项目启动多次的话只要端口号不一样就行,core...

win mq 启动时候 Failed to create cookie file '[location of ".erlang.cookie"]/.erlang.cookie': enoent

当使用命令出现一下问题的时候:win mq 启动时候 Failed to create cookie file ‘[location of “.erlang.cookie”]/.erla...

启动RabbitMQ成功但是访问localhost:15672无法访问

启动RabbitMQ成功但是访问localhost:15672无法访问 打卡服务 win 搜索服务或者cmd services.msc 找到rabbitMq 服...