- 浏览: 1475254 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (691)
- linux (207)
- shell (33)
- java (42)
- 其他 (22)
- javascript (33)
- cloud (16)
- python (33)
- c (48)
- sql (12)
- 工具 (6)
- 缓存 (16)
- ubuntu (7)
- perl (3)
- lua (2)
- 超级有用 (2)
- 服务器 (2)
- mac (22)
- nginx (34)
- php (2)
- 内核 (2)
- gdb (13)
- ICTCLAS (2)
- mac android (0)
- unix (1)
- android (1)
- vim (1)
- epoll (1)
- ios (21)
- mysql (3)
- systemtap (1)
- 算法 (2)
- 汇编 (2)
- arm (3)
- 我的数据结构 (8)
- websocket (12)
- hadoop (5)
- thrift (2)
- hbase (1)
- graphviz (1)
- redis (1)
- raspberry (2)
- qemu (31)
- opencv (4)
- socket (1)
- opengl (1)
- ibeacons (1)
- emacs (6)
- openstack (24)
- docker (1)
- webrtc (11)
- angularjs (2)
- neutron (23)
- jslinux (18)
- 网络 (13)
- tap (9)
- tensorflow (8)
- nlu (4)
- asm.js (5)
- sip (3)
- xl2tp (5)
- conda (1)
- emscripten (6)
- ffmpeg (10)
- srt (1)
- wasm (5)
- bert (3)
- kaldi (4)
- 知识图谱 (1)
最新评论
-
wahahachuang8:
我喜欢代码简洁易读,服务稳定的推送服务,前段时间研究了一下go ...
websocket的helloworld -
q114687576:
http://www.blue-zero.com/WebSoc ...
websocket的helloworld -
zhaoyanzimm:
感谢您的分享,给我提供了很大的帮助,在使用过程中发现了一个问题 ...
nginx的helloworld模块的helloworld -
haoningabc:
leebyte 写道太NB了,期待早日用上Killinux!么 ...
qemu+emacs+gdb调试内核 -
leebyte:
太NB了,期待早日用上Killinux!
qemu+emacs+gdb调试内核
gdb-dashboard或者 gdbgui
或者gdb自带的tui(ctl x + a )
gdb-dashboard这个样子
https://github.com/cyrus-and/gdb-dashboard
https://metricpanda.com/tips-for-productive-debugging-with-gdb
如果报错
https://github.com/cyrus-and/gdb-dashboard/issues/1#issuecomment-176717956
Actually, overcoming the lack of gdb.COMPLETE_EXPRESSION is quite easy, just add:
python gdb.COMPLETE_EXPRESSION = gdb.COMPLETE_SYMBOL
as the first line in .gdbinit.
gdbgui
https://reverseengineering.stackexchange.com/questions/1392/decent-gui-for-gdb
https://github.com/cs01/gdbgui
gdb dashboard
https://github.com/cyrus-and/gdb-dashboard
为了gdb-dashboard 只有7.7以上支持 默认centos7不行
安装gdb-8.0
dashboard -layout
######################
#################################
★★项目.gdbinit
http://blog.csdn.net/hejinjing_tom_com/article/details/42490771
gdb -iex "set auto-load safe-path /"
或者
项目的gdbinit文件
vim ~/.gdbinit
set auto-load safe-path /
set history save on
每个目录内的.gdbinit就起作用了
查验:
前面的几个是全局符号, 其中重要的有一个源代码绝对根路径
##########################
l
查看当前代码路径
info source
查看全部
info sources
list 是显示源码
(gdb) list # 查看代码执行位置的10行
(gdb) list # 再显示10行
(gdb) list - # 查看上一个list命令之前的10行
(gdb) list 3,19 # 查看3-19行
(gdb) list main # 查看main函数开始的10代码
(gdb) list hello.c:23 # 查看hello.c文件第23行后的10行
(gdb) list hello.c:main # 查看hello.c文件中函数main开始的10行
(gdb) list *0x1000000 # 查看地址为 0x1000000 的10行代码,
查找
search ngx_stri
reverse-search ngx_stri
set history save on
set history filename <fname>
By default the history file (.gdb_history) is saved in the current
run之后
record
可以回退
reverse-next
reverse-有很多
record stop
设置变量
set var a=6
删除断点
info b
delete b
或者gdb自带的tui(ctl x + a )
gdb-dashboard这个样子
https://github.com/cyrus-and/gdb-dashboard
https://metricpanda.com/tips-for-productive-debugging-with-gdb
如果报错
[root@mcompute705 ~]# gdb GNU gdb (GDB) Red Hat Enterprise Linux 7.6.1-94.el7 Copyright (C) 2013 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-redhat-linux-gnu". For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>. Traceback (most recent call last): File "<string>", line 1, in <module> File "<string>", line 387, in start File "<string>", line 290, in load_modules File "<string>", line 493, in __init__ File "<string>", line 523, in add_subcommands File "<string>", line 1402, in commands AttributeError: 'module' object has no attribute 'COMPLETE_EXPRESSION' /root/.gdbinit:1432: Error in sourced command file: Error while executing Python code. >>>
https://github.com/cyrus-and/gdb-dashboard/issues/1#issuecomment-176717956
Actually, overcoming the lack of gdb.COMPLETE_EXPRESSION is quite easy, just add:
python gdb.COMPLETE_EXPRESSION = gdb.COMPLETE_SYMBOL
as the first line in .gdbinit.
gdbgui
https://reverseengineering.stackexchange.com/questions/1392/decent-gui-for-gdb
https://github.com/cs01/gdbgui
gdb dashboard
https://github.com/cyrus-and/gdb-dashboard
gdbgui pip install gdbgui --upgrade gdbgui -r
为了gdb-dashboard 只有7.7以上支持 默认centos7不行
安装gdb-8.0
dashboard -layout
######################
#################################
★★项目.gdbinit
http://blog.csdn.net/hejinjing_tom_com/article/details/42490771
gdb -iex "set auto-load safe-path /"
或者
项目的gdbinit文件
vim ~/.gdbinit
set auto-load safe-path /
set history save on
每个目录内的.gdbinit就起作用了
查验:
info auto-load readelf -S /usr/local/nginx/sbin/nginx
前面的几个是全局符号, 其中重要的有一个源代码绝对根路径
readelf -p .debug_str /usr/local/nginx/sbin/nginx |grep opt
##########################
l
查看当前代码路径
info source
查看全部
info sources
list 是显示源码
(gdb) list # 查看代码执行位置的10行
(gdb) list # 再显示10行
(gdb) list - # 查看上一个list命令之前的10行
(gdb) list 3,19 # 查看3-19行
(gdb) list main # 查看main函数开始的10代码
(gdb) list hello.c:23 # 查看hello.c文件第23行后的10行
(gdb) list hello.c:main # 查看hello.c文件中函数main开始的10行
(gdb) list *0x1000000 # 查看地址为 0x1000000 的10行代码,
查找
search ngx_stri
reverse-search ngx_stri
set history save on
set history filename <fname>
By default the history file (.gdb_history) is saved in the current
run之后
record
可以回退
reverse-next
reverse-有很多
record stop
设置变量
set var a=6
删除断点
info b
delete b
发表评论
-
ios的safari使用自制ca证书测试webrtc
2018-08-20 13:31 2433这个需要注意 https://stackoverflow.c ... -
nginx push_upstream模块的websocket
2018-05-04 23:27 1215参考 https://www.rails365.net/art ... -
openresty聊天室的helloworld
2018-04-22 19:25 796openresty的websocket + redis的sub ... -
openresty websocket
2018-04-18 17:08 1512mac安装openresty brew install o ... -
nginx模块开发(三)upstream模块
2017-08-20 23:48 843使用nginx-1.13.4版本 三个文件ngx_http_ ... -
nginx模块开发(一)
2017-07-29 22:44 563决定重新整理nginx模块开发 helloworld con ... -
nginx带进度条的上传超大文件
2016-12-12 18:40 386911年写的 http://haoningabc.iteye.c ... -
nginx rewrite替代apache rewrite
2016-10-18 20:30 831清理chrome的缓存 chrome://appcache-i ... -
ffmpeg+nginx 的直播(2,直播摄像头和麦克风)
2016-05-28 20:21 4355假设我的服务器是centos7 192.168.139.117 ... -
ffmpeg+nginx 的直播(1,直播播放的视频文件)
2016-05-26 17:11 659064位操作系统centos7 ############ 1.一 ... -
qemu+emacs+gdb调试内核
2015-12-02 22:15 2796core生成的位置 echo “/data/coredump/ ... -
gdb emacs
2015-11-20 22:24 745参考 http://www.cnblogs.com/q ... -
nginx执行流程
2014-04-15 18:35 1080目标:打印nginx执行之后的流程方法 my_debug.c ... -
graphviz绘制nginx函数调用图
2014-04-14 18:43 1462以下是c的版本 c++代码去 http://www.cnblo ... -
nginx的远程调用模块
2014-03-24 14:31 2769在tx工作的时候,自己的虚拟机总是连接不上,公司封了ssh端口 ... -
通过nginx远程执行shell
2014-03-03 10:26 5081saltstack远程执行shell,远程管理等返回json已 ... -
nginx的upstream模块
2014-01-17 17:37 3204参考http://nginx.weebly.com/31034 ... -
nginx调试日志的几种方法
2013-10-17 22:54 23314最简单的方式就是 fprintf(stderr, &qu ... -
nginx HttpSecureLinkModule 过期token验证模块
2012-11-07 02:15 6084用途,确认一个链接比如下载pdf,在一定有效期内有用 可以加 ... -
nginx 上传进度条
2012-11-01 16:24 7606费劲周折,一晚上终于搞定了,nginx版本1.38 ----- ...
相关推荐
深入理解Nginx模块开发与架构解析-带书签超清扫描版 这个是带书签的扫描版。
1、nginx-http-flv-module(windows可执行程序,含http-flv-module:1.2.7,nginx 1.19.3) 2、不要放置于中文路径下,否则无法启动 3、说明文档,请下载查看。
4. 模块开发基础:介绍如何编写C语言的Nginx模块,包括模块结构、API使用和编译构建。 5. 高级模块开发:讨论更复杂的模块开发技巧,如多线程、内存管理、模块间通信等。 6. 负载均衡和缓存策略:讲解Nginx如何实现...
在windows 7 64位 环境下使用nginx的nginx-http-flv-module搭建flv视频流播放所有的安装包,参考:https://blog.csdn.net/qq_33071429/article/details/102628008
**Nginx模块源码分析:nginx-notice-2** Nginx是一个高性能的Web服务器和反向代理服务器,以其轻量级、高并发、低内存占用等特性在IT行业中广泛应用。开发者通常会通过编写自定义模块来扩展Nginx的功能,以满足特定...
Nginx-RTMP是Nginx的一个扩展模块,由Adobe Systems开发,用于支持Real-Time Messaging Protocol (RTMP)。RTMP是一种协议,常用于在线流媒体传输,如视频直播服务。Nginx-RTMP模块允许Nginx接收来自Flash Player或...
`nginx-http-flv-module`是Nginx的一个第三方模块,由张洪君开发,用于处理FLV格式的流媒体数据。通过这个模块,Nginx可以支持RTMP协议,实现实时流媒体的推拉流,为Flash Player和其他支持RTMP的客户端提供服务。...
nginx-http-flv-module 是由 nginx 开发社区创建的一个第三方模块,用于在 Nginx 上实现 HTTP 直播(HTTP Live Streaming,HLS)和FLV格式的视频流。FLV(Flash Video)是 Adobe Flash 平台广泛使用的视频格式,...
本资源提供的是一款针对Windows平台的Nginx,其中已经集成了`nginx-http-flv-module`模块,这个模块主要用于支持HTTP实时流(HTTP Live Streaming, HLS)和Flash视频流(Flash Video, FLV)。现在我们将深入探讨这一...
【标题】:“(修复bug模块)nginx-http-flv-module-master 支持flv模块直播” 指的是一个专门针对Nginx服务器的扩展模块,该模块允许Nginx支持流媒体服务,特别是针对FLV(Flash Video)格式的实时流媒体。...
在给定的压缩包文件中,"使用必看.txt"可能包含了编译和使用过程中的注意事项,而"nginx-rtmp.zip"可能是包含了RTMP模块的源代码,这在搭建流媒体服务器时也会用到,因为HTTP FLV Module通常与RTMP模块结合使用,为...
Sticky是nginx的一个模块,它是基于cookie的一种nginx的负载均衡解决方案,通过分发和识别cookie,来使同一个客户端的请求落在同一台服务器上,默认标识名为route (a)客户端首次发起访问请求,nginx接收后,发现...
nginx sticky是nginx的module,可以实现基于cookie的负载均衡。 下载后,在编译安装nginx时,用--add-module... ./configure --prefix=/usr/local/nginx-1.6.0 --add-module=../nginx-sticky-module-1.25 --without-...
**Nginx-RTMP 模块详解** Nginx-RTMP 模块是 Nginx 的一个扩展,用于处理 Real-Time Messaging Protocol (RTMP) 流,它允许 Nginx 作为 RTMP 服务器运行,支持直播和点播服务。这个源码包 "nginx-rtmp-module-...
1、最新版 nginx-http-flv-module(linux可执行程序,含nginx 1.19.3,http-flv-module:1.2.7) 2、内含说明文档,请下载查看。 3、请勿放置于中文路径下,否则无法启动 4、sbin/nginx -c conf/nginx.conf
压缩包子文件的文件名"nginx-1.19.3_Compiled"表示包含了编译好的Nginx服务器,这通常包括配置文件、二进制可执行文件和其他必要的库文件。用户解压后,可以在自己的服务器上直接部署这个版本的Nginx,无需经历复杂...
官方离线安装包,测试可用。使用rpm -ivh [rpm完整包名] 进行安装
【标题】"nginx-upstream-jvm-route-1.15" 涉及的核心知识点是Nginx的upstream模块与JVM路由的整合,特别针对Nginx 1.15版本。这个项目旨在解决在配置Nginx时遇到的特定错误提示“nginx: [emerg] invalid parameter ...
--> nginx-1.21.6 ======================== 在网上查找半天都只有教程,没有可免费下载的版本,深知没有积分遍地找资源的痛苦,无奈之下只好自己按照教程一步一个坑编译出来的,供大家免费下载使用。(无毒放心使用...