1Z0-873 · Question #21
Which of the following list the difference between mysqld, mysqld_safe and mysql.server respectively?
The correct answer is A. mysqld is the server; mysqld_safe is a shell script that invokes mysqld; mysql.server is a wrapper. You can invoke mysqld manually. This is usually not done except for debugging purposes. If you invoke the server this way, error messages go to the terminal by default rather than to the mysqld_safe is a shell script that invokes mysqld. The script sets up the error log, and…
Question
Which of the following list the difference between mysqld, mysqld_safe and mysql.server respectively?
Options
- Amysqld is the server; mysqld_safe is a shell script that invokes mysqld; mysql.server is a wrapper
- Bmysqld is a shell script that starts mysql.server; mysqld_safe is a shell script that invokes the
- Cmysqld is the server; mysqld_safe is a shell script that invokes mysqld in safe mode, and
- DNothing. They are symbloic links to the same file.
How the community answered
(21 responses)- A76% (16)
- B5% (1)
- C14% (3)
- D5% (1)
Explanation
You can invoke mysqld manually. This is usually not done except for debugging purposes. If you invoke the server this way, error messages go to the terminal by default rather than to the mysqld_safe is a shell script that invokes mysqld. The script sets up the error log, and then launches mysqld and monitors it. If mysqld terminates abnormally, mysqld_safe restarts it. mysql.server is a shell script that invokes mysqld_safe. It's used as a wrapper around mysqld_safe for systems such as Linux and Solaris that use System V run-level directories. Typically, this script is renamed to mysql when it is installed in a run-level directory.
Topics
Community Discussion
No community discussion yet for this question.