您好,登錄后才能下訂單哦!
本篇文章為大家展示了Ubuntu 中怎么配置mysql,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
1. 在master上建立一個專門用來做復制的用戶:grant replication slave on *.* to 'replicationuser'@'192.168.51.165' identified by '123456';
2.設置master機my.cnf:
執行sudo vim etc/Ubuntu mysql/my.cnf在[Ubuntu mysqld]區域加入以下內容: server-id = 1 log_bin = /var/log/Ubuntu mysql/Ubuntu mysql-bin.log #開啟二進制日志 binlog_do_db = testdb #需要同步的數據庫,可選 binlog_ignore_db = Ubuntu mysql,information_schema #
不需要同步的數據庫,可選重啟master服務器 sudo /etc/init.d/Ubuntu mysql restart
3.設置slave機my.cnf:
執行sudo vim etc/Ubuntu mysql/my.cnf在[Ubuntu mysqld]區域加入以下內容:server-id = 2重啟slave服務器 sudo /etc/init.d/Ubuntu mysql restart
4.刷新主服務器上所有的表和塊寫入語句:flush tables with read lock; 然后讀取主服務器上的二進制文件名和分支:show master status;將File和Position的值記錄下來。
并備份master上的數據到slave進行初始化。(flush tables with read lock是為了確保沒有數據庫操作),(只要記錄下File和Position的值,這里就可以執行第6個步驟釋放鎖:Ubuntu mysql> unlock table; )
scp -r ./* root@192.168.47.175:/var/lib/Ubuntu mysql 用root***權限,更改root密碼 sudo su -passwd
5.登陸slave的Ubuntu mysql,用系統真實值代替選項:
Ubuntu mysql> CHANGE MASTER TO MASTER_HOST='192.168.51.162',MASTER_USER='replicationuser', MASTER_PASSWORD='123456',MASTER_LOG_FILE='Ubuntu mysql-bin.000001',MASTER_LOG_POS=1279702; 這里master_log_file和master_log_pos就是前面show master status的結果
6.登陸master并釋放鎖:Ubuntu mysql> unlock table;
7.切換到slave機,啟動從線程:Ubuntu mysql> start slave;這樣就完成了master/slave的配置工作。***可以用show processlist"G;來分別查看 master與slave的狀態。master: 48發送binlog到slave,等待更新。
*************************** 5. row *************************** Id: 48 User: replicationuser Host: 192.168.51.165:43746 db: NULL Command: Binlog Dump Time: 767 State: Has sent all binlog to slave; waiting for binlog to be updated Info: NULL
slave:12等待master發送更新信息。13等待本身I"O線程的數據寫入
*************************** 3. row *************************** Id: 12 User: system user Host: db: NULL Command: Connect Time: 470 State: Waiting for master to send event Info: NULL *************************** 4. row *************************** Id: 13 User: system user Host: db: NULL Command: Connect Time: 359 State: Has read all relay log; waiting for the slave I/O thread to update it Info: NULL
如果show processlist\G;可以看到上面的信息,那代表slave機建立成功。在master上所做的數據更改會馬上表現到slave機。
上述內容就是Ubuntu 中怎么配置mysql,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。