1Z0-873 · Question #23
On a Unix host with the host name "sakila", where will mysqld write errors to?
The correct answer is B. stdout. 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 error log. mysqld_safe is a shell script that invokes mysqld. The script sets up the error…
Question
On a Unix host with the host name "sakila", where will mysqld write errors to?
Options
- Astdin
- Bstdout
- Csakila.out
How the community answered
(61 responses)- A13% (8)
- B82% (50)
- C5% (3)
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 error log. 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.
Topics
Community Discussion
No community discussion yet for this question.