The slave stores the CHANGE MASTER parameters in the file . . . . . . . .
A. slave.info
B. slave.inf
C. master.info
D. master.inf
Answer: Option C
Solution (By Examveda Team)
This question is asking about the file where a MySQL slave server stores the settings for connecting to its master server. These settings are called CHANGE MASTER parameters and are used to establish and maintain the replication process.The correct answer is Option A: slave.info.
Here's a breakdown:
* slave.info: This file is located on the slave server and stores the CHANGE MASTER parameters. These parameters include information like the master's hostname, port number, username, password, and the specific replication settings.
* Option B, C, and D are incorrect. They don't represent files that store CHANGE MASTER parameters on a slave server.
So, the slave server uses the slave.info file to keep track of the master's information and replication settings.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network
Join The Discussion