Changeset 19 for trunk/docs
- Timestamp:
- Feb 12, 2006, 10:49:56 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/FAQ.html
r1 r19 129 129 <br><center><h2>Rainer Wichmann</h2></center> 130 130 <hr> 131 <p><i>FAQ Revised: Saturday 17 September 2005 09:10:07</i></p>131 <p><i>FAQ Revised: Tuesday 31 January 2006 21:28:35</i></p> 132 132 <hr><h2>Table of Contents</h2> 133 133 <dl> … … 149 149 <li><a href="#Build and install6">2.7. --enable-xml-log has no effect</a></li> 150 150 <li><a href="#Build and install7">2.8. ./install-sh: strip: not found (Solaris)</a></li> 151 <li><a href="#Build and install8">2.9. What is sh_tiger1.s?</a></li> 151 152 </ul></dd> 152 153 <dt><b>3. File checking</b></dt> … … 208 209 <li><a href="#Database2">7.3. I don't want the client TIMESTAMP messages in the SQL database</a></li> 209 210 <li><a href="#Database3">7.4. What does the log_ref field mean ?</a></li> 211 <li><a href="#Database4">7.5. How can I check what is in the database ?</a></li> 210 212 </ul></dd> 211 213 </dl> … … 373 375 <dt><b><a name="Build and install7">2.8. ./install-sh: strip: not found (Solaris)</a></b></dt> 374 376 <dd>Install the SUNWbtool package.<br><br></dd> 377 <dt><b><a name="Build and install8">2.9. What is sh_tiger1.s?</a></b></dt> 378 <dd>This is a precompiled assembly file for the i386 architecture 379 generated from sh_tiger1.c using gcc 3.4.0 with the following options, 380 that were found to generate the fastest code: 381 <pre> 382 -O1 -fno-delayed-branch -fexpensive-optimizations -fstrength-reduce 383 -fpeephole2 -fschedule-insns2 -fregmove -frename-registers -fweb 384 -momit-leaf-frame-pointer -funroll-loops 385 </pre> 386 These options were determined using 387 <a href="http://www.coyotegulch.com/products/acovea/">acovea</a> 5.1.1 388 by Scott Robert Ladd. The file is provided as precompiled assembly 389 because different versions of gcc can have very different performance, 390 require different options to compile optimal code, and 391 it would be impossible to maintain a library of optimal compile options 392 for every version of gcc.<br><br></dd> 375 393 </dl> 376 394 <hr><h2>3. File checking</h2> … … 743 761 744 762 2.) In your client or server configuration file, you are using 745 the option for a cust um message header, but without paying attention763 the option for a custom message header, but without paying attention 746 764 to preserving the XML format. 747 765 </pre></div><br><br></dd> … … 793 811 number of the corresponding client message). Zero indicates a message 794 812 by the server itself (e.g. the server's start message).<br><br></dd> 813 <dt><b><a name="Database4">7.5. How can I check what is in the database ?</a></b></dt> 814 <dd>Use a command line client to login to the database and query it: 815 <div class="block"><pre> 816 sh$ mysql -u <user_name> -p <database_name> 817 Enter password: **** 818 mysql> SELECT log_index,log_ref,log_host,log_sev,log_msg,path FROM <table_name> WHERE entry_status = 'NEW' ORDER BY log_index; 819 .... 820 mysql> \q 821 </pre></div><br><br></dd> 795 822 </dl> 796 823 <hr>
Note:
See TracChangeset
for help on using the changeset viewer.