摘要:
首先确认服务器有没有开放端口 开启远程登录 mysql -uroot -p use mysql; update user set host = "%" where user ='root'; grant all privileges on *.* to 'root'@'%' with grant o 阅读全文
摘要:
一个canal的watchdog脚本 check-canal.py import psutil import os import time while True: count = 0 pre_run = list() for pid in psutil.pids(): p = psutil.Proc 阅读全文