美文网首页
使用tcpdump获取MySQL数据包

使用tcpdump获取MySQL数据包

作者: letcoda | 来源:发表于2019-03-22 11:16 被阅读0次

    在开发过程,有些时候我们不方便到MySQL主机进行tail -f sql.log,或者MySQL 同时被很多进程操作,此时可以在自己的机器上进行MySQL 协议抓包.找到我们程序运行时具体执行了哪些sql

    tcpdump -i en0  -s 0 -l -w - dst port 3306 | strings
    

    相关文章

      网友评论

          本文标题:使用tcpdump获取MySQL数据包

          本文链接:https://www.haomeiwen.com/subject/oorlvqtx.html