Commit 68edfdd6 authored by unknown's avatar unknown

Several minor fixes to manual per Tom.


Docs/manual.texi:
  Several minor fixes per Tom.
BitKeeper/etc/logging_ok:
  Logging to logging@openlogging.org accepted
parent a9d2e5dd
...@@ -7,3 +7,4 @@ sasha@mysql.sashanet.com ...@@ -7,3 +7,4 @@ sasha@mysql.sashanet.com
serg@serg.mysql.com serg@serg.mysql.com
paul@central.snake.net paul@central.snake.net
jcole@main.burghcom.com jcole@main.burghcom.com
jcole@tetra.spaceapes.com
...@@ -11965,10 +11965,11 @@ communication. ...@@ -11965,10 +11965,11 @@ communication.
All other information is transferred as text that can be read by anyone All other information is transferred as text that can be read by anyone
who is able to watch the connection. If you are concerned about this, who is able to watch the connection. If you are concerned about this,
you can use the compressed protocol (in @strong{MySQL} Version 3.22 and above) you can use the compressed protocol (in @strong{MySQL} Version 3.22 and above)
to make things much harder. To make things even more secure you should to make things much harder. To make things even more secure you should use
use @code{ssh} (see @uref{http://www.cs.hut.fi/ssh}). With this, you @code{ssh}. You can find an open source ssh client at
can get an encrypted TCP/IP connection between a @strong{MySQL} server @uref{http://www.openssh.org}, and a commercial ssh client at
and a @strong{MySQL} client. @uref{http://www.ssh.com}. With this, you can get an encrypted TCP/IP
connection between a @strong{MySQL} server and a @strong{MySQL} client.
To make a @strong{MySQL} system secure, you should strongly consider the To make a @strong{MySQL} system secure, you should strongly consider the
following suggestions: following suggestions:
...@@ -24050,52 +24051,52 @@ SUM_OVER_ALL_KEYS(max_length_of_key + sizeof(char*) * 2) ...@@ -24050,52 +24051,52 @@ SUM_OVER_ALL_KEYS(max_length_of_key + sizeof(char*) * 2)
@end menu @end menu
@node BDB overview, BDB install, BDB, BDB @node BDB overview, BDB install, BDB, BDB
@subsection Overview over BDB tables @subsection Overview of BDB Tables
BDB tables are included in the @strong{MySQL} source distribution Support for BDB tables is included in the @strong{MySQL} source distribution
starting from 3.23.34 and will be activated in the @strong{MySQL}-max starting from Version 3.23.34 and will be activated in the @strong{MySQL}-Max
binary. binary.
Berkeley DB (@uref{http://www.sleepycat.com}) has provided BerkeleyDB, available at @uref{http://www.sleepycat.com/} has provided
@strong{MySQL} with a transaction-safe table handler. This will survive @strong{MySQL} with a transactional table handler. By using BerkeleyDB
crashes and also provides @code{COMMIT} and @code{ROLLBACK} on tables, your tables may have a greater chance of surviving crashes, and also
transactions. The @strong{MySQL} source distribution comes with a BDB provides @code{COMMIT} and @code{ROLLBACK} on transactions. The
distribution that has a couple of small patches to make it work more @strong{MySQL} source distribution comes with a BDB distribution that has a
smoothly with @strong{MySQL}. You can't use a not-patched @code{BDB} couple of small patches to make it work more smoothly with @strong{MySQL}.
version with @strong{MySQL}. You can't use a non-patched @code{BDB} version with @strong{MySQL}.
We at MySQL AB are working in close cooperating with Sleepycat to We at @strong{MySQL AB} are working in close cooperation with Sleepycat to
keep the quality of the @strong{MySQL} - BDB interface high. keep the quality of the @strong{MySQL}/BDB interface high.
When it comes to supporting BDB tables, we are committed to help our When it comes to supporting BDB tables, we are committed to help our
users to locate the problem and help creating a reproducable test case users to locate the problem and help creating a reproducable test case
for any problems involving BDB tables. Any such test case will be for any problems involving BDB tables. Any such test case will be
forwarded to Sleepycat who in turn will help us find and fix the forwarded to Sleepycat who in turn will help us find and fix the
problem. As this is a two stage operating, any problems with BDB tables problem. As this is a two stage operation, any problems with BDB tables
may take a little longer for us to fix than for other table handlers, may take a little longer for us to fix than for other table handlers.
but as the Berkeley code itself has been used by many other applications However, as the BerkeleyDB code itself has been used by many other
than @strong{MySQL} we don't envision any big problems with this. applications than @strong{MySQL}, we don't envision any big problems with
@xref{Table handler support}. this. @xref{Table handler support}.
@node BDB install, BDB start, BDB overview, BDB @node BDB install, BDB start, BDB overview, BDB
@subsection Installing BDB @subsection Installing BDB
If you have downloaded a binary version of @strong{MySQL} that includes If you have downloaded a binary version of @strong{MySQL} that includes
support for Berkeley DB, simply follow the instructions for support for BerkeleyDB, simply follow the instructions for installing a
installing a binary version of @strong{MySQL}. @xref{Installing binary}. binary version of @strong{MySQL}.
@xref{mysqld-max}. @xref{Installing binary}. @xref{mysqld-max}.
To compile @strong{MySQL} with Berkeley DB support, download @strong{MySQL} To compile @strong{MySQL} with Berkeley DB support, download @strong{MySQL}
3.23.34 or newer and configure @code{MySQL} with the Version 3.23.34 or newer and configure @code{MySQL} with the
@code{--with-berkeley-db} option. @xref{Installing source}. @code{--with-berkeley-db} option. @xref{Installing source}.
@example @example
cd /path/to/source/of/mysql-3.23.34 cd /path/to/source/of/mysql-3.23.34
./configure --with-berkeley-db ./configure --with-berkeley-db
@end example @end example
Please refer to the manual provided by @code{BDB} distribution for Please refer to the manual provided with the @code{BDB} distribution for
more/updated information. more updated information.
Even though Berkeley DB is in itself very tested and reliable, Even though Berkeley DB is in itself very tested and reliable,
the @strong{MySQL} interface is still considered beta quality. the @strong{MySQL} interface is still considered beta quality.
...@@ -36209,6 +36210,10 @@ server closes the connection after 8 hours if nothing has happened. You ...@@ -36209,6 +36210,10 @@ server closes the connection after 8 hours if nothing has happened. You
can change the time limit by setting the @code{wait_timeout} variable when can change the time limit by setting the @code{wait_timeout} variable when
you start mysqld. you start mysqld.
Another common reason to receive the @code{MySQL server has gone away} error
is because you have issued a ``close'' on your @strong{MySQL} connection
and then tried to run a query on the closed connection.
You can check that the @strong{MySQL} hasn't died by executing You can check that the @strong{MySQL} hasn't died by executing
@code{mysqladmin version} and examining the uptime. @code{mysqladmin version} and examining the uptime.
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