亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL數據庫實現遠程同步的工具alibaba otter

發布時間:2020-06-03 15:46:57 來源:網絡 閱讀:1333 作者:三月 欄目:MySQL數據庫

本篇文章給大家主要講的是關于MySQL數據庫實現遠程同步的工具alibaba otter的內容,感興趣的話就一起來看看這篇文章吧,相信看完MySQL數據庫實現遠程同步的工具alibaba otter對大家多少有點參考價值吧。

[root@wallet01 ~]# tar zxvf zookeeper-3.4.14.tar.gz -C /usr/local/
[root@wallet01 ~]# cd /usr/local/zookeeper-3.4.14/conf
[root@wallet01 conf]# mv zoo_sample.cfg zoo.cfg

[root@wallet01 conf]# vi log4j.properties
log4j.rootLogger=INFO,ROLLINGFILE

[root@wallet01 ~]# cd /usr/local/zookeeper-3.4.14/bin
[root@wallet01 bin]# vi zkEnv.sh
if [ "x${ZOO_LOG_DIR}" = "x" ]
then
    ZOO_LOG_DIR="/usr/local/zookeeper-3.4.14/logs"
fi
if [ "x${ZOO_LOG4J_PROP}" = "x" ]
then
    ZOO_LOG4J_PROP="INFO,ROLLINGFILE"
fi

[root@wallet01 ~]# mkdir -p /usr/local/zookeeper-3.4.14/logs

[root@wallet01 ~]# vi /etc/profile
PATH=$PATH:/usr/local/zookeeper-3.4.14/bin

[root@wallet01 ~]# zkServer.sh start
ZooKeeper JMX enabled by default
Using config: /usr/local/zookeeper-3.4.14/bin/../conf/zoo.cfg
Starting zookeeper ... STARTED

[root@wallet01 ~]# zkServer.sh status
ZooKeeper JMX enabled by default
Using config: /usr/local/zookeeper-3.4.14/bin/../conf/zoo.cfg
Mode: standalone

[root@wallet01 ~]# yum install -y nc
[root@wallet01 ~]# wget https://raw.github.com/alibaba/otter/master/manager/deployer/src/main/resources/sql/otter-manager-schema.sql --no-check-certificate

[root@wallet01 ~]# mysql -uroot -pabcd.1234
mysql> source otter-manager-schema.sql

mysql> create user otter@'%' identified by "otter";
Query OK, 0 rows affected (0.08 sec)

mysql> grant all on otter.* to otter@'%'
Query OK, 0 rows affected (0.00 sec)

[root@wallet01 ~]# mkdir -p /usr/local/manager
[root@wallet01 ~]# tar zxvf manager.deployer-4.2.17.tar.gz -C /usr/local/manager
[root@wallet01 ~]# cd /usr/local/manager/conf/
[root@wallet01 conf]# vi otter.properties 
## otter manager domain name
otter.domainName = 192.168.40.34

## otter manager http port
otter.port = 8080

## otter manager database config
otter.database.driver.class.name = com.mysql.jdbc.Driver
otter.database.driver.url = jdbc:mysql://127.0.0.1:3306/otter
otter.database.driver.username = otter
otter.database.driver.password = otter

## otter communication port
otter.communication.manager.port = 1099

## default zookeeper address
otter.zookeeper.cluster.default = 192.168.40.34:2181

## default zookeeper sesstion timeout = 60s
otter.zookeeper.sessionTimeout = 60000

[root@wallet01 ~]# cd /usr/local/manager/bin
[root@wallet01 bin]# ./startup.sh

[root@wallet01 ~]# cd /usr/local/manager/logs
[root@wallet01 logs]# cat manager.log
2018-11-19 10:29:26.146 [] INFO  com.alibaba.otter.manager.deployer.OtterManagerLauncher - ## start the manager server.
2018-11-19 10:29:49.427 [] INFO  com.alibaba.otter.manager.deployer.JettyEmbedServer - ##Jetty Embed Server is startup!
2018-11-19 10:29:49.427 [] INFO  com.alibaba.otter.manager.deployer.OtterManagerLauncher - ## the manager server is running now ......

[root@wallet02 ~]# mkdir -p /usr/local/node
[root@wallet02 ~]# tar zxvf node.deployer-4.2.17.tar.gz -C /usr/local/node
[root@wallet02 ~]# cd /usr/local/node/conf/
[root@wallet02 conf]# echo 1 > nid

[root@wallet02 conf]# vi otter.properties 
## otter arbitrate & node connect manager config
otter.manager.address = 192.168.40.34:1099

[root@wallet02 ~]# cd /usr/local/node/bin
[root@wallet02 bin]# ./startup.sh

[root@wallet02 ~]# cd /usr/local/node/logs/node
[root@wallet02 node]# cat node.log 
2018-11-19 10:58:09.830 [main] INFO  com.alibaba.otter.node.deployer.OtterLauncher - INFO ## the otter server is running now ......

[root@wallet02 ~]# mysql -uroot -pabcd.1234
mysql> create user otter@'%' identified by "otter";
Query OK, 0 rows affected (0.08 sec)

mysql> grant replication slave,replication client on *.* to otter@'%';
Query OK, 0 rows affected (0.02 sec)

mysql> grant all on tpcc.* to otter@'%';
Query OK, 0 rows affected (0.03 sec)


[root@wallet03 ~]# mkdir -p /usr/local/node
[root@wallet03 ~]# tar zxvf node.deployer-4.2.17.tar.gz -C /usr/local/node
[root@wallet03 ~]# cd /usr/local/node/conf
[root@wallet03 conf]# echo 2 > nid

[root@wallet03 conf]# vi otter.properties 
## otter arbitrate & node connect manager config
otter.manager.address = 192.168.40.34:1099

[root@wallet03 ~]# cd /usr/local/node/bin
[root@wallet03 bin]# ./startup.sh

[root@wallet03 ~]# cd /usr/local/node/logs/node
[root@wallet03 node]# cat node.log 
2018-11-19 10:58:09.830 [main] INFO  com.alibaba.otter.node.deployer.OtterLauncher - INFO ## the otter server is running now ......

[root@wallet03 ~]# mysql -uroot -pabcd.1234
mysql> create user otter@'%' identified by "otter";
Query OK, 0 rows affected (0.08 sec)

mysql> grant replication slave,replication client on *.* to otter@'%';
Query OK, 0 rows affected (0.02 sec)

mysql> grant all on tpcc.* to otter@'%';
Query OK, 0 rows affected (0.03 sec)

默認用戶名:admin        默認密碼:admin

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

[root@wallet02 ~]# mysql -uroot -pabcd.1234
mysql> show master status;
+------------------+-----------+--------------+------------------+-------------------+
| File             | Position  | Binlog_Do_DB | Binlog_Ignore_DB | Executed_Gtid_Set |
+------------------+-----------+--------------+------------------+-------------------+
| mysql-bin.000005 | 100046965 |              |                  |                   |
+------------------+-----------+--------------+------------------+-------------------+
1 row in set (0.00 sec)

mysql> select unix_timestamp(now());
+-----------------------+
| unix_timestamp(now()) |
+-----------------------+
|            1556009946 |
+-----------------------+
1 row in set (0.00 sec)

{"journalName":"mysql-bin.000005","position":100046965,"timestamp":1556009946};

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

MySQL數據庫實現遠程同步的工具alibaba otter

以上關于MySQL數據庫實現遠程同步的工具alibaba otter詳細內容,對大家有幫助嗎?如果想要了解更多相關,可以繼續關注我們的行業資訊板塊。


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

华池县| 宜兰市| 兴仁县| 乌拉特后旗| 额济纳旗| 克东县| 宁城县| 贵定县| 金山区| 南充市| 丹阳市| 萍乡市| 咸阳市| 齐齐哈尔市| 平安县| 龙胜| 新竹市| 邢台县| 绥棱县| 北流市| 西畴县| 武胜县| 渭南市| 苍梧县| 青阳县| 余江县| 通州区| 波密县| 习水县| 社旗县| 丹东市| 克拉玛依市| 清水河县| 信丰县| 塘沽区| 潍坊市| 井研县| 承德市| 罗定市| 油尖旺区| 浦东新区|