Below is the list of changes that have just been committed into a local
mysqldoc repository of jon. When jon does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html
ChangeSet
1.2922 05/07/01 21:47:51 jon@stripped +3 -0
Added links to mysql-datavase-administration.xml:
server-side-overview section.
Sync refman-4.1 and refman-5.0 to refman.
refman/mysql-database-administration.xml
1.8 05/07/01 21:47:49 jon@stripped +199 -199
Added links to server-side-overview.
refman-5.0/mysql-database-administration.xml
1.8 05/07/01 21:47:49 jon@stripped +3 -3
Added links to server-side-overview.
Sync to refman.
refman-4.1/mysql-database-administration.xml
1.7 05/07/01 21:47:49 jon@stripped +198 -198
Added links to server-side-overview.
Sync to refman.
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: jon
# Host: gigan.site
# Root: /home/jon/bk/mysqldoc
--- 1.6/refman-4.1/mysql-database-administration.xml 2005-06-29 20:05:29 +10:00
+++ 1.7/refman-4.1/mysql-database-administration.xml 2005-07-01 21:47:49 +10:00
@@ -39,208 +39,208 @@
</para>
<section id="server-side-overview">
-
- <title
id='title-server-side-overview'>&title-server-side-overview;</title>
-
- <indexterm type="concept">
- <primary>programs</primary>
- <secondary>list of</secondary>
- </indexterm>
-
- <para>
- All MySQL programs take many different options. However, every MySQL
- program provides a <literal>--help</literal> option that you can use
- to get a description of the program's options. For example, try
- <command>mysqld --help</command>.
- </para>
-
- <para>
- You can override default options for all standard programs by
- specifying options on the command line or in an option file.
- <xref linkend="program-options"/>.
- </para>
-
- <para>
- The following list briefly describes the MySQL server and
- server-related programs:
- </para>
-
- <itemizedlist>
-
+
+ <title
id='title-server-side-overview'>&title-server-side-overview;</title>
+
<indexterm type="concept">
- <primary><command>mysqld</command></primary>
+ <primary>programs</primary>
+ <secondary>list of</secondary>
</indexterm>
-
- <listitem><para>
- <literal>mysqld</literal>
- </para>
-
- <para>
- The SQL daemon (that is, the MySQL server). To use client programs,
- this program must be running, because clients gain access to
- databases by connecting to the server. See
- <xref linkend="configuring-mysql"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqld-max</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqld-max</literal>
- </para>
-
- <para>
- A version of the server that includes additional features. See
- <xref linkend="mysqld-max"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqld_safe</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqld_safe</literal>
- </para>
-
- <para>
- A server startup script. <command>mysqld_safe</command> attempts to
- start <command>mysqld-max</command> if it exists, and
- <command>mysqld</command> otherwise. See
- <xref linkend="mysqld-safe"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysql.server</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysql.server</literal>
- </para>
-
- <para>
- A server startup script. This script is used on systems that use
- run directories containing scripts that start system services for
- particular run levels. It invokes <command>mysqld_safe</command> to
- start the MySQL server. See <xref linkend="mysql-server"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqld_multi</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqld_multi</literal>
- </para>
-
- <para>
- A server startup script that can start or stop multiple servers
- installed on the system. See <xref linkend="mysqld-multi"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysql_install_db</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysql_install_db</literal>
- </para>
-
- <para>
- This script creates the MySQL grant tables with default privileges.
- It is usually executed only once, when first installing MySQL on a
- system.
- </para>
-
- <para>
- <indexterm type="concept">
-
<primary><command>mysql_fix_privilege_tables</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysql_fix_privilege_tables</literal>
- </para>
-
- <para>
- This script is used after an upgrade install operation, to update
- the grant tables with any changes that have been made in newer
- versions of MySQL.
- </para></listitem>
-
- </itemizedlist>
-
- <para>
- There are several other programs that also are run on the server
- host:
- </para>
-
-<!-- TODO: indicate where these are discussed -->
-
- <itemizedlist>
-
- <indexterm type="concept">
- <primary><command>myisamchk</command></primary>
- </indexterm>
-
- <listitem><para>
- <literal>myisamchk</literal>
- </para>
-
- <para>
- A utility to describe, check, optimize, and repair
- <literal>MyISAM</literal> tables.
<command>myisamchk</command> is
- described in <xref linkend="table-maintenance"/>.
- </para>
-
- <para>
- <indexterm type="concept">
-
<primary><command>make_binary_distribution</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>make_binary_distribution</literal>
- </para>
-
- <para>
- This program makes a binary release of a compiled MySQL. This could
- be sent by FTP to <filename>/pub/mysql/upload/</filename> on
- <literal>ftp.mysql.com</literal> for the convenience of other MySQL
- users.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqlbug</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqlbug</literal>
- </para>
-
+
<para>
- The MySQL bug reporting script. It can be used to send a bug report
- to the MySQL mailing list. (You can also visit
- <ulink url="http://bugs.mysql.com/">http://bugs.mysql.com/</ulink>
- to file a bug report online.)
- </para></listitem>
-
- </itemizedlist>
-
+ All MySQL programs take many different options. However, every MySQL
+ program provides a <literal>--help</literal> option that you can use
+ to get a description of the program's options. For example, try
+ <command>mysqld --help</command>.
+ </para>
+
+ <para>
+ You can override default options for all standard programs by
+ specifying options on the command line or in an option file.
+ <xref linkend="program-options"/>.
+ </para>
+
+ <para>
+ The following list briefly describes the MySQL server and
+ server-related programs:
+ </para>
+
+ <itemizedlist>
+
+ <indexterm type="concept">
+ <primary><command>mysqld</command></primary>
+ </indexterm>
+
+ <listitem><para>
+ <literal>mysqld</literal>
+ </para>
+
+ <para>
+ The SQL daemon (that is, the MySQL server). To use client programs,
+ this program must be running, because clients gain access to
+ databases by connecting to the server. See
+ <xref linkend="configuring-mysql"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqld-max</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqld-max</literal>
+ </para>
+
+ <para>
+ A version of the server that includes additional features. See
+ <xref linkend="mysqld-max"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqld_safe</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqld_safe</literal>
+ </para>
+
+ <para>
+ A server startup script. <command>mysqld_safe</command> attempts to
+ start <command>mysqld-max</command> if it exists, and
+ <command>mysqld</command> otherwise. See
+ <xref linkend="mysqld-safe"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysql.server</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysql.server</literal>
+ </para>
+
+ <para>
+ A server startup script. This script is used on systems that use
+ run directories containing scripts that start system services for
+ particular run levels. It invokes <command>mysqld_safe</command> to
+ start the MySQL server. See <xref linkend="mysql-server"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqld_multi</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqld_multi</literal>
+ </para>
+
+ <para>
+ A server startup script that can start or stop multiple servers
+ installed on the system. See <xref linkend="mysqld-multi"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+
<primary><command>mysql_install_db</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysql_install_db</literal>
+ </para>
+
+ <para>
+ This script creates the MySQL grant tables with default privileges.
+ It is usually executed only once, when first installing MySQL on a
+ system. See <xref linkend="unix-post-installation"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+
<primary><command>mysql_fix_privilege_tables</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysql_fix_privilege_tables</literal>
+ </para>
+
+ <para>
+ This script is used after an upgrade install operation, to update
+ the grant tables with any changes that have been made in newer
+ versions of MySQL. See <xref linkend="upgrading-grant-tables"/>.
+ </para></listitem>
+
+ </itemizedlist>
+
+ <para>
+ There are several other programs that also are run on the server
+ host:
+ </para>
+
+ <!-- TODO: indicate where these are discussed -->
+
+ <itemizedlist>
+
+ <indexterm type="concept">
+ <primary><command>myisamchk</command></primary>
+ </indexterm>
+
+ <listitem><para>
+ <literal>myisamchk</literal>
+ </para>
+
+ <para>
+ A utility to describe, check, optimize, and repair
+ <literal>MyISAM</literal> tables.
<command>myisamchk</command> is
+ described in <xref linkend="table-maintenance"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+
<primary><command>make_binary_distribution</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>make_binary_distribution</literal>
+ </para>
+
+ <para>
+ This program makes a binary release of a compiled MySQL. This could
+ be sent by FTP to <filename>/pub/mysql/upload/</filename> on
+ <literal>ftp.mysql.com</literal> for the convenience of other MySQL
+ users.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqlbug</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqlbug</literal>
+ </para>
+
+ <para>
+ The MySQL bug reporting script. It can be used to send a bug report
+ to the MySQL mailing list. (You can also visit
+ <ulink url="http://bugs.mysql.com/">http://bugs.mysql.com/</ulink>
+ to file a bug report online. See <xref linkend="bug-reports"/>.)
+ </para></listitem>
+
+ </itemizedlist>
+
</section>
-
+
<section id="mysqld-max">
<title id='title-mysqld-max'>&title-mysqld-max;</title>
--- 1.7/refman-5.0/mysql-database-administration.xml 2005-06-30 16:43:34 +10:00
+++ 1.8/refman-5.0/mysql-database-administration.xml 2005-07-01 21:47:49 +10:00
@@ -159,7 +159,7 @@
<para>
This script creates the MySQL grant tables with default privileges.
It is usually executed only once, when first installing MySQL on a
- system.
+ system. See <xref linkend="unix-post-installation"/>.
</para>
<para>
@@ -175,7 +175,7 @@
<para>
This script is used after an upgrade install operation, to update
the grant tables with any changes that have been made in newer
- versions of MySQL.
+ versions of MySQL. See <xref linkend="upgrading-grant-tables"/>.
</para></listitem>
</itemizedlist>
@@ -234,7 +234,7 @@
The MySQL bug reporting script. It can be used to send a bug report
to the MySQL mailing list. (You can also visit
<ulink url="http://bugs.mysql.com/">http://bugs.mysql.com/</ulink>
- to file a bug report online.)
+ to file a bug report online. See <xref linkend="bug-reports"/>.)
</para></listitem>
</itemizedlist>
--- 1.7/refman/mysql-database-administration.xml 2005-06-24 17:37:54 +10:00
+++ 1.8/refman/mysql-database-administration.xml 2005-07-01 21:47:49 +10:00
@@ -37,210 +37,210 @@
configuring the server itself is given in
<xref linkend="configuring-mysql"/>.
</para>
-
+
<section id="server-side-overview">
-
- <title
id='title-server-side-overview'>&title-server-side-overview;</title>
-
- <indexterm type="concept">
- <primary>programs</primary>
- <secondary>list of</secondary>
- </indexterm>
-
- <para>
- All MySQL programs take many different options. However, every MySQL
- program provides a <literal>--help</literal> option that you can use
- to get a description of the program's options. For example, try
- <command>mysqld --help</command>.
- </para>
-
- <para>
- You can override default options for all standard programs by
- specifying options on the command line or in an option file.
- <xref linkend="program-options"/>.
- </para>
-
- <para>
- The following list briefly describes the MySQL server and
- server-related programs:
- </para>
-
- <itemizedlist>
-
+
+ <title
id='title-server-side-overview'>&title-server-side-overview;</title>
+
<indexterm type="concept">
- <primary><command>mysqld</command></primary>
+ <primary>programs</primary>
+ <secondary>list of</secondary>
</indexterm>
-
- <listitem><para>
- <literal>mysqld</literal>
- </para>
-
- <para>
- The SQL daemon (that is, the MySQL server). To use client programs,
- this program must be running, because clients gain access to
- databases by connecting to the server. See
- <xref linkend="configuring-mysql"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqld-max</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqld-max</literal>
- </para>
-
- <para>
- A version of the server that includes additional features. See
- <xref linkend="mysqld-max"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqld_safe</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqld_safe</literal>
- </para>
-
- <para>
- A server startup script. <command>mysqld_safe</command> attempts to
- start <command>mysqld-max</command> if it exists, and
- <command>mysqld</command> otherwise. See
- <xref linkend="mysqld-safe"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysql.server</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysql.server</literal>
- </para>
-
- <para>
- A server startup script. This script is used on systems that use
- run directories containing scripts that start system services for
- particular run levels. It invokes <command>mysqld_safe</command> to
- start the MySQL server. See <xref linkend="mysql-server"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqld_multi</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqld_multi</literal>
- </para>
-
- <para>
- A server startup script that can start or stop multiple servers
- installed on the system. See <xref linkend="mysqld-multi"/>.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysql_install_db</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysql_install_db</literal>
- </para>
-
- <para>
- This script creates the MySQL grant tables with default privileges.
- It is usually executed only once, when first installing MySQL on a
- system.
- </para>
-
- <para>
- <indexterm type="concept">
-
<primary><command>mysql_fix_privilege_tables</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysql_fix_privilege_tables</literal>
- </para>
-
- <para>
- This script is used after an upgrade install operation, to update
- the grant tables with any changes that have been made in newer
- versions of MySQL.
- </para></listitem>
-
- </itemizedlist>
-
- <para>
- There are several other programs that also are run on the server
- host:
- </para>
-
-<!-- TODO: indicate where these are discussed -->
-
- <itemizedlist>
-
- <indexterm type="concept">
- <primary><command>myisamchk</command></primary>
- </indexterm>
-
- <listitem><para>
- <literal>myisamchk</literal>
- </para>
-
- <para>
- A utility to describe, check, optimize, and repair
- <literal>MyISAM</literal> tables.
<command>myisamchk</command> is
- described in <xref linkend="table-maintenance"/>.
- </para>
-
- <para>
- <indexterm type="concept">
-
<primary><command>make_binary_distribution</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>make_binary_distribution</literal>
- </para>
-
- <para>
- This program makes a binary release of a compiled MySQL. This could
- be sent by FTP to <filename>/pub/mysql/upload/</filename> on
- <literal>ftp.mysql.com</literal> for the convenience of other MySQL
- users.
- </para>
-
- <para>
- <indexterm type="concept">
- <primary><command>mysqlbug</command></primary>
- </indexterm>
- </para></listitem>
-
- <listitem><para>
- <literal>mysqlbug</literal>
- </para>
-
+
<para>
- The MySQL bug reporting script. It can be used to send a bug report
- to the MySQL mailing list. (You can also visit
- <ulink url="http://bugs.mysql.com/">http://bugs.mysql.com/</ulink>
- to file a bug report online.)
- </para></listitem>
-
- </itemizedlist>
-
+ All MySQL programs take many different options. However, every MySQL
+ program provides a <literal>--help</literal> option that you can use
+ to get a description of the program's options. For example, try
+ <command>mysqld --help</command>.
+ </para>
+
+ <para>
+ You can override default options for all standard programs by
+ specifying options on the command line or in an option file.
+ <xref linkend="program-options"/>.
+ </para>
+
+ <para>
+ The following list briefly describes the MySQL server and
+ server-related programs:
+ </para>
+
+ <itemizedlist>
+
+ <indexterm type="concept">
+ <primary><command>mysqld</command></primary>
+ </indexterm>
+
+ <listitem><para>
+ <literal>mysqld</literal>
+ </para>
+
+ <para>
+ The SQL daemon (that is, the MySQL server). To use client programs,
+ this program must be running, because clients gain access to
+ databases by connecting to the server. See
+ <xref linkend="configuring-mysql"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqld-max</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqld-max</literal>
+ </para>
+
+ <para>
+ A version of the server that includes additional features. See
+ <xref linkend="mysqld-max"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqld_safe</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqld_safe</literal>
+ </para>
+
+ <para>
+ A server startup script. <command>mysqld_safe</command> attempts to
+ start <command>mysqld-max</command> if it exists, and
+ <command>mysqld</command> otherwise. See
+ <xref linkend="mysqld-safe"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysql.server</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysql.server</literal>
+ </para>
+
+ <para>
+ A server startup script. This script is used on systems that use
+ run directories containing scripts that start system services for
+ particular run levels. It invokes <command>mysqld_safe</command> to
+ start the MySQL server. See <xref linkend="mysql-server"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqld_multi</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqld_multi</literal>
+ </para>
+
+ <para>
+ A server startup script that can start or stop multiple servers
+ installed on the system. See <xref linkend="mysqld-multi"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+
<primary><command>mysql_install_db</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysql_install_db</literal>
+ </para>
+
+ <para>
+ This script creates the MySQL grant tables with default privileges.
+ It is usually executed only once, when first installing MySQL on a
+ system. See <xref linkend="unix-post-installation"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+
<primary><command>mysql_fix_privilege_tables</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysql_fix_privilege_tables</literal>
+ </para>
+
+ <para>
+ This script is used after an upgrade install operation, to update
+ the grant tables with any changes that have been made in newer
+ versions of MySQL. See <xref linkend="upgrading-grant-tables"/>.
+ </para></listitem>
+
+ </itemizedlist>
+
+ <para>
+ There are several other programs that also are run on the server
+ host:
+ </para>
+
+ <!-- TODO: indicate where these are discussed -->
+
+ <itemizedlist>
+
+ <indexterm type="concept">
+ <primary><command>myisamchk</command></primary>
+ </indexterm>
+
+ <listitem><para>
+ <literal>myisamchk</literal>
+ </para>
+
+ <para>
+ A utility to describe, check, optimize, and repair
+ <literal>MyISAM</literal> tables.
<command>myisamchk</command> is
+ described in <xref linkend="table-maintenance"/>.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+
<primary><command>make_binary_distribution</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>make_binary_distribution</literal>
+ </para>
+
+ <para>
+ This program makes a binary release of a compiled MySQL. This could
+ be sent by FTP to <filename>/pub/mysql/upload/</filename> on
+ <literal>ftp.mysql.com</literal> for the convenience of other MySQL
+ users.
+ </para>
+
+ <para>
+ <indexterm type="concept">
+ <primary><command>mysqlbug</command></primary>
+ </indexterm>
+ </para></listitem>
+
+ <listitem><para>
+ <literal>mysqlbug</literal>
+ </para>
+
+ <para>
+ The MySQL bug reporting script. It can be used to send a bug report
+ to the MySQL mailing list. (You can also visit
+ <ulink url="http://bugs.mysql.com/">http://bugs.mysql.com/</ulink>
+ to file a bug report online. See <xref linkend="bug-reports"/>.)
+ </para></listitem>
+
+ </itemizedlist>
+
</section>
-
+
<section id="mysqld-max">
<title id='title-mysqld-max'>&title-mysqld-max;</title>
| Thread |
|---|
| • bk commit - mysqldoc@docsrva tree (jon:1.2922) | jon | 1 Jul |