2004-12-02 22:56:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("docutil.php");
|
|
|
|
|
|
|
|
page_head("Debugging server components");
|
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
A grab-bag of techniques for debugging BOINC server software:
|
|
|
|
|
|
|
|
<h2>Log files</h2>
|
|
|
|
Most error conditions are reported in the log files.
|
|
|
|
Make sure you know where these are.
|
|
|
|
If you're interested in the history of a particular WU or result,
|
|
|
|
grep for WU#12345 or RESULT#12345 (12345 represents the ID)
|
|
|
|
in the log files.
|
|
|
|
The html/ops pages also provide an interface for this.
|
|
|
|
|
|
|
|
<h2>Database query tracing</h2>
|
|
|
|
If you uncomment the symbol SHOW_QUERIES in db/db_base.C,
|
|
|
|
and recompile everything,
|
|
|
|
all database queries will be written to stderr
|
|
|
|
(for daemons, this goes to log files;
|
|
|
|
for command-line apps it's written to your terminal).
|
|
|
|
This is verbose but extremely useful for tracking down
|
|
|
|
database-level problems.
|
|
|
|
|
2005-08-15 05:08:42 +00:00
|
|
|
<h2>Getting core dumps from the scheduler</h2>
|
|
|
|
<p>
|
|
|
|
In sched/main.C put:
|
|
|
|
<pre>
|
|
|
|
#define DUMP_CORE_ON_SEGV 1
|
|
|
|
</pre>
|
|
|
|
and recompile.
|
|
|
|
|
|
|
|
<h2>Running the scheduler under a debugger</h2>
|
2004-12-02 22:56:49 +00:00
|
|
|
The scheduler is a CGI program.
|
|
|
|
It reads from stdin and writes to stdout,
|
2004-12-09 00:46:07 +00:00
|
|
|
so you can also run it with a command-line debugger like gdb:
|
|
|
|
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
Copy the \"scheduler_request_X.xml\" file from a client to the
|
|
|
|
machine running the scheduler. (X = your project URL)
|
|
|
|
|
|
|
|
<li>
|
|
|
|
Run the scheduler under the debugger, giving it this file as stdin,
|
|
|
|
i.e.:
|
2005-02-11 23:34:09 +00:00
|
|
|
".html_text("
|
2004-12-09 00:46:07 +00:00
|
|
|
gdb cgi
|
|
|
|
(set a breakpoint)
|
2005-02-11 23:34:09 +00:00
|
|
|
r < scheduler_request_X.xml
|
|
|
|
")."
|
2004-12-09 00:46:07 +00:00
|
|
|
<li>
|
|
|
|
You may have to doctor the database as follows:
|
2004-12-19 20:35:37 +00:00
|
|
|
<pre>
|
2004-12-09 00:46:07 +00:00
|
|
|
update host set rpc_seqno=0, rpc_time=0 where hostid=N
|
2004-12-19 20:35:37 +00:00
|
|
|
</pre>
|
2004-12-09 00:46:07 +00:00
|
|
|
to keep the scheduler from rejecting the request.
|
|
|
|
</ul>
|
2004-12-02 22:56:49 +00:00
|
|
|
This is useful for figuring out why your project is generating
|
|
|
|
'no work available' messages.
|
|
|
|
|
2005-02-02 19:43:52 +00:00
|
|
|
As an alternative to this, edit handle_request.C, and put
|
2005-02-05 21:55:46 +00:00
|
|
|
a call to debug_sched(sreq, sreply, \"../debug_sched\") just
|
2005-02-02 19:43:52 +00:00
|
|
|
before sreply.write(fout).
|
|
|
|
Then, after recompiling, touch a file called 'debug_sched' in
|
|
|
|
the project root directory.
|
|
|
|
This will cause transcripts of all subsequent scheduler requests and
|
|
|
|
replies to be written to the cgi-bin/ directory with separate
|
|
|
|
small files for each request. The file names are sched_request_H_R
|
|
|
|
where H=hostid and R=rpc sequence number.
|
2005-02-11 23:34:09 +00:00
|
|
|
This can be turned off by deleting the 'debug_sched' file.
|
2005-02-02 19:43:52 +00:00
|
|
|
|
|
|
|
|
2004-12-02 22:56:49 +00:00
|
|
|
<h2>MySQL interfaces</h2>
|
|
|
|
You should become familiar with MySQL tools such as
|
|
|
|
<ul>
|
|
|
|
<li> mytop: like 'top' for MySQL
|
|
|
|
<li> the mysql interpreter ('mysql') and in particular
|
|
|
|
the 'show processlist;' query.
|
|
|
|
<li> MySQLadmin: general-purpose web interface to MySQL
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|