Fixed some ugly things in manual.texi.

parent 0792ac16
...@@ -7132,17 +7132,17 @@ If you want to use the @code{MySQL-Max} RPM, you must first ...@@ -7132,17 +7132,17 @@ If you want to use the @code{MySQL-Max} RPM, you must first
install the standard @code{MySQL} RPM. install the standard @code{MySQL} RPM.
@item @item
If you want to configure @code{mysqld} with some extra feature that are NOT in If you want to configure @code{mysqld} with some extra features that are
the standard binary distributions. Here is a list of the most common NOT in the standard binary distributions. Here is a list of the most
extra options that you may want to use: common extra options that you may want to use:
@itemize @bullet @itemize
@item --with-berkeley-db @item @code{--with-berkeley-db}
@item --with-innodb @item @code{--with-innodb}
@item --with-raid @item @code{--with-raid}
@item --with-libwrap @item @code{--with-libwrap}
@item --with-named-z-lib (This is done for some of the binaries) @item @code{--with-named-z-lib (This is done for some of the binaries)}
@item --with-debug[=full] @item @code{--with-debug[=full]}
@end itemize @end itemize
@item @item
...@@ -21722,27 +21722,64 @@ by executing @code{mysqladmin --help}. ...@@ -21722,27 +21722,64 @@ by executing @code{mysqladmin --help}.
The current @code{mysqladmin} supports the following commands: The current @code{mysqladmin} supports the following commands:
@multitable @columnfractions .3 .7 @table @code
@item create databasename @tab Create a new database. @item create databasename
@item drop databasename @tab Delete a database and all its tables. Create a new database.
@item extended-status @tab Gives an extended status message from the server.
@item flush-hosts @tab Flush all cached hosts. @item drop databasename
@item flush-logs @tab Flush all logs. Delete a database and all its tables.
@item flush-tables @tab Flush all tables.
@item flush-privileges @tab Reload grant tables (same as reload). @item extended-status
@item kill id,id,... @tab Kill mysql threads. Gives an extended status message from the server.
@item password @tab New-password. Change old password to new-password.
@item ping @tab Check if @code{mysqld} is alive. @item flush-hosts
@item processlist @tab Show list of active threads in server. Flush all cached hosts.
@item reload @tab Reload grant tables.
@item refresh @tab Flush all tables and close and open logfiles. @item flush-logs
@item shutdown @tab Take server down. Flush all logs.
@item slave-start @tab Start slave replication thread.
@item slave-stop @tab Stop slave replication thread. @item flush-tables
@item status @tab Gives a short status message from the server. Flush all tables.
@item variables @tab Prints variables available.
@item version @tab Get version info from server. @item flush-privileges
@end multitable Reload grant tables (same as reload).
@item kill id,id,...
Kill mysql threads.
@item password
Set a new password. Change old password to new-password.
@item ping
Check if mysqld is alive.
@item processlist
Show list of active threads in server.
@item reload
Reload grant tables.
@item refresh
Flush all tables and close and open logfiles.
@item shutdown
Take server down.
@item slave-start
Start slave replication thread.
@item slave-stop
Stop slave replication thread.
@item status
Gives a short status message from the server.
@item variables
Prints variables available.
@item version
Get version info from server.
@end table
All commands can be shortened to their unique prefix. For example: All commands can be shortened to their unique prefix. For example:
...@@ -23126,7 +23163,7 @@ Updates to a database with a different name than the original (Example: ...@@ -23126,7 +23163,7 @@ Updates to a database with a different name than the original (Example:
Tells the slave server not to start the slave on the startup. The user Tells the slave server not to start the slave on the startup. The user
can start it later with @code{SLAVE START}. can start it later with @code{SLAVE START}.
@item @code{slave_read_timeout=#} @item @code{slave_read_timeout=#} @tab
Number of seconds to wait for more data from the master before aborting Number of seconds to wait for more data from the master before aborting
the read. the read.
@end multitable @end multitable
...@@ -23527,7 +23564,7 @@ it is a bug, read below on how to report it. ...@@ -23527,7 +23564,7 @@ it is a bug, read below on how to report it.
If a query on that succeeded on the master refuses to run on the slave, and If a query on that succeeded on the master refuses to run on the slave, and
a full database resync ( the proper thing to do ) does not seem feasible, a full database resync ( the proper thing to do ) does not seem feasible,
try the following: try the following:
@itemize bullet @itemize @minus
@item @item
First see if there is some stray record in the way. Understand how it got First see if there is some stray record in the way. Understand how it got
there, then delete it and run @code{SLAVE START} there, then delete it and run @code{SLAVE START}
...@@ -23592,7 +23629,7 @@ a log of all updates on the slave. ...@@ -23592,7 +23629,7 @@ a log of all updates on the slave.
Save all evidence before resetting the replication. If we have no or only Save all evidence before resetting the replication. If we have no or only
sketchy information, it would take us a while to track down the problem. The sketchy information, it would take us a while to track down the problem. The
evidence you should collect is: evidence you should collect is:
@itemize @bullet @itemize @minus
@item @item
All binary logs on the master All binary logs on the master
@item @item
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment