主從配置比較簡單,簡單記錄一下。
設定兩台伺服器的ip分別為192.168.16.211和212。
為了實驗方便,Mysql的root密碼都是空的。
分別為mysql添加slave使用者,密碼為slave,可以任意主機登入,擁有所有許可權。
添加使用者請參考:Linux下mysql建立使用者並賦予許可權
首先安裝mysql-server。
yum groupinstall mysql
修改mysql設定檔。
修改/etc/my.cnf
兩台MySQL均如要開啟binlog日誌功能,開啟方法:在MySQL設定檔[MySQLd]段中加上log-bin=mysql-bin選項。
兩台MySQL的server-ID不能一樣,預設情況下兩台MySQL的serverID都是1,需將其中一台修改為2即可
在[mysqld]下添加:
server-id=2
log_bin=mysql-bin
啟動mysqld。
service mysqld restart
登入mysql控制台,設定主從關係。
mysql -u root
211查看:
mysql> show master status;
+------------------+----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+------------------+----------+--------------+------------------+
| mysql-bin.000002 | 187 | | |
+------------------+----------+--------------+------------------+
1 row in set (0.00 sec)
在212上機器上配置
change master to master_host='192.168.16.211',master_user='slave',master_password='slave',master_log_file='mysql-bin.000002',master_log_pos=187;
211配置方法同上,先查看212的master status,然後設定參數。
設定好以後,執行下面命令以啟動slave:
start slave;
查看狀態:
mysql> show slave statusG
*************************** 1. row ***************************
Slave_IO_State: Waiting for master to send event
Master_Host: 192.168.16.212
Master_User: slave
Master_Port: 3306
Connect_Retry: 60
Master_Log_File: mysql-bin.000002
Read_Master_Log_Pos: 106
Relay_Log_File: mysqld-relay-bin.000002
Relay_Log_Pos: 251
Relay_Master_Log_File: mysql-bin.000002
Slave_IO_Running: Yes
Slave_SQL_Running: Yes
Replicate_Do_DB:
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: 106
Relay_Log_Space: 407
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
Master_SSL_Verify_Server_Cert: No
Last_IO_Errno: 0
Last_IO_Error:
Last_SQL_Errno: 0
Last_SQL_Error:
1 row in set (0.00 sec)
至此,雙機互為主從配置完畢。