Forrest logo
back to the supervisorctl tool

supervisorctl:tldr:0985c

supervisorctl: Show last 100 **bytes** of process `stderr`.
$ supervisorctl tail -100 ${process_name} stderr
try on your machine

This command is used to tail (display the last lines) of the standard error (stderr) output of a specific process managed by Supervisor. Here's what the different parts of the command do:

  • supervisorctl: This is the Supervisor command-line utility used for managing Supervisor processes.
  • tail: This is a command used to display the last lines of a file.
  • -100: This flag is used to specify the number of lines to be displayed. In this case, it displays the last 100 lines of the stderr output.
  • ${process_name}: This is a placeholder that should be replaced with the actual name of the process you want to display the stderr output for. This is typically the program or service that is being managed by Supervisor.

So, when you run this command with the appropriate process name, it will show you the last 100 lines of the stderr output for that process.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the supervisorctl tool