Skip to main content
Redhat Developers  Logo
  • AI

    Get started with AI

    • Red Hat AI
      Accelerate the development and deployment of enterprise AI solutions.
    • AI learning hub
      Explore learning materials and tools, organized by task.
    • AI interactive demos
      Click through scenarios with Red Hat AI, including training LLMs and more.
    • AI/ML learning paths
      Expand your OpenShift AI knowledge using these learning resources.
    • AI quickstarts
      Focused AI use cases designed for fast deployment on Red Hat AI platforms.
    • No-cost AI training
      Foundational Red Hat AI training.

    Featured resources

    • OpenShift AI learning
    • Open source AI for developers
    • AI product application development
    • Open source-powered AI/ML for hybrid cloud
    • AI and Node.js cheat sheet

    Red Hat AI Factory with NVIDIA

    • Red Hat AI Factory with NVIDIA is a co-engineered, enterprise-grade AI solution for building, deploying, and managing AI at scale across hybrid cloud environments.
    • Explore the solution
  • Learn

    Self-guided

    • Documentation
      Find answers, get step-by-step guidance, and learn how to use Red Hat products.
    • Learning paths
      Explore curated walkthroughs for common development tasks.
    • Guided learning
      Receive custom learning paths powered by our AI assistant.
    • See all learning

    Hands-on

    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.
    • Interactive labs
      Learn by doing in these hands-on, browser-based experiences.
    • Interactive demos
      Click through product features in these guided tours.

    Browse by topic

    • AI/ML
    • Automation
    • Java
    • Kubernetes
    • Linux
    • See all topics

    Training & certifications

    • Courses and exams
    • Certifications
    • Skills assessments
    • Red Hat Academy
    • Learning subscription
    • Explore training
  • Build

    Get started

    • Red Hat build of Podman Desktop
      A downloadable, local development hub to experiment with our products and builds.
    • Developer Sandbox
      Spin up Red Hat's products and technologies without setup or configuration.

    Download products

    • Access product downloads to start building and testing right away.
    • Red Hat Enterprise Linux
    • Red Hat AI
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Featured

    • Red Hat build of OpenJDK
    • Red Hat JBoss Enterprise Application Platform
    • Red Hat OpenShift Dev Spaces
    • Red Hat Developer Toolset

    References

    • E-books
    • Documentation
    • Cheat sheets
    • Architecture center
  • Community

    Get involved

    • Events
    • Live AI events
    • Red Hat Summit
    • Red Hat Accelerators
    • Community discussions

    Follow along

    • Articles & blogs
    • Developer newsletter
    • Videos
    • Github

    Get help

    • Customer service
    • Customer support
    • Regional contacts
    • Find a partner

    Join the Red Hat Developer program

    • Download Red Hat products and project builds, access support documentation, learning content, and more.
    • Explore the benefits

Remote debugging with GDB

April 28, 2015
Gary Benson

    gnu logoThis past few weeks I've been working on making remote debugging in GDB easier to use. What's remote debugging? It's where you run GDB on one machine and the program being debugged on another. To do this you need something to allow GDB to control the program being debugged, and that something is called the remote stub. GDB ships with a remote stub called gdbserver, but other remote stubs exist. You can write them into your own program too, which is handy if you're using minimal or unusual hardware that cannot run regular applications... cellphone masts, satellites, that kind of thing.  I bet you didn't know GDB could do that!

    If you've used remote debugging in GDB you'll know it requires a certain amount of setup. You need to tell GDB how to access to your program's binaries with a set sysroot command, you need to obtain a local copy of the main executable and supply that to GDB with a file command, and you need to tell GDB to commence remote debugging with a target remote command.

    Until now.

    Now all you need is the target remote command.

    This new code is really new. It's not in any GDB release yet, let alone in RHEL or Fedora. So, with the caveat that none of these examples will work today unless you built GDB yourself from git or a snapshot, here's some things you can do with gdbserver using the new code.

    Here's an example of a traditional remote debugging session, with the things you type in bold. In one window:

    abc$ ssh xyz.example.com
    xyz$ gdbserver :9999 --attach 5312
    Attached; pid = 5312
    Listening on port 9999

    gdbserver attached to process 5312, stopped it, and is waiting for GDB to talk to it on TCP port 9999. Now, in another window:

    abc$ gdb -q
    (gdb) target remote xyz.example.com:9999
    Remote debugging using xyz.example.com:9999
    ...lots of messages you can ignore...
    (gdb) bt
    #0 0x00000035b5edf098 in *__GI___poll (fds=0x27467a0, nfds=8,
    timeout=<optimized out>) at ../sysdeps/unix/sysv/linux/poll.c:83
    #1 0x00000035b76449f9 in ?? () from target:/lib64/libglib-2.0.so.0
    #2 0x00000035b76451a5 in g_main_loop_run ()
    from target:/lib64/libglib-2.0.so.0
    #3 0x0000003dfd34dd17 in gtk_main ()
    from target:/usr/lib64/libgtk-x11-2.0.so.0
    #4 0x000000000040913d in main ()

    Now you have GDB on one machine (abc) controlling process 5312 on another machine (xyz) via gdbserver.  I did a backtrace here, but you can do pretty much anything you can with regular, non-remote GDB.

    I called that a "traditional" remote debugging session because that's how a lot of people use this, but there's a more flexible way of doing things if you're using gdbserver as your stub. GDB and gdbserver can communicate over stdio pipes, so you can chain commands, and the new code to remove all the setup you used to need makes this really nice. Lets do that first example again, with pipes this time:

    abc$ gdb -q
    (gdb) target remote | ssh -T xyz.example.com gdbserver - --attach 5312
    Remote debugging using | ssh -T xyz.example.com gdbserver - --attach 5312
    Attached; pid = 5312
    Remote debugging using stdio
    ...lots of messages...
    (gdb)

    The "-" in gdbserver's argument list replaces the ":9999" in the previous example. It tells gdbserver we're using stdio pipes rather than TCP port 9999. As well as configuring everything with single command, this has the advantage that the communication is through ssh; there's no security in GDB's remote protocol, so it's not the kind of thing you want to do over the open internet.

    What else can you do with this? Anything you can do through stdio pipes! You can enter Docker containers:

    (gdb) target remote | sudo docker exec -i e0c1afa81e1d gdbserver - --attach 58
    Remote debugging using | sudo docker exec -i e0c1afa81e1d gdbserver - --attach 58
    Attached; pid = 58
    Remote debugging using stdio
    ...

    Notice how I slipped sudo in there too. Anything you can do over stdio pipes, remember? If you're using Kubernetes you can use kubectl exec, or with OpenShift osc exec.

    gdbserver can do more than just attach, you can start programs with it too:

    (gdb) target remote | sudo docker exec -i e0c1afa81e1d gdbserver - /bin/sh
    Remote debugging using | sudo docker exec -i e0c1afa81e1d gdbserver - /bin/sh
    Process /bin/sh created; pid = 89
    stdin/stdout redirected
    Remote debugging using stdio
    ...

    Or you can start it without any specific program, and then tell it what do do from within GDB. This is by far the most flexible way to use gdbserver.  You can control more than one process, for example:

    (gdb) target extended-remote | ssh -T root@xyz.example.com gdbserver --multi -
    Remote debugging using | gdbserver --multi -
    Remote debugging using stdio
    (gdb) attach 774
    ...messages...
    (gdb) add-inferior
    Added inferior 2
    (gdb) inferior 2
    [Switching to inferior 2 [<null>] (<noexec>)]
    (gdb) attach 871
    ...messages...
    (gdb) info inferiors
    Num Description Executable
    * 2 process 871 target:/usr/sbin/httpd
      1 process 774 target:/usr/libexec/mysqld

    Ready to debug that connection issue between your webserver and database?

    Last updated: October 18, 2018

    Recent Posts

    • Every layer counts: Defense in depth for AI agents with Red Hat AI

    • Fun in the RUN instruction: Why container builds with distroless images can surprise you

    • Trusted software factory: Building trust in the agentic AI era

    • Build a zero trust AI pipeline with OpenShift and RHEL CVMs

    • Red Hat Hardened Images: Top 5 benefits for software developers

    Red Hat Developers logo LinkedIn YouTube Twitter Facebook

    Platforms

    • Red Hat AI
    • Red Hat Enterprise Linux
    • Red Hat OpenShift
    • Red Hat Ansible Automation Platform
    • See all products

    Build

    • Developer Sandbox
    • Developer tools
    • Interactive tutorials
    • API catalog

    Quicklinks

    • Learning resources
    • E-books
    • Cheat sheets
    • Blog
    • Events
    • Newsletter

    Communicate

    • About us
    • Contact sales
    • Find a partner
    • Report a website issue
    • Site status dashboard
    • Report a security problem

    RED HAT DEVELOPER

    Build here. Go anywhere.

    We serve the builders. The problem solvers who create careers with code.

    Join us if you’re a developer, software engineer, web designer, front-end designer, UX designer, computer scientist, architect, tester, product manager, project manager or team lead.

    Sign me up

    Red Hat legal and privacy links

    • About Red Hat
    • Jobs
    • Events
    • Locations
    • Contact Red Hat
    • Red Hat Blog
    • Inclusion at Red Hat
    • Cool Stuff Store
    • Red Hat Summit
    © 2026 Red Hat

    Red Hat legal and privacy links

    • Privacy statement
    • Terms of use
    • All policies and guidelines
    • Digital accessibility

    Chat Support

    Please log in with your Red Hat account to access chat support.