程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> mysql主從辦事器同步心得領會第1/2頁

mysql主從辦事器同步心得領會第1/2頁

編輯:MySQL綜合教程

mysql主從辦事器同步心得領會第1/2頁。本站提示廣大學習愛好者:(mysql主從辦事器同步心得領會第1/2頁)文章只能為提供參考,不一定能成為您想要的結果。以下是mysql主從辦事器同步心得領會第1/2頁正文


本來看過MYSQL同步數據的完成,可是本身還沒有動過手,明天沒甚麼事就玩一玩,正好在旁邊有另外一台空電腦,都在統一個路由器下。哈哈,正好。

不外起首在找設置裝備擺設文件上就把我卡了很久,因為我用的是xampp裝置包,在xampp/mysql/bin目次下看一直沒有找到my.cnf,在c:windows目次下也沒有發明,



如上圖,看到的只要一個”my”的疾速撥號的器械,又不是文件,怎樣都打不開。後來找了很久才在網上看到說碰到這類情形須要先翻開editplus,然後再從editplus外面翻開這個文件,果真。。。

設置裝備擺設就不詳說了,網上有許多,我本來也轉過一篇。

明天重要是講一下設置裝備擺設主從辦事器須要留意的處所:

起首須要做主從的數據庫必需如出一轍,假如你的數據庫曾經運轉過一段時光,建議你先刪除一切的二進制日記文件,包含索引xxx.index這個文件,不然重啟mysql會失足。

從辦事器上曾經刪除失落一切的二進制日記文件,固然包含一個master.info這個文件。這個文件是用來記載主辦事器上過去的日記文件和記載地位的。假如你不刪除它,它還會依照之前的記載來做,所以會出成績,我在這裡糟蹋了許多時光了。

主辦事器診斷:

show processlist;顯示一切的過程。

show master status;顯示主辦事器的日記文件和指針地位。

mysql> show master status;
+——————+———-+—————-+——————+
File Position Binlog_Do_DB Binlog_Ignore_DB
+——————+———-+—————-+——————+
mysql-bin.000001 603 videoCommunity
+——————+———-+—————-+——————+
1 row in set (0.00 sec)

mysql> show master status\G
*************************** 1. row ***************************
File: mysql-bin.000001
Position: 603
Binlog_Do_DB: videoCommunity
Binlog_Ignore_DB:
1 row in set (0.00 sec)

如上圖,mysql-bin.000001是日記記載文件,603是指針地位。

從辦事器(slave)上診斷:

mysql> show slave status\G
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: master1
Master_User: root
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000001
Read_Master_Log_Pos: 603
Relay_Log_File: master2-relay-bin.000053
Relay_Log_Pos: 740
Relay_Master_Log_File: mysql-bin.000001
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB: videoCommunity
Replicate_Ignore_DB:
Replicate_Do_Table:
Replicate_Ignore_Table:
Replicate_Wild_Do_Table:
Replicate_Wild_Ignore_Table:
Last_Errno: 0
Last_Error:
Skip_Counter: 0
Exec_Master_Log_Pos: 603
Relay_Log_Space: 740
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: 0
1 row in set (0.00 sec)

確認以上信息和主辦事器能否分歧。
以後1/2頁 12下一頁浏覽全文

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved