本节内容:
nginx 自动调试脚本
编译时,configure 加上--with-debug,
nginx.conf 中
复制代码 代码示例:
worker_processes 1;
然后:
复制代码 代码示例:
make
make install
sbin/nginx
ps -A |grep nginx
然后,找到:
gdb -p
分享下自动化脚本:
复制代码 代码示例:
killall nginx
sleep 3
sbin/nginx
sleep 3
procnum=`ps -A | grep nginx |tail -n 1 |
linuxjishu/13830.html target=_blank class=infotextkey>awk '{print $1}' `
gdb -p $procnum