mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
10 lines
No EOL
207 B
Bash
Executable file
10 lines
No EOL
207 B
Bash
Executable file
#!/bin/bash
|
|
|
|
TAOSD_PID=$(ps -ef | grep -wi taosd | grep -v grep | awk '{print $2}' | head -n 1)
|
|
|
|
if [ -z "$TAOSD_PID" ]; then
|
|
echo "Error: taosd process not found."
|
|
exit 1
|
|
fi
|
|
|
|
gdb attach "$TAOSD_PID" |