6.3.2 mysqld_safe — MySQL Server Startup Script (original) (raw)

6.3.2 mysqld_safe — MySQL Server Startup Script

mysqld_safe is the recommended way to start amysqld server on Unix.mysqld_safe adds some safety features such as restarting the server when an error occurs and logging runtime information to an error log. A description of error logging is given later in this section.

Note

For some Linux platforms, MySQL installation from RPM or Debian packages includes systemd support for managing MySQL server startup and shutdown. On these platforms,mysqld_safe is not installed because it is unnecessary. For more information, seeSection 2.5.9, “Managing MySQL Server with systemd”.

One implication of the non-use ofmysqld_safe on platforms that use systemd for server management is that use of[mysqld_safe] or[safe_mysqld] sections in option files is not supported and might lead to unexpected behavior.

mysqld_safe tries to start an executable named mysqld. To override the default behavior and specify explicitly the name of the server you want to run, specify a --mysqld or --mysqld-version option to mysqld_safe. You can also use--ledir to indicate the directory where mysqld_safe should look for the server.

Many of the options to mysqld_safe are the same as the options to mysqld. SeeSection 7.1.7, “Server Command Options”.

Options unknown to mysqld_safe are passed tomysqld if they are specified on the command line, but ignored if they are specified in the[mysqld_safe] group of an option file. SeeSection 6.2.2.2, “Using Option Files”.

mysqld_safe reads all options from the[mysqld], [server], and[mysqld_safe] sections in option files. For example, if you specify a [mysqld] section like this, mysqld_safe finds and uses the--log-error option:

[mysqld]
log-error=error.log

For backward compatibility, mysqld_safe also reads [safe_mysqld] sections, but to be current you should rename such sections to[mysqld_safe].

mysqld_safe accepts options on the command line and in option files, as described in the following table. For information about option files used by MySQL programs, seeSection 6.2.2.2, “Using Option Files”.

[mysqld_safe]  
malloc-lib=tcmalloc  

To use a specific tcmalloc library, specify its full path name. Example:

[mysqld_safe]  
malloc-lib=/opt/lib/libtcmalloc_minimal.so  

If you execute mysqld_safe with the--defaults-file or--defaults-extra-file option to name an option file, the option must be the first one given on the command line or the option file is not used. For example, this command does not use the named option file:

mysql> mysqld_safe --port=port_num --defaults-file=file_name

Instead, use the following command:

mysql> mysqld_safe --defaults-file=file_name --port=port_num

The mysqld_safe script is written so that it normally can start a server that was installed from either a source or a binary distribution of MySQL, even though these types of distributions typically install the server in slightly different locations. (SeeSection 2.1.5, “Installation Layouts”.)mysqld_safe expects one of the following conditions to be true:

Because mysqld_safe tries to find the server and databases relative to its own working directory, you can install a binary distribution of MySQL anywhere, as long as you run mysqld_safe from the MySQL installation directory:

cd mysql_installation_directory
bin/mysqld_safe &

If mysqld_safe fails, even when invoked from the MySQL installation directory, specify the--ledir and--datadir options to indicate the directories in which the server and databases are located on your system.

mysqld_safe tries to use thesleep and date system utilities to determine how many times per second it has attempted to start. If these utilities are present and the attempted starts per second is greater than 5,mysqld_safe waits 1 full second before starting again. This is intended to prevent excessive CPU usage in the event of repeated failures. (Bug #11761530, Bug #54035)

When you use mysqld_safe to startmysqld, mysqld_safe arranges for error (and notice) messages from itself and frommysqld to go to the same destination.

There are several mysqld_safe options for controlling the destination of these messages:

If none of these options is given, the default is--skip-syslog.

When mysqld_safe writes a message, notices go to the logging destination (syslog or the error log file) and stdout. Errors go to the logging destination and stderr.