What started as an attempt to fix BUG#2270 (Substitute paths in mysql
manpage) turned out as a major overhaul of all man pages: - renamed all *.1 files to *.1.in to act as templates which are being processed at build time - replaced some hard-coded values with place holder that are being replaced with the proper values at build time - Updated list of available man pages in the SEE ALSO section and added a hint to the manual for more details - Added a BUGS section to all pages, referring to the bugs DB - Updated some obsolete URLs and mail addresses The actual content of these man pages should probably be cross-checked for correctness, though... man/Makefile.am: - Replace some hard-coded values in the man pages with the proper values at build time instead. Instead of the *.1 files, we now add the *.1.in files (the templates) to the source distribution and generate the *.1 files during make. man/isamchk.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/isamlog.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysql_fix_privilege_tables.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysql_zap.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysqlaccess.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysqladmin.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysqld.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysqld_multi.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysqld_safe.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysqldump.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysqlshow.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/perror.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/replace.1.in: - replaced some hard-coded values (e.g. Version numbers) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address man/mysql.1.in: - replaced some hard-coded values (e.g. Version numbers, path names) with variables which are replaced with the proper values at build time - Updated list of other man pages listed in SEE ALSO - Added BUGS section, referring to the bugs database - Updated URL and Mail address
This commit is contained in:
parent
36d82d189a
commit
efa80e01a4
@ -21,7 +21,26 @@ man_MANS = mysql.1 isamchk.1 isamlog.1 mysql_zap.1 mysqlaccess.1 \
|
|||||||
mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \
|
mysqladmin.1 mysqld.1 mysqld_multi.1 mysqldump.1 mysqlshow.1 \
|
||||||
perror.1 replace.1 mysqld_safe.1 mysql_fix_privilege_tables.1
|
perror.1 replace.1 mysqld_safe.1 mysql_fix_privilege_tables.1
|
||||||
|
|
||||||
EXTRA_DIST = $(man_MANS)
|
EXTRA_DIST = mysql.1.in isamchk.1.in isamlog.1.in mysql_zap.1.in \
|
||||||
|
mysqlaccess.1.in mysqladmin.1.in mysqld.1.in mysqld_multi.1.in \
|
||||||
|
mysqldump.1.in mysqlshow.1.in perror.1.in replace.1.in \
|
||||||
|
mysqld_safe.1.in mysql_fix_privilege_tables.1.in
|
||||||
|
|
||||||
|
CLEANFILES = $(man_MANS)
|
||||||
|
|
||||||
|
SUFFIXES = .in
|
||||||
|
|
||||||
|
.in:
|
||||||
|
@RM@ -f $@ $@-t
|
||||||
|
@SED@ \
|
||||||
|
-e 's!@''MYSQL_BASE_VERSION''@!@MYSQL_BASE_VERSION@!' \
|
||||||
|
-e 's!@''sysconfdir''@!@sysconfdir@!' \
|
||||||
|
-e 's!@''bindir''@!$(bindir)!g' \
|
||||||
|
-e 's!@''libexecdir''@!$(libexecdir)!g' \
|
||||||
|
-e 's!@''localstatedir''@!$(localstatedir)!g' \
|
||||||
|
-e 's!@''MYSQL_NO_DASH_VERSION''@!@MYSQL_NO_DASH_VERSION@!' \
|
||||||
|
$< > $@-t
|
||||||
|
@MV@ $@-t $@
|
||||||
|
|
||||||
# Don't update the files from bitkeeper
|
# Don't update the files from bitkeeper
|
||||||
%::SCCS/s.%
|
%::SCCS/s.%
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH isamchk 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH isamchk 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.BR isamchk
|
.BR isamchk
|
||||||
\- Description, check and repair of ISAM tables.
|
\- Description, check and repair of ISAM tables.
|
||||||
@ -114,24 +114,29 @@ Print version and exit.
|
|||||||
.BR \-w | \-\-wait
|
.BR \-w | \-\-wait
|
||||||
Wait if table is locked.
|
Wait if table is locked.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamlog(1),
|
||||||
isamlog (1),
|
mysql(1),
|
||||||
mysqlaccess (1),
|
mysqlaccess(1),
|
||||||
mysqladmin (1),
|
mysqladmin(1),
|
||||||
mysqlbug (1),
|
mysqld(1),
|
||||||
mysqld (1),
|
mysqld_multi(1),
|
||||||
mysqldump (1),
|
mysqld_safe(1),
|
||||||
mysqlshow (1),
|
mysqldump(1),
|
||||||
msql2mysql (1),
|
mysql_fix_privilege_tables(1),
|
||||||
perror (1),
|
mysqlshow(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
@ -1,4 +1,4 @@
|
|||||||
.TH isamlog 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH isamlog 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
isamlog - Write info about whats in a nisam log file.
|
isamlog - Write info about whats in a nisam log file.
|
||||||
.SH USAGE
|
.SH USAGE
|
||||||
@ -71,27 +71,31 @@ If one gives table names as arguments only these tables will be updated
|
|||||||
|
|
||||||
|
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
|
isamchk(1),
|
||||||
isamchk (1),
|
mysql(1),
|
||||||
isamlog (1),
|
mysqlaccess(1),
|
||||||
mysqlaccess (1),
|
mysqladmin(1),
|
||||||
mysqladmin (1),
|
mysqld(1),
|
||||||
mysqlbug (1),
|
mysqld_multi(1),
|
||||||
mysqld (1),
|
mysqld_safe(1),
|
||||||
mysqldump (1),
|
mysqldump(1),
|
||||||
mysqlshow (1),
|
mysql_fix_privilege_tables(1),
|
||||||
msql2mysql (1),
|
mysqlshow(1),
|
||||||
perror (1),
|
mysql_zap(1),
|
||||||
replace (1),
|
perror(1),
|
||||||
mysqld_safe (1),
|
replace(1)
|
||||||
which1 (1),
|
.P
|
||||||
zap (1),
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
|
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
|
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
@ -1,6 +1,8 @@
|
|||||||
.TH mysql 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH mysql 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mysql \- text-based client for mysqld, a SQL-based relational database daemon
|
mysql \- text-based client for mysqld, a SQL-based relational database daemon
|
||||||
|
.SH USAGE
|
||||||
|
mysql [OPTIONS] [Database]
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
.B mysql
|
.B mysql
|
||||||
.RB [ \-B | \-\-batch ]
|
.RB [ \-B | \-\-batch ]
|
||||||
@ -105,16 +107,19 @@ version number and exit.
|
|||||||
Wait and retry if the database server connection is down.
|
Wait and retry if the database server connection is down.
|
||||||
.SH FILES
|
.SH FILES
|
||||||
.TP 2.2i
|
.TP 2.2i
|
||||||
.I /depot/bin/mysql
|
.I @sysconfdir@/my.cnf
|
||||||
executable
|
MySQL configuration file
|
||||||
.TP
|
.TP
|
||||||
.I /depot/bin/mysqld
|
.I @bindir@/mysql
|
||||||
executable
|
Client executable
|
||||||
.TP
|
.TP
|
||||||
.I /depot/bin/mysqld_safe
|
.I @libexecdir@/mysqld
|
||||||
|
Server executable
|
||||||
|
.TP
|
||||||
|
.I @bindir@/mysqld_safe
|
||||||
executable shell script for starting mysqld safely
|
executable shell script for starting mysqld safely
|
||||||
.TP
|
.TP
|
||||||
.I /site/var/mysql/data
|
.I @localstatedir@
|
||||||
location of database files
|
location of database files
|
||||||
.SH EXAMPLE
|
.SH EXAMPLE
|
||||||
You can also read a backup dump file back into MySQL with:
|
You can also read a backup dump file back into MySQL with:
|
||||||
@ -124,24 +129,29 @@ You can also read a backup dump file back into MySQL with:
|
|||||||
.BR <
|
.BR <
|
||||||
backup-file.sql
|
backup-file.sql
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysqlaccess(1),
|
||||||
mysqladmin (1),
|
mysqladmin(1),
|
||||||
mysqlbug (1),
|
mysqld(1),
|
||||||
mysqld (1),
|
mysqld_multi(1),
|
||||||
mysqldump (1),
|
mysqld_safe(1),
|
||||||
mysqlshow (1),
|
mysqldump(1),
|
||||||
msql2mysql (1),
|
mysql_fix_privilege_tables(1),
|
||||||
perror (1),
|
mysqlshow(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 6.3, distribution 3.20.20
|
Ver 6.3, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/)
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by R. P. C. Rodgers,
|
Manual page by R. P. C. Rodgers,
|
||||||
Lister Hill National Center for Biomedical Communication,
|
Lister Hill National Center for Biomedical Communication,
|
@ -1,4 +1,4 @@
|
|||||||
.TH mysql 1 "17 March 2003" "MySQL 4.0" "MySQL database"
|
.TH mysql 1 "17 March 2003" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mysql_fix_privilege_tables \- Fixes MySQL privilege tables.
|
mysql_fix_privilege_tables \- Fixes MySQL privilege tables.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -14,7 +14,25 @@ If you get 'Access denied' errors, run the script again
|
|||||||
and give the MySQL root user password as an argument.
|
and give the MySQL root user password as an argument.
|
||||||
|
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
mysql (1), mysqld (1)
|
isamchk(1),
|
||||||
|
isamlog(1),
|
||||||
|
mysql(1),
|
||||||
|
mysqlaccess(1),
|
||||||
|
mysqladmin(1),
|
||||||
|
mysqld(1),
|
||||||
|
mysqld_multi(1),
|
||||||
|
mysqld_safe(1),
|
||||||
|
mysqldump(1),
|
||||||
|
mysqlshow(1),
|
||||||
|
mysql_zap(1),
|
||||||
|
perror(1),
|
||||||
|
replace(1)
|
||||||
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
This manpage was written by Christian Hammers <ch@debian.org>.
|
This manpage was written by Christian Hammers <ch@debian.org>.
|
||||||
|
|
@ -1,34 +0,0 @@
|
|||||||
.TH zap 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
|
||||||
.SH NAME
|
|
||||||
zap - a perl script used to kill processes
|
|
||||||
.SH USAGE
|
|
||||||
/usr/bin/mysql_zap [-signal] [-?Ift] pattern
|
|
||||||
.SH SYNOPSIS
|
|
||||||
.B zap
|
|
||||||
.RB [ \-I | \-? ]
|
|
||||||
.RB [ \-f ]
|
|
||||||
.RB [ \-t ]
|
|
||||||
.SH DESCRIPTION
|
|
||||||
.TP
|
|
||||||
.BR zap
|
|
||||||
supports by executing
|
|
||||||
.TP
|
|
||||||
.BR \-I | \-?
|
|
||||||
info
|
|
||||||
.TP
|
|
||||||
.BR \-f
|
|
||||||
force
|
|
||||||
.TP
|
|
||||||
.BR \-t
|
|
||||||
test
|
|
||||||
.SH NOTE
|
|
||||||
If
|
|
||||||
.BR -f
|
|
||||||
isn't given, ask user for confirmation for each process to kill. If signal isn't given, try first with signal 15 and after that with signal 9. If
|
|
||||||
.BR -t
|
|
||||||
is given the processes is only shown on stdout.
|
|
||||||
.SH "SEE ALSO"
|
|
||||||
isamchk (1), isamlog (1), mysqlaccess (1), mysqladmin (1), mysqlbug (1), mysqld (1), mysqldump (1), mysqlshow (1), msql2mysql (1), perror (1), replace (1), mysqld_safe (1), which1 (1), zap (1),
|
|
||||||
.SH AUTHOR
|
|
||||||
Ver 1.0, distribution 3.23.29a Michael (Monty) Widenius (monty@tcx.se), TCX Datakonsult AB (http://www.tcx.se). This software comes with no warranty. Manual page by L. (Kill-9) Pedersen (kill-9@kill-9.dk), Mercurmedia Data Model Architect / system developer (http://www.mercurmedia.com)
|
|
||||||
.\" end of man page
|
|
52
man/mysql_zap.1.in
Normal file
52
man/mysql_zap.1.in
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
.TH zap 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
|
.SH NAME
|
||||||
|
zap - a perl script used to kill processes
|
||||||
|
.SH USAGE
|
||||||
|
/usr/bin/mysql_zap [-signal] [-?Ift] pattern
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B zap
|
||||||
|
.RB [ \-I | \-? ]
|
||||||
|
.RB [ \-f ]
|
||||||
|
.RB [ \-t ]
|
||||||
|
.SH DESCRIPTION
|
||||||
|
.TP
|
||||||
|
.BR zap
|
||||||
|
supports by executing
|
||||||
|
.TP
|
||||||
|
.BR \-I | \-?
|
||||||
|
info
|
||||||
|
.TP
|
||||||
|
.BR \-f
|
||||||
|
force
|
||||||
|
.TP
|
||||||
|
.BR \-t
|
||||||
|
test
|
||||||
|
.SH NOTE
|
||||||
|
If
|
||||||
|
.BR -f
|
||||||
|
isn't given, ask user for confirmation for each process to kill. If signal isn't given, try first with signal 15 and after that with signal 9. If
|
||||||
|
.BR -t
|
||||||
|
is given the processes is only shown on stdout.
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
isamchk(1),
|
||||||
|
isamlog(1),
|
||||||
|
mysql(1),
|
||||||
|
mysqlaccess(1),
|
||||||
|
mysqladmin(1),
|
||||||
|
mysqld(1),
|
||||||
|
mysqld_multi(1),
|
||||||
|
mysqld_safe(1),
|
||||||
|
mysqldump(1),
|
||||||
|
mysql_fix_privilege_tables(1),
|
||||||
|
mysqlshow(1),
|
||||||
|
perror(1),
|
||||||
|
replace(1)
|
||||||
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
|
.SH AUTHOR
|
||||||
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@ Michael (Monty) Widenius (monty@mysql.com), MySQL AB (http://www.mysql.com/). This software comes with no warranty. Manual page by L. (Kill-9) Pedersen (kill-9@kill-9.dk), Mercurmedia Data Model Architect / system developer (http://www.mercurmedia.com)
|
||||||
|
.\" end of man page
|
@ -1,4 +1,4 @@
|
|||||||
.TH mysqlaccess 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH mysqlaccess 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.BR mysqlaccess
|
.BR mysqlaccess
|
||||||
\- Create new users to mysql.
|
\- Create new users to mysql.
|
||||||
@ -95,24 +95,29 @@ If no host is given, `localhost' is assumed
|
|||||||
Wildcards (*,?,%,_) are allowed for host, user and db, but be sure
|
Wildcards (*,?,%,_) are allowed for host, user and db, but be sure
|
||||||
to escape them from your shell!! (i.e., type \\* or '*')
|
to escape them from your shell!! (i.e., type \\* or '*')
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqladmin(1),
|
||||||
mysqlbug (1),
|
mysqld(1),
|
||||||
mysqld (1),
|
mysqld_multi(1),
|
||||||
mysqldump (1),
|
mysqld_safe(1),
|
||||||
mysqlshow (1),
|
mysqldump(1),
|
||||||
msql2mysql (1),
|
mysql_fix_privilege_tables(1),
|
||||||
perror (1),
|
mysqlshow(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
@ -1,4 +1,4 @@
|
|||||||
.TH mysqladmin 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH mysqladmin 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mysqladmin [OPTIONS] command command.... \- A utility for performing administrative operations
|
mysqladmin [OPTIONS] command command.... \- A utility for performing administrative operations
|
||||||
.SH OPTION SYNOPSIS
|
.SH OPTION SYNOPSIS
|
||||||
@ -178,31 +178,32 @@ Prints variables available
|
|||||||
.BR version
|
.BR version
|
||||||
Get version info from server
|
Get version info from server
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqlaccess(1),
|
||||||
mysqlbug (1),
|
mysqld(1),
|
||||||
mysqld (1),
|
mysqld_multi(1),
|
||||||
mysqldump (1),
|
mysqld_safe(1),
|
||||||
mysqlshow (1),
|
mysqldump(1),
|
||||||
msql2mysql (1),
|
mysql_fix_privilege_tables(1),
|
||||||
perror (1),
|
mysqlshow(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
||||||
system developer (http://www.mercurmedia.com)
|
system developer (http://www.mercurmedia.com)
|
||||||
.\" end of man page
|
.\" end of man page
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,7 +1,6 @@
|
|||||||
.TH mysqld 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH mysqld 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.BR mysqld
|
mysqld \- The MySQL server demon
|
||||||
\- Starts the MySQL server demon
|
|
||||||
.SH USAGE
|
.SH USAGE
|
||||||
mysqld [OPTIONS]
|
mysqld [OPTIONS]
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -204,24 +203,29 @@ Output version information and exit.
|
|||||||
|
|
||||||
.SH NOTE
|
.SH NOTE
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqlaccess(1),
|
||||||
mysqlbug (1),
|
mysqladmin(1),
|
||||||
mysqld (1),
|
mysqld_multi(1),
|
||||||
mysqldump (1),
|
mysqld_safe(1),
|
||||||
mysqlshow (1),
|
mysqldump(1),
|
||||||
msql2mysql (1),
|
mysql_fix_privilege_tables(1),
|
||||||
perror (1),
|
mysqlshow(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
@ -1,4 +1,4 @@
|
|||||||
.TH mysqld_multi 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH mysqld_multi 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mysqld_multi - is meant for managing several mysqld processes running in different UNIX sockets and TCP/IP ports.
|
mysqld_multi - is meant for managing several mysqld processes running in different UNIX sockets and TCP/IP ports.
|
||||||
.SH USAGE
|
.SH USAGE
|
||||||
@ -58,27 +58,31 @@ Please see the mysql manual for more detailed information on this.
|
|||||||
|
|
||||||
|
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
|
isamchk(1),
|
||||||
isamchk (1),
|
isamlog(1),
|
||||||
isamlog (1),
|
mysql(1),
|
||||||
mysqlaccess (1),
|
mysqlaccess(1),
|
||||||
mysqladmin (1),
|
mysqladmin(1),
|
||||||
mysqlbug (1),
|
mysqld(1),
|
||||||
mysqld (1),
|
mysqld_safe(1),
|
||||||
mysqldump (1),
|
mysqldump(1),
|
||||||
mysqlshow (1),
|
mysql_fix_privilege_tables(1),
|
||||||
msql2mysql (1),
|
mysqlshow(1),
|
||||||
perror (1),
|
mysql_zap(1),
|
||||||
replace (1),
|
perror(1),
|
||||||
mysqld_safe (1),
|
replace(1)
|
||||||
which1 (1),
|
.P
|
||||||
zap (1),
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
|
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
|
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
@ -1,4 +1,4 @@
|
|||||||
.TH safe_mysqld 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH safe_mysqld 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mysqld_safe \- start the mysqld daemon on Unix.
|
mysqld_safe \- start the mysqld daemon on Unix.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -60,22 +60,27 @@ Set the timezone (the TZ) variable to the value of this parameter.
|
|||||||
.SH NOTE
|
.SH NOTE
|
||||||
Note that all options on the command line to mysqld_safe are passed to mysqld. If you wants to use any options in mysqld_safe that mysqld doesn't support, you must specify these in the option file.
|
Note that all options on the command line to mysqld_safe are passed to mysqld. If you wants to use any options in mysqld_safe that mysqld doesn't support, you must specify these in the option file.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqlaccess(1),
|
||||||
mysqlbug (1),
|
mysqladmin(1),
|
||||||
mysqld (1),
|
mysqld(1),
|
||||||
mysqldump (1),
|
mysqld_multi(1),
|
||||||
mysqlshow (1),
|
mysqldump(1),
|
||||||
msql2mysql (1),
|
mysql_fix_privilege_tables(1),
|
||||||
perror (1),
|
mysqlshow(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@mysql.com),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
MySQL AB (http://www.mysql.com).
|
MySQL AB (http://www.mysql.com).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
@ -1,4 +1,4 @@
|
|||||||
.TH mysqldump 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH mysqldump 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mysqldump \- text-based client for dumping or backing up mysql databases , tables and or data.
|
mysqldump \- text-based client for dumping or backing up mysql databases , tables and or data.
|
||||||
|
|
||||||
@ -247,24 +247,29 @@ If all the databases are wanted, one can use:
|
|||||||
mysqldump \fP\fI\-\-all\-databases\fP > all_databases.sql
|
mysqldump \fP\fI\-\-all\-databases\fP > all_databases.sql
|
||||||
|
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqlaccess(1),
|
||||||
mysqlbug (1),
|
mysqladmin(1),
|
||||||
mysqld (1),
|
mysqld(1),
|
||||||
mysqldump (1),
|
mysqld_multi(1),
|
||||||
mysqlshow (1),
|
mysqld_safe(1),
|
||||||
msql2mysql (1),
|
mysql_fix_privilege_tables(1),
|
||||||
perror (1),
|
mysqlshow(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
@ -1,4 +1,4 @@
|
|||||||
.TH mysqlshow 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH mysqlshow 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.BR mysqlshow
|
.BR mysqlshow
|
||||||
\- Shows the structure of a mysql database (databases,tables and columns)
|
\- Shows the structure of a mysql database (databases,tables and columns)
|
||||||
@ -67,24 +67,29 @@ If no column is given then all matching columns and columntypes in table
|
|||||||
are shown
|
are shown
|
||||||
|
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqlaccess(1),
|
||||||
mysqlbug (1),
|
mysqladmin(1),
|
||||||
mysqld (1),
|
mysqld(1),
|
||||||
mysqldump (1),
|
mysqld_multi(1),
|
||||||
mysqlshow (1),
|
mysqld_safe(1),
|
||||||
msql2mysql (1),
|
mysqldump(1),
|
||||||
perror (1),
|
mysql_fix_privilege_tables(1),
|
||||||
replace (1),
|
mysql_zap(1),
|
||||||
mysqld_safe (1),
|
perror(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
@ -1,4 +1,4 @@
|
|||||||
.TH perror 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH perror 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
perror \- describes a system or MySQL error code.
|
perror \- describes a system or MySQL error code.
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
@ -27,24 +27,29 @@ shell> perror 64 79
|
|||||||
Error code 64: Machine is not on the network
|
Error code 64: Machine is not on the network
|
||||||
Error code 79: Can not access a needed shared library
|
Error code 79: Can not access a needed shared library
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqlaccess(1),
|
||||||
mysqlbug (1),
|
mysqladmin(1),
|
||||||
mysqld (1),
|
mysqld(1),
|
||||||
mysqldump (1),
|
mysqld_multi(1),
|
||||||
mysqlshow (1),
|
mysqld_safe(1),
|
||||||
msql2mysql (1),
|
mysqldump(1),
|
||||||
perror (1),
|
mysql_fix_privilege_tables(1),
|
||||||
replace (1),
|
mysqlshow(1),
|
||||||
mysqld_safe (1),
|
mysql_zap(1),
|
||||||
which1 (1),
|
replace(1)
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill\-9.dk), Mercurmedia Data Model Architect /
|
@ -1,4 +1,4 @@
|
|||||||
.TH replace 1 "19 December 2000" "MySQL 4.0" "MySQL database"
|
.TH replace 1 "19 December 2000" "MySQL @MYSQL_BASE_VERSION@" "MySQL database"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
.TP
|
.TP
|
||||||
replace - A utility program that is used by msql2mysql, but that has more general applicability as well. replace changes strings in place in files or on the standard input. Uses a finite state machine to match longer strings first. Can be used to swap strings.
|
replace - A utility program that is used by msql2mysql, but that has more general applicability as well. replace changes strings in place in files or on the standard input. Uses a finite state machine to match longer strings first. Can be used to swap strings.
|
||||||
@ -41,24 +41,29 @@ this command swaps a and b in the given files:
|
|||||||
.TP
|
.TP
|
||||||
shell> replace a b b a -- file1 file2 ...
|
shell> replace a b b a -- file1 file2 ...
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
isamchk (1),
|
isamchk(1),
|
||||||
isamlog (1),
|
isamlog(1),
|
||||||
mysqlaccess (1),
|
mysql(1),
|
||||||
mysqladmin (1),
|
mysqlaccess(1),
|
||||||
mysqlbug (1),
|
mysqladmin(1),
|
||||||
mysqld (1),
|
mysqld(1),
|
||||||
mysqldump (1),
|
mysqld_multi(1),
|
||||||
mysqlshow (1),
|
mysqld_safe(1),
|
||||||
msql2mysql (1),
|
mysqldump(1),
|
||||||
perror (1),
|
mysql_fix_privilege_tables(1),
|
||||||
replace (1),
|
mysqlshow(1),
|
||||||
mysqld_safe (1),
|
mysql_zap(1),
|
||||||
which1 (1),
|
perror(1),
|
||||||
zap (1),
|
.P
|
||||||
|
For more information please refer to the MySQL reference
|
||||||
|
manual, which may already be installed locally and which
|
||||||
|
is also available online at http://www.mysql.com/doc/en/
|
||||||
|
.SH BUGS
|
||||||
|
Please refer to http://bugs.mysql.com/ to report bugs.
|
||||||
.SH AUTHOR
|
.SH AUTHOR
|
||||||
Ver 1.0, distribution 3.23.29a
|
Ver 1.0, distribution @MYSQL_NO_DASH_VERSION@
|
||||||
Michael (Monty) Widenius (monty@tcx.se),
|
Michael (Monty) Widenius (monty@mysql.com),
|
||||||
TCX Datakonsult AB (http://www.tcx.se).
|
MySQL AB (http://www.mysql.com/).
|
||||||
This software comes with no warranty.
|
This software comes with no warranty.
|
||||||
Manual page by L. (Kill-9) Pedersen
|
Manual page by L. (Kill-9) Pedersen
|
||||||
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
(kill-9@kill-9.dk), Mercurmedia Data Model Architect /
|
Loading…
x
Reference in New Issue
Block a user