成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?

目前創(chuàng)新互聯(lián)已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站運(yùn)營、企業(yè)網(wǎng)站設(shè)計(jì)、伊寧網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?這些問題可能是我們?nèi)粘9ぷ鲿姷降?。通過這些問題,希望你能收獲更多。下面是揭開這些問題的詳細(xì)內(nèi)容。

MySQL主從復(fù)制
案例概述
在企業(yè)網(wǎng)站中,后端MySQL數(shù)據(jù)庫只有一臺時,會有以下問題:

  • 單點(diǎn)故障服務(wù)不可用
  • 無法處理大量的并發(fā)數(shù)據(jù)請求
  • 數(shù)據(jù)丟失
    MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
    改造辦法
  • 增加MySQL數(shù)據(jù)庫服務(wù)器,對數(shù)據(jù)進(jìn)行備份,形成主備
  • 確保主備MySQL數(shù)據(jù)庫服務(wù)器數(shù)據(jù)是一樣的
  • 主服務(wù)器宕機(jī)了,備份服務(wù)器繼續(xù)工作,數(shù)據(jù)有保障
    MySQL的主從復(fù)制與讀寫分離是密切相關(guān)的
    MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
    更高級的解決方案
    通過主從復(fù)制的方式來同步數(shù)據(jù),在通過讀寫分離提升數(shù)據(jù)庫的并發(fā)能力
    MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
    Amoeba 變形蟲
    案例實(shí)施
    1.所有服務(wù)器關(guān)閉firewalld或者進(jìn)行規(guī)則設(shè)置
    2.建立時間同步環(huán)境
  • 在主服務(wù)器上安裝ntp時間同步服務(wù)器
    • 使用yum安裝ntp服務(wù)
    • 修改ntp.conf,設(shè)置主服務(wù)器為時間同步源
  • 在從服務(wù)器上進(jìn)行時間同步
    • 使用yum安裝ntpdate并進(jìn)行時間同步
      在三臺數(shù)據(jù)庫服務(wù)器上安裝mysql
  • 編譯安裝mysql
  • 優(yōu)化調(diào)整
  • 初始化數(shù)據(jù)庫
  • 啟動mysql服務(wù)并進(jìn)行root用戶密碼設(shè)置
    配置mysql master主服務(wù)器
  • 修改/etc/my.cnf配置文件,增加服務(wù)器id,配置二進(jìn)制日志選項(xiàng)
    MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
  • 登錄mysql服務(wù),授權(quán)所有的從服務(wù)器復(fù)制二進(jìn)制日志的權(quán)限
    MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
    配置兩臺從服務(wù)器
  • 修改/etc/my.cnf配置文件,增加服務(wù)器id,配置二進(jìn)制日志選項(xiàng)
  • 登錄mysql,配置主從同步
    MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
    實(shí)操
    實(shí)驗(yàn)環(huán)境:準(zhǔn)備5臺centos 7系統(tǒng)的虛擬機(jī)
    一臺主服務(wù)器、兩臺從服務(wù)器、一臺amoeba、一臺客戶機(jī)
    實(shí)驗(yàn)拓?fù)鋱D:
    MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
    三臺mysql服務(wù)器先都安裝ntp、ntpdate
    用于哦配置時間同步
    [root@master ~]# yum install ntp -y
    [root@slave1 ~]# yum install ntp ntpdate -y
    [root@slave2 ~]# yum install ntp ntpdate -y

    修改ntp配置文件
    在主服務(wù)器下設(shè)置ntp配置文件,然后開啟ntpd,關(guān)閉防火墻

    [root@master ~]# vim /etc/ntp.conf
    server 0.centos.pool.ntp.org iburst
    server 1.centos.pool.ntp.org iburst
    server 2.centos.pool.ntp.org iburst
    server 3.centos.pool.ntp.org iburst
    ‘server 127.127.247.0       //設(shè)置本地是時鐘源,這里的127.127指自己的192.168
    ’fudge 127.127.247.0 stratum 8      //設(shè)置時間環(huán)的時間層級(時間環(huán))為8
    [root@master ~]# systemctl start ntpd
    [root@master ~]# systemctl stop firewalld
    [root@master ~]# setenforce 0
    [root@master ~]# systemctl enable ntpd
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.

    配置從服務(wù)器slave1,直接開啟ntpd服務(wù),進(jìn)行時間同步,去匹配主服務(wù)器(ip地址)時間

    [root@slave1 ~]# systemctl start ntpd
    [root@slave1 ~]# systemctl stop firewalld
    [root@slave1 ~]# setenforce 0
    [root@slave1 ~]# systemctl enable ntpd
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
    [root@slave1 ~]# /usr/sbin/ntpdate 192.168.247.160
    8 Jan 18:39:26 ntpdate[114393]: the NTP socket is in use, exiting

    slave1同步完成,接下來同步slave2

    [root@slave2 ~]# systemctl start ntpd
    [root@slave2 ~]# systemctl enable ntpd
    Created symlink from /etc/systemd/system/multi-user.target.wants/ntpd.service to /usr/lib/systemd/system/ntpd.service.
    [root@slave2 ~]# systemctl stop firewalld
    [root@slave2 ~]# setenforce 0
    [root@slave2 ~]# /usr/sbin/ntpdate 192.168.247.160
    8 Jan 18:40:38 ntpdate[82655]: the NTP socket is in use, exiting

    接下來就是安裝MySQL和優(yōu)化的過程
    由于過程冗雜,詳細(xì)過程請查看本人之前博客:
    https://blog.51cto.com/14557905/2458283

安裝mysql完畢,并且做完一系列優(yōu)化
開始做主從同步
1.修改主服務(wù)器配置文件

[root@master mysql-5.6.26]# vim /etc/my.cnf
//寫在mysqld下
log-bin=master-bin
//上面是開啟二進(jìn)制文件
log-slave-update=true
//開啟從服務(wù)器更新
server-id       = 11
//服務(wù)器id為11(id不可以重復(fù))

重啟服務(wù)

[root@master mysql-5.6.26]# service mysqld restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL.. SUCCESS! 

主服務(wù)器登陸mysql,給從服務(wù)器創(chuàng)建用戶并且允許復(fù)制所有數(shù)據(jù)(ON . )

[root@master mysql-5.6.26]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.

mysql> GRANT REPLICATION SLAVE ON *.* TO 'myslave'@'192.168.247.%' IDENTIFIED BY 'abc123';
//允許 復(fù)制,從服務(wù)器以myslave用戶的身份,從192.168.247.0的網(wǎng)段,使用abc123的密碼,去復(fù)制所有的數(shù)據(jù)庫以及下面的表(*.*)
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
//刷新數(shù)據(jù)庫
Query OK, 0 rows affected (0.00 sec)

mysql> show master status;
//查看主服務(wù)器的位置點(diǎn),從服務(wù)器的同步位置點(diǎn)就是下面的412
+-------------------+----------+--------------+------------------+-------------------+
| File              | Position | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+-------------------+----------+--------------+------------------+-------------------+
| master-bin.000001 |      412 |              |                  |                   |
+-------------------+----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)

配置從服務(wù)器slave1,服務(wù)器id不能一致,開啟中繼日志,索引中繼日志

[root@slave1 mysql-5.6.26]# vim /etc/my.cnf
[mysqld]
//寫在mysqld下
log-bin=mysql-bin
server-id       = 22
//另一臺slave2 id 為23
relay-log=relay-log-bin
relay-log-index=slave-relay-bin.index
[root@slave1 mysql-5.6.26]# service mysqld restart
Shutting down MySQL.. SUCCESS! 
Starting MySQL.. SUCCESS! 

從服務(wù)器登陸mysql,添加主服務(wù)器(ip地址,使用主服務(wù)器的賬戶mysalve,輸入主服務(wù)器賬戶的密碼,確定同步的二進(jìn)制文件,同步的位置點(diǎn))

[root@slave1 mysql-5.6.26]# mysql -uroot -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.

mysql> change master to master_host='192.168.247.160',master_user='myslave',master_password='abc123',master_log_file='master-bin.000001',master_log_pos=412;
//添加主服務(wù)器
Query OK, 0 rows affected, 2 warnings (0.01 sec)

開啟從服務(wù)器功能

mysql> start slave;
Query OK, 0 rows affected (0.01 sec)

查看從服務(wù)器狀態(tài)

mysql> show slave status\G
*************************** 1. row ***************************
               Slave_IO_State: Waiting for master to send event
                  Master_Host: 192.168.247.160
                  Master_User: myslave
                  Master_Port: 3306
                Connect_Retry: 60
              Master_Log_File: master-bin.000001
          Read_Master_Log_Pos: 412
               Relay_Log_File: relay-log-bin.000002
                Relay_Log_Pos: 284
        Relay_Master_Log_File: master-bin.000001
‘             Slave_IO_Running: Yes         //顯示slave功能已開啟
‘            Slave_SQL_Running: Yes         //顯示slave功能已開啟
          Exec_Master_Log_Pos: 412
              Relay_Log_Space: 455
             Master_Server_Id: 11
                  Master_UUID: e9a82741-3223-11ea-af25-000c29524d89
             Master_Info_File: /home/mysql/master.info
                    SQL_Delay: 0
          SQL_Remaining_Delay: NULL
      Slave_SQL_Running_State: Slave has read all relay log; waiting for the slave I/O thread to update it
           Master_Retry_Count: 86400
1 row in set (0.00 sec)

同步配置完成,接下來測試
主服務(wù)器,創(chuàng)建一個school數(shù)據(jù)庫

mysql> create database school;
Query OK, 1 row affected (0.00 sec)

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| school             |
| test               |
+--------------------+
5 rows in set (0.00 sec)

從服務(wù)器直接查看

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| school             |
| test               |
+--------------------+
5 rows in set (0.00 sec)

以上就是MySQL的主從復(fù)制介紹以及MySQL服務(wù)器實(shí)現(xiàn)主從同步的方法,看完之后是否有所收獲呢?如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊!

新聞名稱:MySQL的主從復(fù)制是什么?怎么實(shí)現(xiàn)MySQL服務(wù)器的主從同步?
瀏覽路徑:http://jinyejixie.com/article8/poseop.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、動態(tài)網(wǎng)站關(guān)鍵詞優(yōu)化、靜態(tài)網(wǎng)站自適應(yīng)網(wǎng)站、App設(shè)計(jì)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都定制網(wǎng)站建設(shè)
北辰区| 永靖县| 大荔县| 钦州市| 辽宁省| 阳东县| 博湖县| 视频| 三明市| 安义县| 长葛市| 宿州市| 长汀县| 昌平区| 甘谷县| 辰溪县| 天长市| 桓仁| 铅山县| 衡水市| 荔浦县| 商都县| 平远县| 太谷县| 井冈山市| 建湖县| 曲松县| 白城市| 弋阳县| 射洪县| 林芝县| 新晃| 万荣县| 清水河县| 漯河市| 汶上县| 昌邑市| 扶余县| 阿拉善盟| 崇礼县| 文安县|