数据库复制
我已尝试按照中概述的步骤进行操作 http://www.howtoforge.com/mysql_database_replication 用于数据库复制。 我已经创建了数据库 exampledb,并创建了一些表并加载了值。
但是当我执行时 使用示例数据库; 使用读锁刷新表; 显示主状态;
我没有得到任何输出,它说 0 行受影响。 为什么会这样呢?
I have tried to follow the steps outlined in
http://www.howtoforge.com/mysql_database_replication
for Database Replication.
I have created the database exampledb, and create some tables and load them with values.
But when I execute
USE exampledb;
FLUSH TABLES WITH READ LOCK;
SHOW MASTER STATUS;
I do not get any output, it says 0 rows affected.
why is it so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,我发现“显示主状态”很少说明复制状态。在从属服务器上使用“显示从属状态”对于显示当前复制状态更为有用。例如:复制是否赶上主服务器、是否存在任何错误、事务计数是否与主服务器匹配。
Generally I find that 'Show Master Status' says very little about the replication status. Using 'Show Slave Status' on the Slave server is far more useful for showing current status of replication. For example: is the replication caught up to the master, have there been any errors, does the transaction count match the master.