diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2021-12-22 00:12:11 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2021-12-22 00:12:11 +0100 |
commit | fcb5c2f5205a92faa6cd4992269fe6dca1805d15 (patch) | |
tree | 25187937ab298c502f4b5084690f8d3cede39157 /docs | |
parent | c62bf54a85abbcb2d8dbf210e33880e06a56fa2b (diff) | |
download | ands-fcb5c2f5205a92faa6cd4992269fe6dca1805d15.tar.gz ands-fcb5c2f5205a92faa6cd4992269fe6dca1805d15.tar.bz2 ands-fcb5c2f5205a92faa6cd4992269fe6dca1805d15.tar.xz ands-fcb5c2f5205a92faa6cd4992269fe6dca1805d15.zip |
Another MySQL replication failure is documented
Diffstat (limited to 'docs')
-rw-r--r-- | docs/troubleshooting.txt | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docs/troubleshooting.txt b/docs/troubleshooting.txt index 459143e..315f9f4 100644 --- a/docs/troubleshooting.txt +++ b/docs/troubleshooting.txt @@ -373,8 +373,27 @@ Storage or again we can compare lvm volumes which are used by Gluster bricks and which are not. The later ones should be cleaned up. Again there is the script. + - Status of RAID can be checked with storcli utility + /opt/MegaRAID/storcli/storcli64 /c0/v0 show + /opt/MegaRAID/storcli/storcli64 /c0 show + to further check smart attributes of a specific disk, one first needs find a corresponding DID of the + disk. This is reported by storcli64 in JSON output mode + /opt/MegaRAID/storcli/storcli64 /c0 /eall /sall show j + Then, smartmontools can be used to extract smart attributes from this disk + smartctl --all --device megaraid,<DID> /dev/sda + MySQL ===== + - MySQL may stop connecting to the master. While correct username and password are set in the container + environment, mysql slave actually uses values stored somewhere in the database. It seems occasionally + a corruption might happen causing authentication to break and slave report error 1045 + Error connecting to master. retry-time: retries: 1, Error_code: 1045 + The work-around is to set correct username/password again (using the values from environment): + STOP SLAVE; + CHANGE MASTER TO MASTER_USER='replication' MASTER_PASSWORD='...'; + START SLAVE; + This should fix it and the new username/password will be remembered over restarts... + - MySQL may stop replicating from the master. There is some kind of deadlock in multi-threaded SLAVE SQL. This can be seen by exexuting (which should show a lot of slave threads waiting on coordinator to provide the load). |