मशीन के अचानक बंद होने पर एक MySQL v5.1.61 रिले दूषित हो गया। मैंने इसे ठीक करने की कोशिश की लेकिन यह काम नहीं किया।
- मैं इसे कैसे ठीक करूं? क्या मैंने कुछ गलत किया?
जहाँ तक मैंने पढ़ा है, भ्रष्ट MySQL रिले लॉग आसानी से तय हो गए हैं:
change master to master_log_file='<Relay_Master_Log_File>',
master_log_pos=<Exec_Master_Log_Pos>;
कहां Relay_Master_Log_File
और Exec_Master_Log_Pos
किसके द्वारा सूचीबद्ध हैं:
mysql> show slave status;
हालांकि जब मैंने किया change master status ...
, मुझे प्राथमिक कुंजी उल्लंघन त्रुटि मिली। वो कैसे संभव है? क्या उपरोक्त प्रक्रिया सही नहीं है, या जैसे कुछ +1 गायब है?
(अभी के लिए मैंने केवल मास्टर से दास के लिए - मास्टर डेटा mysqldump को फिर से आयात किया है, और समस्या को हल किया है। हालांकि, भविष्य में, ऐसा करना उचित नहीं हो सकता है।)
यहाँ मेरी विशेष समस्या के बारे में विवरण दिया गया है:
mysql> show slave status \G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: the-master-host
Master_User: replication
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000021
Read_Master_Log_Pos: 33639968
Relay_Log_File: mysql-relay-bin.000271
Relay_Log_Pos: 2031587
Relay_Master_Log_File: mysql-bin.000020
Slave_IO_Running: Yes
Slave_SQL_Running: No
Replicate_Do_DB: the_database
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 1594
Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running 'mysqlbinlog' on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to check the master's binary log or slave's relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' on this slave.
Skip_Counter: 0
Exec_Master_Log_Pos: 66395191
Relay_Log_Space: 36559177
Until_Condition: None
Until_Log_File:
Until_Log_Pos: 0
Master_SSL_Allowed: No
Master_SSL_CA_File:
Master_SSL_CA_Path:
Master_SSL_Cert:
Master_SSL_Cipher:
Master_SSL_Key:
Seconds_Behind_Master: NULL
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 1594
Last_SQL_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master's binary log is corrupted (you can check this by running 'mysqlbinlog' on the binary log), the slave's relay log is corrupted (you can check this by running 'mysqlbinlog' on the relay log), a network problem, or a bug in the master's or slave's MySQL code. If you want to check the master's binary log or slave's relay log, you will be able to know their names by issuing 'SHOW SLAVE STATUS' on this slave.
और यही मैंने किया:
mysql> stop slave;
mysql> reset slave;
mysql> change master to master_host='the-master-host', master_user='replication', master_password='the-password', master_log_file='mysql-bin.000020', master_log_pos=66395191;
mysql> start slave;
और यही हुआ, एक PK त्रुटि:
131122 15:17:29 [Note] Slave I/O thread: connected to master 'replication@the-master-host:3306',replication started in log 'mysql-bin.000020' at position 66395191
131122 15:17:29 [ERROR] Slave SQL: Error 'Duplicate entry '71373' for key 'PRIMARY'' on query. Default database: 'the_database'. Query: 'insert into ... values ...', Error_code: 1062
131122 15:17:29 [Warning] Slave: Data truncated for column 'date' at row 1 Error_code: 1265
131122 15:17:29 [Warning] Slave: Duplicate entry '71373' for key 'PRIMARY' Error_code: 1062
मुझे लगता है कि मैंने अनुशंसित प्रक्रिया का पालन किया (नीचे दिए गए लिंक देखें), अभी भी एक पीके त्रुटि थी :-(? Http://bugs.mysql.com/bug.php?id=26489 , "Workarounds" के लिए खोज करें। http । //mhrr.wordpress.com/2013/07/26/mysql-slave-corrupted-relay-log/ /programming//a/14438408
SET GLOBAL sql_slave_skip_counter = 1; START SLAVE;
एक घटना को दास पर छोड़ दूंगा , और आशा करता हूं कि इससे मदद मिलती है - क्या इसका कोई मतलब है? यदि यह मदद नहीं करता है (यदि अभी भी एक पीके त्रुटि है), तो मैं --master-data
फिर से एक डंप आयात करूंगा ।