简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
主要是代理一些tcp请求,目前主要可以应用的场景是supOS部署在k8s集群上面后,使用天湖内置的mariadb工作机无法访问,估需要nginx进行tcp转发。192.168.18.65:30001为mariadb svc监听的本地端口,需要手动开放 集群模式下如何开放服务端口。这里配置的意思是:本地监听3306端口,并将该端口的数据转发到192.168.18.65:30001。注意:stream
#!/usr/bin/env python-- coding:utf-8 --import urllib2import jsonclass DingDing(object):def init(self):self.url =#钉钉机器人链接self.headers = {‘Content-Type’: “application/json; charset=utf-8”, ‘Use...
订阅消息#!/usr/bin/python-- coding:utf-8 --import paho.mqtt.client as mqttdef on_connect(client, userdata, flags, rc):print("Connected with result code: " + str(rc))def on_message(client, userdata, ...
###钉钉机器人实例#!/usr/bin/env python-- coding:utf-8 --import urllib2import jsonclass DingDing(object):def init(self):self.url = ‘https://oapi.dingtalk.com/robot/send?access_token=0192ec88a09f0f5b354...