From 23e1c939fd518377a198d98a2dc76aa6b9f138e7 Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Tue, 16 Mar 2021 12:25:48 +0100 Subject: [PATCH] mysqld: add page (#5452) --- pages/common/mysqld.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 pages/common/mysqld.md diff --git a/pages/common/mysqld.md b/pages/common/mysqld.md new file mode 100644 index 0000000000..8104381bea --- /dev/null +++ b/pages/common/mysqld.md @@ -0,0 +1,32 @@ +# mysqld + +> Start the MySQL database server. +> More information: . + +- Start the MySQL database server: + +`mysqld` + +- Start the server, printing error messages to the console: + +`mysqld --console` + +- Start the server, saving logging output to a custom log file: + +`mysqld --log={{path/to/file.log}}` + +- Print the default arguments and their values and exit: + +`mysqld --print-defaults` + +- Start the server, reading arguments and values from a file: + +`mysqld --defaults-file={{path/to/file}}` + +- Start the server and listen on a custom port: + +`mysqld --port={{port}}` + +- Show all help options and exit: + +`mysqld --verbose --help`