步骤 1. 安装VMware Workstation 下载地址:https://my.vmware.com/cn/web/vmware/info/slug/desktop_end_user_computing/vmware_workstation_pro/14_0 下载安装 2. 安装CentOS7 安装好后发现不能使用网络 参考资料 http://blog.csdn.net/wanz2/article/details/52820876 3. 安装.net core 参考官网步骤:https:/…
目录 gRPC概述 RPC gRPC又是什么呢 安装 Golang IDE(Goland) Protocol Buffer 下载Protocal Buffer 配置Protocal Buffer编译器环境变量 protoc-gen-go 下载protoc-gen-go 定义Protocal Buffer 添加gRPC服务 Golang服务端实现 Golang客户端实现 .NetCore访问Golang搭建的gRPC服务 参考 gRPC概述 RPC 说到gRPC就不得不提RPC,所谓RPC(rem…
本篇和大家分享的是Linux+NetCore+Nginx搭建负载集群,对于netcore2.0发布后,我一直在看官网的文档并学习,关注有哪些新增的东西,我,一个从1.0到2.0的跟随者这里只总结一句话:2.0版本,api更多,文档更全,新增的razor模板我喜欢.这里来到本文的内容要点: linux快速安装nginx 为nercore项目分别生成:win7-x64和ubuntu.16.04-x64 运行包 nginx+.netcore反向代理的示例 部署一个集群(Linux+NetCore+Ng…
1.[基础]redis能带给我们什么福利 Redis(Remote Dictionary Server)官网:https://redis.io/ Redis命令:https://redis.io/commands Redis is an open source (BSD licensed), in-memory data structure store, used as a database, cache and message broker. It supports data structur…
之前写过一篇Ubuntu的环境搭建博客,感觉一些配置大同小异,这里重点记录下 nginx 作为静态 angular 项目文件服务器的配置 参考链接 [netcore基础]ubuntu 16.04 搭建.net core 2.1 linux 运行环境 nginx反向代理 supervisor配置自启动 Nginx配置 muc api接口服务的配置,域名(api.wxsale.gedu.org)转发到5000端口 如下: server { listen ; server_name api.wxsal…
今天来整理下 netcore 在 linux(ubuntu) 上的运行环境搭建 对应版本 ubuntu 16.04 .net core 2.1 nginx version: nginx/1.10.3 (Ubuntu) supervisor 配置开机重启服务自启动 Supervisorhttp://supervisord.org/是用Python开发的一个client/server服务,是Linux/Unix系统下的一个进程管理工具,不支持Windows系统.它可以很方便的监听.启动.停止.重启一…
查看linux内核版本 uname -a 打印结果 python@ubuntu:~$ uname -a Linux ubuntu 4.4.0-31-generic #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux 查看ubuntu系统版本 lsb_release -a 打印结果 python@ubuntu:~$ lsb_release -a No LSB modules are available…
一.安装VS Code for C#的相关插件 1.C# :https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp 2.Code Runner:运行C#部分代码,或调试项目 https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner 3.C# XML Documentation Comments:自动生成C#注释 htt…
一.使用命令创建并运行.Net Core程序 1.dotnet new  xxx:创建指定类型的项目console,mvc,webapi 等 2.dotnet restore :加载依赖项 dotnet restore 调用到 NuGet 以恢复依赖项树. NuGet 分析 project.json 文件.下载文件中所述的依赖项(或从计算机缓存中获取)并编写 project.lock.json 文件. 需要 project.lock.json 文件才可进行编译和运行. 3.dotnet buil…
一.问题 使用Swashbuckle.AspNetCore生成.NetCore WEBAPI的接口文档的方法 二.解决方案 参考文章:https://docs.microsoft.com/zh-cn/aspnet/core/tutorials/web-api-help-pages-using-swagger?tabs=visual-studio 1.Install-Package Swashbuckle.AspNetCore 2.在ConfigureServices中添加AddSwaggerGe…