Changes between Version 3 and Version 4 of ServerDebug
- Timestamp:
- Jul 6, 2007, 10:39:51 AM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ServerDebug
v3 v4 3 3 A grab-bag of techniques for debugging BOINC server software: 4 4 5 6 5 == Log files == 7 6 8 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 pagesalso provide an interface for this.7 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` (where 12345 represents the ID) in the log files. The [HtmlOps html/ops pages] also provide an interface for this. 9 8 10 9 == Debugging the scheduler == … … 12 11 The scheduler is a CGI program; 13 12 it reads a request from stdin and writes a reply to stdout. 14 You can run it with a command-line debugger like gdb:13 You can run it with a command-line debugger like `gdb`: 15 14 * Copy the "scheduler_request_X.xml" file from a client to the machine running the scheduler. (X = your project URL) 16 * Run the scheduler under the debugger, giving it this file as stdin, 15 * Run the scheduler under the debugger, giving it this file as stdin, i.e.: 17 16 {{{ 18 17 gdb cgi … … 20 19 r < scheduler_request_X.xml 21 20 }}} 22 * You may have to doctor the database as follows :21 * You may have to doctor the database as follows to keep the scheduler from rejecting the request: 23 22 {{{ 24 23 update host set rpc_seqno=0, rpc_time=0 where hostid=N 25 24 }}} 26 to keep the scheduler from rejecting the request.27 25 28 This is useful for figuring out why your project is generating 'no work available' messages. As an alternative to this, edit handle_request.C, and put a call to debug_sched(sreq, sreply, "../debug_sched") just 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_Rwhere H=hostid and R=rpc sequence number. This can be turned off by deleting the 'debug_sched' file.26 This is useful for figuring out why your project is generating 'no work available' messages. As an alternative to this, edit `handle_request.C`, and put a call to `debug_sched(sreq, sreply, "../debug_sched")` just 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. This can be turned off by deleting the 'debug_sched' file. 29 27 30 To get core files for scheduler crashes, put 28 To get core files for scheduler crashes, put the following line in sched/main.C, and recompile: 31 29 {{{ 32 30 #define DUMP_CORE_ON_SEGV 1 33 31 }}} 34 in sched/main.C, and recompile.35 32 36 33 == MySQL interfaces == 37 34 38 35 You should become familiar with MySQL tools such as 39 * mytop: like 'top' for MySQL40 * the mysql interpreter ('mysql') and in particular the 'show processlist;' query.41 * MySQLadmin: general-purpose web interface to MySQL36 * The [http://dev.mysql.com/doc/refman/5.0/en/mysql.html mysql interpreter] and in particular the '[http://dev.mysql.com/doc/refman/5.0/en/show-processlist.html show processlist;]' query. 37 * [http://jeremy.zawodny.com/mysql/mytop/ mytop]: like 'top' for MySQL 38 * [http://www.phpmyadmin.net/ phpMyAdmin]: general-purpose web interface to MySQL 42 39 43 40 == Database query tracing == 44 41 45 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. 46 42 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.