婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > mariadb的主從復(fù)制、主主復(fù)制、半同步復(fù)制配置詳解

mariadb的主從復(fù)制、主主復(fù)制、半同步復(fù)制配置詳解

熱門標(biāo)簽:安陽手機(jī)自動(dòng)外呼系統(tǒng)原理是什么 地圖標(biāo)注專員入駐 如何辦理400客服電話 外呼系統(tǒng)怎樣才能不封號 外呼系統(tǒng)線路經(jīng)常出問題嗎 西藏地圖標(biāo)注改進(jìn)點(diǎn) 地圖標(biāo)注什么軟件好用 地圖標(biāo)注百度競價(jià) 神行者百貨商場地圖標(biāo)注

主從服務(wù)器的時(shí)間要同步,數(shù)據(jù)庫版本最好是一致的,以免造成函數(shù)處理、日志讀取、日志解析等發(fā)生異常。

以下三個(gè)主從復(fù)制的設(shè)置是獨(dú)立的。

注意防火墻和selinux的影響。

1、簡單主從復(fù)制的實(shí)現(xiàn)

(1)主服務(wù)器的配置

1)安裝mariadb-server

[root@localhost ~]# yum -y install mariadb-server

2)編輯/etc/my.cnf文件

[root@localhost ~]# vim /etc/my.cnf

    在[mysqld]段的最后添加以下內(nèi)容

    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 1 (id號不能跟從服務(wù)器相同)
    log-bin = master-log (自定義二進(jìn)制日志文件名)

3)授權(quán)可以復(fù)制本地?cái)?shù)據(jù)庫信息的主機(jī)

[root@localhost ~]# systemctl start mariadb.service (啟動(dòng)mariadb server)

[root@localhost ~]# mysql
 MariaDB [(none)]> grant replication slave,replication client on *.* to 'repluser'@'10.1.51.%' identified by 'replpasswd';
 MariaDB [(none)]> flush privileges;

MariaDB [(none)]> show master status\G (查看主服務(wù)器的狀態(tài)信息,在從服務(wù)器中要用到)
*************************** 1. row ***************************
   File: master-log.000003 (正在使用的二進(jìn)制日志文件)
  Position: 497 (所處的位置)
 Binlog_Do_DB: 
Binlog_Ignore_DB:

(2)從服務(wù)器的配置

1)安裝mariadb-server

[root@localhost ~]# yum -y install mariadb-server

2)編輯/etc/my.cnf文件

[root@localhost ~]# vim /etc/my.cnf

    在[mysqld]段的最后添加以下內(nèi)容

    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 2 (id號不能跟主服務(wù)器相同)
    relay-log = slave-log (自定義二進(jìn)制日志文件名)

3)設(shè)置要從哪個(gè)主服務(wù)器的那個(gè)位置開始同步

[root@localhost ~]# systemctl start mariadb.service

[root@localhost ~]# mysql
 MariaDB [(none)]> change master to master_host='10.1.51.60',master_user='repluser',master_password='replpasswd',master_log_file='master-log.000003',master_log_pos=497;

MariaDB [(none)]> start slave; (啟動(dòng)復(fù)制功能)
MariaDB [(none)]> show slave status\G (查看從服務(wù)器的狀態(tài),下面顯示的是部分內(nèi)容)
 Master_Host: 10.1.51.60
 Master_User: repluser
 Master_Port: 3306
 Connect_Retry: 60
 Master_Log_File: master-log.000003
 Read_Master_Log_Pos: 497
 Relay_Log_File: slave-log.000002
 Relay_Log_Pos: 530
 Relay_Master_Log_File: master-log.000003
 Slave_IO_Running: Yes 
 Slave_SQL_Running: Yes
 Master_Server_Id: 1

(3)測試

1)在主服務(wù)器導(dǎo)入事先準(zhǔn)備好的數(shù)據(jù)庫

[root@localhost ~]# mysql hellodb.sql

2)在從服務(wù)器查看是否同步

MariaDB [(none)]> show databases;
+--------------------+
| Database   |
+--------------------+
| information_schema |
| hellodb   |(數(shù)據(jù)庫已經(jīng)同步)
| mysql    |
| performance_schema |
| test    |
+--------------------+
MariaDB [(none)]> use hellodb;
MariaDB [hellodb]> show tables; (hellodb數(shù)據(jù)庫的表也是同步的)
+-------------------+
| Tables_in_hellodb |
+-------------------+
| classes   |
| coc    |
| courses   |
| scores   |
| students   |
| teachers   |
| toc    |
+-------------------+

2、雙主復(fù)制的實(shí)現(xiàn)

(1)服務(wù)器1的配置

1)安裝mariadb-server

[root@localhost ~]# yum -y install mariadb-server

2)編輯/etc/my.cnf文件

[root@localhost ~]# vim /etc/my.cnf

    在[mysqld]段的最后添加以下內(nèi)容

    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 1 (id號不能跟從服務(wù)器相同)
    log-bin = master-log (自定義主服務(wù)器的二進(jìn)制日志文件名)
    relay-log = slave-log (自定義從服務(wù)器的二進(jìn)制日志文件名)
    auto_increment_offset = 1
    auto_increment_increment = 2

3)在服務(wù)器2上查看的master狀態(tài)

MariaDB [(none)]> show master status\G
*************************** 1. row ***************************
   File: master-log.000003
  Position: 422
 Binlog_Do_DB: 
Binlog_Ignore_DB:

4)啟動(dòng)mariadb server并進(jìn)行如下配置

[root@localhost ~]# systemctl start mariadb.service

[root@localhost ~]# mysql

 MariaDB [(none)]> grant replication slave,replication client on *.* to 'repluser'@'10.1.51.%' identified by 'replpasswd';

 MariaDB [(none)]> change master to master_host='10.1.51.50',master_user='repluser',master_password='replpasswd',master_log_file='master-log.000003',master_log_pos=422;

 MariaDB [(none)]> start slave;

 MariaDB [(none)]> SHOW SLAVE STATUS\G (僅是部分內(nèi)容)
  Master_Host: 10.1.51.50
  Master_User: repluser
  Master_Port: 3306
  Connect_Retry: 60
  Master_Log_File: master-log.000003
  Read_Master_Log_Pos: 422
  Relay_Log_File: slave-log.000002
  Relay_Log_Pos: 530
  Relay_Master_Log_File: master-log.000003
  Slave_IO_Running: Yes
  Slave_SQL_Running: Yes
  Master_Server_Id: 2

(2)服務(wù)器2的配置

1)安裝mariadb-server

[root@localhost ~]# yum -y install mariadb-server

2)編輯/etc/my.cnf文件

[root@localhost ~]# vim /etc/my.cnf
    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 2
    relay-log = slave-log
    lob-bin = master-log
    auto_increment_offset = 2
    auto_increment_increment = 2

3)在服務(wù)器1查看master狀態(tài)

MariaDB [(none)]> show master status\G
*************************** 1. row ***************************
            File: master-log.000003
        Position: 245
    Binlog_Do_DB:
Binlog_Ignore_DB:

4)啟動(dòng)mariadb server并配置

[root@localhost ~]# systemctl start mariadb.service

[root@localhost ~]# mysql

 MariaDB [(none)]> grant replication slave,replication client on *.* to 'repluser'@'10.1.51.%' identified by 'replpasswd';

 MariaDB [(none)]> change master to master_host='10.1.51.60',master_user='repluser',master_password='replpasswd',master_log_file='master-log.000003',master_log_pos=245;

 MariaDB [(none)]> start slave;

 MariaDB [(none)]> show slave status\G (僅是部分內(nèi)容) 
  Master_Host: 10.1.51.60
  Master_User: repluser
  Master_Port: 3306
  Connect_Retry: 60
  Master_Log_File: master-log.000003
  Read_Master_Log_Pos: 422
  Relay_Log_File: slave-log.000003
  Relay_Log_Pos: 530
  Relay_Master_Log_File: master-log.000003
  Slave_IO_Running: Yes
  Slave_SQL_Running: Yes
  Master_Server_Id: 1

(3)測試

1)在任意一臺服務(wù)器上創(chuàng)建mydb數(shù)據(jù)庫

MariaDB [(none)]> create database mydb;

2)在另一臺服務(wù)器上查看

MariaDB [(none)]> show databases;
+--------------------+
| Database   |
+--------------------+
| information_schema |
| mydb    |
| mysql    |
| performance_schema |
| test    |
+--------------------+

3、半同步復(fù)制的實(shí)現(xiàn)

(1)在主服務(wù)器上的配置

1)安裝mariadb-server

[root@localhost ~]# yum -y install mariadb-server

2)編輯/etc/my.cnf

[root@localhost ~]# vim /etc/my.cnf
    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 1
    log-bin = master-log

3)授權(quán)可以復(fù)制本地?cái)?shù)據(jù)庫信息的主機(jī)

[root@localhost ~]# systemctl start mariadb.service (啟動(dòng)mariadb server)

[root@localhost ~]# mysql
 MariaDB [(none)]> grant replication slave,replication client on *.* to 'repluser'@'10.1.51.%' identified by 'replpasswd';
 MariaDB [(none)]> flush privileges;

MariaDB [(none)]> show master status\G (查看主服務(wù)器的狀態(tài)信息,在從服務(wù)器中要用到)
*************************** 1. row ***************************
   File: master-log.000003 (正在使用的二進(jìn)制日志文件)
  Position: 245 (所處的位置)
 Binlog_Do_DB: 
Binlog_Ignore_DB:

4)安裝rpl semi sync_master插件,并啟用

[root@localhost ~]# mysql

MariaDB [(none)]> install plugin rpl_semi_sync_master soname 'semisync_master.so';
MariaDB [(none)]> set global rpl_semi_sync_master_enabled = ON;

補(bǔ)充:

MariaDB [(none)]> show plugins;(可查看插件是否激活)
MariaDB [(none)]> show global variables like 'rpl_semi%';(可查看安裝的插件是否啟用)
MariaDB [(none)]> show global status like '%semi%';(可查看從服務(wù)器的個(gè)數(shù),此時(shí)是0個(gè))

(2)從服務(wù)器的配置

1)安裝mariadb-server

[root@localhost ~]# yum -y install mariadb-server

2)編輯/etc/my.cnf文件

[root@localhost ~]# vim /etc/my.cnf

    在[mysqld]段的最后添加以下內(nèi)容

    skip_name_resolve = ON
    innodb_file_per_table = ON
    server-id = 2 (id號不能跟主服務(wù)器相同)
    relay-log = slave-log (自定義二進(jìn)制日志文件名)

3)設(shè)置要從哪個(gè)主服務(wù)器的那個(gè)位置開始同步

[root@localhost ~]# systemctl start mariadb.service

[root@localhost ~]# mysql

 MariaDB [(none)]> change master to master_host='10.1.51.60',master_user='repluser',master_password='replpasswd',master_log_file='master-log.000003',master_log_pos=245;

4)安裝rpl semi sync_slave插件并啟用

[root@localhost ~]# mysql 

 MariaDB [(none)]> install plugin rpl_semi_sync_slave soname 'semisync_slave.so';
 MariaDB [(none)]> set global rpl_semi_sync_slave_enabled = ON;
 MariaDB [(none)]> start slave;

完成上面配置后,可以在主服務(wù)器上查看半同步復(fù)制的相關(guān)信息,命令如下:

MariaDB [(none)]> show global status like '%semi%';
 Rpl_semi_sync_master_clients 1 (從服務(wù)器有一臺)

(3)測試

測試以個(gè)人實(shí)際情況而定
1)在主服務(wù)器上導(dǎo)入事先準(zhǔn)備好的數(shù)據(jù)庫hellodb.sql

MariaDB [hellodb]> source /root/hellodb.sql;

2)在主服務(wù)器上查看半同步復(fù)制的狀態(tài)

MariaDB [hellodb]> show master status;
+-------------------+----------+--------------+------------------+
| File    | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-------------------+----------+--------------+------------------+
| master-log.000003 |  8102 |    |     |
+-------------------+----------+--------------+------------------+

MariaDB [hellodb]> show global status like '%semi%';
+--------------------------------------------+-------+
| Variable_name        | Value |
+--------------------------------------------+-------+
| Rpl_semi_sync_master_clients    | 1  |
| Rpl_semi_sync_master_net_avg_wait_time  | 1684 |
| Rpl_semi_sync_master_net_wait_time   | 60630 |
| Rpl_semi_sync_master_net_waits    | 36 |
| Rpl_semi_sync_master_no_times    | 1  |
| Rpl_semi_sync_master_no_tx     | 1  |
| Rpl_semi_sync_master_status    | ON |
| Rpl_semi_sync_master_timefunc_failures  | 0  |
| Rpl_semi_sync_master_tx_avg_wait_time  | 1884 |
| Rpl_semi_sync_master_tx_wait_time   | 65965 |
| Rpl_semi_sync_master_tx_waits    | 35 |
| Rpl_semi_sync_master_wait_pos_backtraverse | 0  |
| Rpl_semi_sync_master_wait_sessions   | 0  |
| Rpl_semi_sync_master_yes_tx    | 35 |
+--------------------------------------------+-------+

3)在從服務(wù)器上查看是否同步

MariaDB [(none)]> show databases;
MariaDB [(none)]> use hellodb;
MariaDB [hellodb]> select * from students;

補(bǔ)充:基于上面的半同步復(fù)制配置復(fù)制的過濾器,復(fù)制過濾最好在從服務(wù)器上設(shè)置,步驟如下

(1)從服務(wù)器的配置

1)關(guān)閉mariadb server

[root@localhost ~]# systemctl stop mariadb.service

2)編輯/etc/my.cnf文件

[root@localhost ~]# vim /etc/my.cnf
 skip_name_resolve = ON
 innodb_file_per_table = ON
 server-id = 2
 relay-log = slave-log
 replicate-do-db = mydb (只復(fù)制mydb數(shù)據(jù)庫的內(nèi)容)

補(bǔ)充:常用的過濾選項(xiàng)如下

    Replicate_Do_DB=
    Replicate_Ignore_DB=
    Replicate_Do_Table=
    Replicate_Ignore_Table=
    Replicate_Wild_Do_Table=
    Replicate_Wild_Ignore_Table=

3)重啟mariadb server

[root@localhost ~]# systemctl start mariadb.service

4)重啟mariadb server后,半同步復(fù)制功能將被關(guān)閉,因此要重新啟動(dòng)

MariaDB [(none)]> show global variables like '%semi%';
+---------------------------------+-------+
| Variable_name     | Value |
+---------------------------------+-------+
| rpl_semi_sync_slave_enabled  | OFF |
| rpl_semi_sync_slave_trace_level | 32 |
+---------------------------------+-------+

MariaDB [(none)]> set global rpl_semi_sync_slave_enabled = ON;
MariaDB [(none)]> stop slave;(需先關(guān)閉從服務(wù)器復(fù)制功能再重啟)
MariaDB [(none)]> start slave;

(2)測試

1)主服務(wù)器上的hellodb數(shù)據(jù)庫創(chuàng)建一個(gè)新表semitable

MariaDB [hellodb]> create table semitable (id int);

2)在從服務(wù)器上查看hellodb數(shù)據(jù)庫是否有semitable

MariaDB [(none)]> use hellodb
MariaDB [hellodb]> show tables;(并沒有)
+-------------------+
| Tables_in_hellodb |
+-------------------+
| classes   |
| coc    |
| courses   |
| scores   |
| students   |
| teachers   |
| toc    |
+-------------------+

3)在主服務(wù)器上創(chuàng)建mydb數(shù)據(jù)庫,并為其創(chuàng)建一個(gè)tbl1表

MariaDB [hellodb]> create database mydb;

4)在從服務(wù)器上查看mydb數(shù)據(jù)庫的是否有tbl1表

MariaDB [hellodb]> use mydb;
MariaDB [mydb]> show tables; (可以查看到)
+----------------+
| Tables_in_mydb |
+----------------+
| tbl1   |
+----------------+

您可能感興趣的文章:
  • 淺談MySQL和mariadb區(qū)別
  • centos 7安裝mysql5.5和安裝 mariadb使用的命令
  • Centos7 下mysql重新啟動(dòng)MariaDB篇
  • Mac中MariaDB數(shù)據(jù)庫的安裝步驟
  • CentOS安裝和設(shè)置MariaDB的教程
  • 關(guān)于MariaDB安裝問題小記(CMake Error at)
  • 記一次mariadb數(shù)據(jù)庫無法連接
  • CentOS 7中成功安裝MariaDB的方法教程
  • MariaDB性能調(diào)優(yōu)工具mytop的使用詳解
  • MariaDB數(shù)據(jù)庫的外鍵約束實(shí)例詳解

標(biāo)簽:AXB 張掖 貴港 萍鄉(xiāng) 雞西 阜陽 酒泉 衡水

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《mariadb的主從復(fù)制、主主復(fù)制、半同步復(fù)制配置詳解》,本文關(guān)鍵詞  mariadb,的,主從,復(fù)制,主主,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《mariadb的主從復(fù)制、主主復(fù)制、半同步復(fù)制配置詳解》相關(guān)的同類信息!
  • 本頁收集關(guān)于mariadb的主從復(fù)制、主主復(fù)制、半同步復(fù)制配置詳解的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    九一九一国产精品| www.在线成人| 日本乱码高清不卡字幕| 国产精品久久一级| 91免费看片在线观看| 中文字幕欧美激情一区| 国产馆精品极品| 久久久午夜电影| 成人午夜免费电影| 伊人开心综合网| 欧美中文字幕不卡| 午夜精品在线视频一区| 91精品国产综合久久精品| 麻豆精品新av中文字幕| 欧美国产丝袜视频| 在线免费视频一区二区| 日韩成人一级片| 欧美xxxxxxxxx| 成人丝袜高跟foot| 亚洲一区二区三区四区中文字幕 | 日本电影亚洲天堂一区| 五月天中文字幕一区二区| 欧美大片在线观看一区二区| 国产福利一区二区三区视频| 亚洲欧美中日韩| 欧美伦理电影网| 国产自产高清不卡| 久久综合狠狠综合久久激情 | 视频一区中文字幕国产| 精品久久久久久久久久久久久久久久久| 麻豆一区二区在线| 亚洲乱码日产精品bd| 日韩一级大片在线| 色婷婷综合中文久久一本| 久久爱另类一区二区小说| 18涩涩午夜精品.www| 日韩午夜av电影| 欧美天天综合网| 成人av网站在线| 美日韩一级片在线观看| 亚洲一区二区三区四区五区中文| 国产亚洲精品bt天堂精选| 欧美群妇大交群中文字幕| 丁香天五香天堂综合| 蜜桃视频免费观看一区| 亚洲一区在线观看网站| 欧美极品美女视频| 精品国产91亚洲一区二区三区婷婷| 91影院在线观看| 国产成人一区二区精品非洲| 精品一区二区免费视频| 午夜av一区二区| 亚洲成av人片一区二区梦乃| 亚洲人成7777| 中文字幕在线不卡| 亚洲手机成人高清视频| 国产精品伦理在线| 亚洲精品一区二区三区福利 | 美女视频黄 久久| 亚洲va在线va天堂| 亚洲一区二区五区| 亚洲成人免费观看| 五月天欧美精品| 亚洲成a人片在线观看中文| 亚洲欧美偷拍三级| 亚洲女人的天堂| 亚洲精品中文字幕在线观看| 一区二区三区四区亚洲| 亚洲欧美另类久久久精品2019| 国产精品久久久久久久第一福利| 国产蜜臀av在线一区二区三区| 国产日韩精品一区二区浪潮av| 精品国产乱码久久久久久影片| 精品国产乱码久久久久久影片| 2022国产精品视频| 国产欧美精品在线观看| 亚洲免费在线视频一区 二区| 亚洲女厕所小便bbb| 亚洲成av人片一区二区| 久久精品国产99| 国产成人精品影院| 色综合久久久久| 欧美一级一区二区| 久久久久国色av免费看影院| 国产精品美女久久久久久久网站| 亚洲免费高清视频在线| 午夜精品福利在线| 国内久久精品视频| 色婷婷精品大在线视频| 日韩一级片在线播放| 国产日产欧美精品一区二区三区| 自拍偷拍国产精品| 日本欧美加勒比视频| 国产剧情一区在线| 欧美日韩一区国产| 国产亚洲欧美一级| 亚洲成a人v欧美综合天堂下载| 国产一区亚洲一区| 在线免费亚洲电影| 久久亚区不卡日本| 五月天精品一区二区三区| 国产成a人亚洲| 在线播放欧美女士性生活| 欧美激情一二三区| 日本欧美一区二区| 一本色道综合亚洲| 欧美国产激情一区二区三区蜜月| 亚洲午夜久久久久久久久电影网| 国产精品一色哟哟哟| 欧美精品粉嫩高潮一区二区| 国产精品国产成人国产三级| 久久精品999| 欧美裸体一区二区三区| 亚洲视频一二区| 国精产品一区一区三区mba桃花| 欧美日韩在线播放三区| 亚洲少妇30p| 激情丁香综合五月| 日韩一区二区三区电影| 一区二区三区在线视频播放| 国产成人一区在线| www国产成人免费观看视频 深夜成人网 | 在线观看网站黄不卡| 精品国产三级电影在线观看| 亚洲第一主播视频| 日本伦理一区二区| 亚洲欧美日韩国产另类专区| 国产精一品亚洲二区在线视频| 欧美一二三四在线| 性做久久久久久久免费看| 色婷婷综合久色| 亚洲免费三区一区二区| 91丨国产丨九色丨pron| 国产精品久久久久精k8| 成人午夜视频免费看| 日本一区二区电影| www.欧美日韩| 中文字幕亚洲在| 色悠久久久久综合欧美99| 亚洲欧洲性图库| 91黄色在线观看| 亚洲综合免费观看高清完整版| 97aⅴ精品视频一二三区| 国产精品色婷婷| 95精品视频在线| 亚洲柠檬福利资源导航| 91黄色激情网站| 亚洲国产日韩精品| 欧美老肥妇做.爰bbww视频| 水蜜桃久久夜色精品一区的特点 | 国产日韩欧美综合在线| 国产福利91精品一区| 国产精品久久久久久一区二区三区 | 久久久久国产精品厨房| 国产一区二区电影| 国产精品动漫网站| 欧美日韩高清在线| 精品一区二区在线免费观看| 欧美韩国日本不卡| 欧美特级限制片免费在线观看| 日韩国产欧美在线视频| 久久精品日韩一区二区三区| 99国产精品国产精品毛片| 亚洲国产精品嫩草影院| www欧美成人18+| 一本到不卡精品视频在线观看| 天天色 色综合| 国产亚洲精品bt天堂精选| 色婷婷亚洲婷婷| 激情欧美一区二区三区在线观看| 日韩毛片在线免费观看| 欧美一区二区视频在线观看2022 | 久久久精品影视| 色呦呦国产精品| 精品一区二区日韩| 夜夜嗨av一区二区三区四季av| 精品国产一区二区三区四区四 | 日韩一区和二区| 丁香婷婷深情五月亚洲| 日韩电影一区二区三区四区| 国产精品高潮呻吟久久| 欧美成人女星排名| 日本电影欧美片| 国产成人精品aa毛片| 日韩电影在线一区二区三区| 国产精品国产三级国产专播品爱网| 91精品国产综合久久久蜜臀图片 | 国产91高潮流白浆在线麻豆| 午夜视频在线观看一区| 1000精品久久久久久久久| 久久精品夜色噜噜亚洲a∨| 欧美绝品在线观看成人午夜影视| 成人黄色片在线观看| 国产另类ts人妖一区二区| 日韩高清中文字幕一区| 一区二区欧美在线观看| 国产精品蜜臀在线观看| 国产色婷婷亚洲99精品小说| 欧美一区二区三区四区在线观看| 色播五月激情综合网|