Forrest logo
back to context overview

mysqld

List of commands for mysqld:

  • mysqld:help:show-options Show all help options and exit.
    $ mysqld --verbose --help
    try on your machine
    explain this command
  • mysqld:tldr:01a97 mysqld: Start the server and listen on a custom port.
    $ mysqld --port=${port}
    try on your machine
    explain this command
  • mysqld:tldr:2a816 mysqld: Start the server, saving logging output to a custom log file.
    $ mysqld --log=${filename-log}
    try on your machine
    explain this command
  • mysqld:tldr:3e210 mysqld: Print the default arguments and their values and exit.
    $ mysqld --print-defaults
    try on your machine
    explain this command
  • mysqld:tldr:640f4 mysqld: Start the server, reading arguments and values from a file.
    $ mysqld --defaults-file=${filename}
    try on your machine
    explain this command
  • mysqld:tldr:7e3bc mysqld: Start the MySQL database server.
    $ mysqld
    try on your machine
    explain this command
  • mysqld:tldr:9795b mysqld: Start the server, printing error messages to the console.
    $ mysqld --console
    try on your machine
    explain this command
back to context overview