您好,登錄后才能下訂單哦!
這篇文章主要介紹“mysql主從的創(chuàng)建方法”,在日常操作中,相信很多人在mysql主從的創(chuàng)建方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”mysql主從的創(chuàng)建方法”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
環(huán)境介紹:主庫 172.17.10.19 從庫 172.17.10.21
1、主庫創(chuàng)建/etc/my.cnf,修改[mysqld]里邊的鍵值增加
server-id=1
log-bin=myfk_bin_log
2、主庫增加用戶,用于從庫讀取主庫日志。
grant replication slave,reload,super on *.* to 'slave'@'172.17.10.21' identified by 'fookoo_MS'
3、從庫連接主庫進行測試。
/opt/mysql/bin/mysql -u slave -p -h 172.17.10.19
4、停從庫,修改從庫/etc/my.cnf,增加選項:
[mysqld]
server-id=2
master-host=172.17.10.19
master-user=slave
master-password=fookoo_MS
5、啟動從庫,進行主從庫數(shù)據(jù)同步
/opt/mysql/share/mysql/mysql start
/opt/mysql/bin/mysql -u root -p
mysql>load data from master;
說明:這一步也可以用倒入或者直接目錄考過來。
6、進行測試:
主庫創(chuàng)建表,
mysql>create database sampdb;
mysql>create table new (name char(20),phone char(20));
mysql>insert into new (’abc,’0532555555’);
打開從庫,察看:
/opt/mysql/bin/mysql -u root -p
mysql>show database;
mysql
sampdb
test
mysql>use sampdb;
mysql>show tables;
new
說明主從數(shù)據(jù)庫創(chuàng)建成功。
7、主從數(shù)據(jù)庫相關(guān)命令:
slave stop; slave start ;
開始停止從數(shù)據(jù)庫。
show slave statusG;
顯示從庫正讀取哪一個主數(shù)據(jù)庫二進制日志
purge master logs to ’binlog.000004’;
此命令非常小心,刪除主數(shù)據(jù)庫沒用的二進制日志文件。如果誤刪除,那么從庫就沒有辦法自動更新了。
change master;
從上修改參數(shù)使用。
change master to master_host='172.17.10.19', master_user='slave', master_password='fookoo',
master_log_file='myfk_bin_log.000007', master_log_pos=210;
到此,關(guān)于“mysql主從的創(chuàng)建方法”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。