Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I put a daemon in debug method on console/screen 1

Status
Not open for further replies.

djaj2011

Technical User
Sep 12, 2011
7
0
0
i recollect using ./<daemon> --console-log

Does this work for all daemons

Thnx
 
No, the program that you are starting as a daemon work need to be written to understand that switch. Look at the documentation for the daemon you are trying to start.

Sometimes this will get it...
Code:
./<daemon> --help
# or
./<daemon> -h
# or
./<daemon> -?
...or something else along those lines.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top