mysqld: add page (#5452)

add-set-more-info-link.py
marchersimon 2021-03-16 12:25:48 +01:00 committed by GitHub
parent 9aebcc62f2
commit 23e1c939fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 32 additions and 0 deletions

32
pages/common/mysqld.md Normal file
View File

@ -0,0 +1,32 @@
# mysqld
> Start the MySQL database server.
> More information: <https://dev.mysql.com/doc/refman/en/mysqld.html>.
- 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`