這裡環境如下:
Master一直沒有寫操作
Master和Slave在一台虛擬機中,端口號分別為3306和3307
mysqladmin -umysql -p -S /data/mysqldata/3306/mysql.sock shutdown
2.復制數據文件
cp -r /data/mysqldata/3306 /data/mysqldata/3307
3.編輯Master的參數文件
在[mysqld]區塊中添加
server_id =1
log_bin =../binlog/mysql-bin
binlog必須要打開
同一套復制環境中的每個成員必須要有獨立的server_id。server_id的取值范圍在1~(2的32次方 -1)
參數配置好後,就可以啟動數據庫了,但是不要有寫操作
4.創建復制專用賬戶
在Master端
grant replication slave on *.* to 'repl'@'192.168.134.%' identified by 'repl';
這樣就創建了賬戶
(mysql@localhost) [(none)]> select user,host from mysql.user;
+--------+---------------+
| user | host |
+--------+---------------+
| repl | 192.168.134.% |
| backup | localhost |
| mysql | localhost |
+--------+---------------+
然後,獲取Master端信息
(mysql@localhost) [(none)]> show master status;
+------------------+----------+--------------+------------------+-------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+----------+--------------+------------------+-------------------+
| mysql-bin.000003 | 331 | | | |
+------------------+----------+--------------+------------------+-------------------+
5.配置Slave端選項文件
在[mysqld]區塊中添加
server_id =2
log_bin =../binlog/mysql-bin --非必選項
Slave端並不是必須開啟bin-log
sed -i 's/3306/3307/g' /data/mysqldata/330/my.cnf
還需要刪除Slave端的auto.cnf文件
rm /data/mysqldata/3307/data/auto.cnf
這個文件中給保存了一項名為server-uuid的重要參數,它用來唯一標識Mysql服務,我們的環境是直接復制的主庫,所以需要刪除它。Slave節點的數據庫服務啟動時會自動重新生成一個
6.啟動Slave端服務
[mysql@master 3307]$ mysql -umysql -p -S /data/mysqldata/3307/mysql.sock
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
...
配置Slave到Master的連接:
mysql> change master to
-> master_host='192.168.134.128',
-> master_port=3306,
-> master_user='repl',
-> master_password='repl',
-> master_log_file='mysql-bin.000003',
-> master_log_pos=331;
Query OK, 0 rows affected, 2 warnings (0.05 sec)
啟動Slave端的應用服務:
mysql> start slave;
之後就可以在主庫創建個表,插入數據,然後去從庫看看,如果數據一致,那麼就OK了