摘要: 上一篇简单使用了grpcGolang简单使用grpc server package main import ( "fmt" "golang.org/x/net/context" "google.golang.org/grpc" "google.golang.org/grpc/codes" "goog 阅读全文
posted @ 2023-11-06 16:28 朝阳1 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 接着上篇文章 Golang实现grpc单向认证 注意事项 前面我们生成的根证书是ca.crt,在双向认证时,我使用的是ca.pem,所以需要更改一下证书的类型。 只需将1.4的生成ca.crt的命令改为ca.pem即可 4 修改根证书生成命令 4.1.1 生成ca秘钥,得到ca.key【命令与1.2 阅读全文
posted @ 2023-11-06 16:17 朝阳1 阅读(626) 评论(0) 推荐(0) 编辑
摘要: 接着上篇文章写 Golang 简单使用grpc golang 1.15+版本上,用 gRPC通过TLS实现数据传输加密时,会报错证书的问题: rpc error: code = Unavailable desc = connection error: desc = "transport: authe 阅读全文
posted @ 2023-11-06 16:09 朝阳1 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 文件夹格式 编写proto syntax = "proto3"; // 指定proto版本 package pb; // 指定默认包名 // 指定golang包名 // 指令 protoc -I . --go_out=. --go-grpc_out=. ./hello.proto // protoc 阅读全文
posted @ 2023-11-06 16:00 朝阳1 阅读(40) 评论(0) 推荐(0) 编辑
摘要: docker安装 docker run -d --name emqx -p 1883:1883 -p 8083:8083 -p 8084:8084 -p 8883:8883 -p 18083:18083 emqx/emqx:5.8.0 示例使用使用EMQX提供的免费公共 MQTT 服务器,该服务基于 阅读全文
posted @ 2023-11-04 16:39 朝阳1 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 现在A机器执行ssh-keygen命令,生成id_rsa和id_rsa.pub两个文件,id_rsa是私钥(重要,需安全保管),id_rsa.pub是公钥,密钥生成过程中可根据提示对密钥设置密码,也可留空直接回车。 ssh-keygen -t rsa A机器将刚才的公钥复制到B服务器192.168. 阅读全文
posted @ 2023-11-04 11:02 朝阳1 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 服务器1:192.168.1.1 服务器2:192.168.1.2 在本地生成本机的公钥和私钥,一路回车,默认即可,默认公钥和私钥存储在家目录下的.ssh文件夹下,即~/.ssh下,当然你也可以生成自己的设置。公钥交给另一台服务器,当本服务器去连接另一台服务器时,另一台服务器会使用公钥与本服务器的私 阅读全文
posted @ 2023-11-04 10:58 朝阳1 阅读(111) 评论(0) 推荐(0) 编辑
摘要: filebeat基本配置 # 输入 filebeat.inputs: - type: log enabled: true paths: - Z:\webman\runtime\logs\ad-*.log #json.keys_under_root: true #json.overwrite_keys 阅读全文
posted @ 2023-11-04 10:18 朝阳1 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 1:defer的执行顺序 多个defer出现的时候,它是一个“栈”的关系,也就是先进后出。一个函数中,写在前面的defer会比写在后面的defer调用的晚 package main import "fmt" func main() { defer func1() defer func2() defe 阅读全文
posted @ 2023-11-03 09:40 朝阳1 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 数值类型 类型 大小 范围(有符号) 范围(无符号) 用途 TINYINT 1 Bytes (-128,127) (0,255) 小整数值 SMALLINT 2 Bytes (-32 768,32767) (0,65535) 大整数值 MEDIUMINT 3 Bytes (-8 388608,838 阅读全文
posted @ 2023-11-02 08:58 朝阳1 阅读(8) 评论(0) 推荐(0) 编辑