上一页 1 2 3 4 5 6 ··· 9 下一页
摘要: 群晖nas配置rsync 参考: https://www.cnblogs.com/lemon-le/p/8395438.html 进入群晖nas后台 首先你需要进入管理员的web界面,把ssh打开,注意,一定点开高级模式那个ssh,不是rsync的那个按钮,否则ssh进不去 再后台执行 sudo - 阅读全文
posted @ 2021-08-26 13:56 maob 阅读(1815) 评论(0) 推荐(0) 编辑
摘要: linux开机自启动_chkconfig 准备可执行程序 g 准备shell脚本 s,s里面是执行g, 放在 /etc/init.d 目录下 执行 chkconfig --add s 对于凝思,假如程序是守护程序,但是手动启动耗时,需要重启,所以需要上面的方式弄一个重启服务 func (this * 阅读全文
posted @ 2021-08-23 14:24 maob 阅读(294) 评论(0) 推荐(0) 编辑
摘要: 获取pid并且kill #!/bin/bash echo "hello word" # 注意这里需要用 `` job=`pidof g` res="$job" echo "最后res结果" echo "$res" echo "把 $res kill" k=`kill -9 $res ` $k 阅读全文
posted @ 2021-08-23 11:36 maob 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 开源包mqtt源码_DEBUG 巧妙的调试不注释变量 官方代码包 type ( // Logger interface allows implementations to provide to this package any // object that implements the method 阅读全文
posted @ 2021-08-18 10:55 maob 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 开源包mqtt源码_订阅和发布 重头戏: 订阅 官方订阅代码 // Subscribe starts a new subscription. Provide a MessageHandler to be executed when // a message is published on the t 阅读全文
posted @ 2021-08-16 20:02 maob 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 开源包mqtt源码_Connect 知识点: options 包头 官方最简单的代码示例 /* * Copyright (c) 2021 IBM Corp and others. * * All rights reserved. This program and the accompanying m 阅读全文
posted @ 2021-08-14 16:13 maob 阅读(1239) 评论(0) 推荐(0) 编辑
摘要: 开源包mqtt源码_token github.com/eclipse/paho.mqtt.golang 测试代码 /* * Copyright (c) 2021 IBM Corp and others. * * All rights reserved. This program and the ac 阅读全文
posted @ 2021-08-13 09:54 maob 阅读(259) 评论(0) 推荐(0) 编辑
摘要: Go_expvar_log包 package main import ( "bytes" "expvar" "fmt" "log" ) func main() { var ( buf bytes.Buffer logger = log.New(&buf, "INFO: ", log.Llongfil 阅读全文
posted @ 2021-08-09 19:59 maob 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 对于平台代码的思考 代码编译分为windows和linux 案例 实现一个pid管理程序 对于pid管理的pool,希望一份代码完全兼容,还可以做到代码复用,真好! 事实验证这样并不好 对于windows编译来说,还需要带图标,需要各种的gcc,巨恶心 当编译完之后,还想编译linux的,需要把额外 阅读全文
posted @ 2021-07-30 15:37 maob 阅读(38) 评论(0) 推荐(0) 编辑
摘要: Go的tcp长连接 为订阅打基础 server package main import ( "fmt" "log" "net" "strconv" "time" ) type Manger struct { Kv map[int]*net.TCPConn fl int } func (m *Mang 阅读全文
posted @ 2021-07-28 21:57 maob 阅读(1424) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 9 下一页