Using strace against daemons

The strace application not only makes sense for command-line applications but also for daemons. A popular approach to debugging daemons is to start them from the command line, possibly with a specific debug flag, so that the daemon doesn't detach and run in the background. However, this is often not possible on SELinux: the policy will not allow the daemon to run as a command-line foreground process.

How to do it…

The approach to use strace against daemons is similar as with command lines, focusing on the process ID rather than the command:

  1. Find out what the process ID of the daemon is:
    ~$ pidof postgres
    2557
    
  2. Use strace to attach to the running process:
    ~$ strace -o strace.log -f -s 256 -p 2557
    
  3. Specify which system calls ...

Get SELinux Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.