这次的排错过程,主要是由我的 mentor 主导的,这边也给出了我导师的 github 账号,有兴趣的可以去交流一下哦。
tail -f logs/error.log
首先 static/img/2022-02-08-记录一次排错/image-20220208223242984.png
- 得到 etcd 中所有的路由信息
etcdctl get / --prefix --keys-only
- tail 日志信息
tail -f logs/error.log
- 删除 etcd 中所有的 APISIX 路由数据
etcdctl del /apisix/routes --prefix
- 这边也记录一下 etcd 的官方关闭命令,其实也可以参考其他进程类关闭的方法:
kill `pgrep etcd`
来自于 etcd 官方链接