@@ -37,8 +37,7 @@ Sakura-DBCは、内部的に以下の4つの状態を持ち、状況に応じて
37
37
## BGP経路の属性
38
38
39
39
Sakura-DBCは、BGP経路のCommunity属性として表現することで、他のノードに自身の状態を広告します。
40
-
41
- vtyshコマンドを経由してFRRouting bgpdの設定を変更し、経路広告を行います。
40
+ データベースサーバでは、デーモンとして起動するdb-controllerにgobgpが組み込まれており、BGPピアを確立します。
42
41
43
42
| 状態 | BGP Community |
44
43
| --------- | ------------- |
@@ -53,16 +52,16 @@ vtyshコマンドを経由してFRRouting bgpdの設定を変更し、経路広
53
52
Sakura-DBCを起動するには以下のようにコマンドを入力します。
54
53
55
54
```
56
- [root@test-db1 ~] # systemctl start sakura -controller
57
- [root@test-db1 ~] # systemctl status sakura -controller
58
- ● sakura -controller.service - Database Controller
59
- Loaded: loaded (/etc/systemd/system/sakura -controller.service; enabled; vendor preset: disabled)
55
+ # systemctl start db -controller
56
+ # systemctl status db -controller
57
+ ● db -controller.service - Database Controller
58
+ Loaded: loaded (/etc/systemd/system/db -controller.service; enabled; vendor preset: disabled)
60
59
Active: active (running) since Thu 2023-07-13 16:56:21 JST; 4s ago
61
- Main PID: 1391344 (sakura-controll )
60
+ Main PID: 1391344 (db-controller )
62
61
Tasks: 9 (limit: 24876)
63
62
Memory: 5.5M
64
- CGroup: /system.slice/sakura -controller.service
65
- └─1391344 /root/distributed-mariadb-controller/bin/sakura -controller --log-level info --db-repilica-password-filepath /root/.db-replica-password
63
+ CGroup: /system.slice/db -controller.service
64
+ └─1391344 /root/distributed-mariadb-controller/bin/db -controller --log-level info --db-repilica-password-filepath /root/.db-replica-password
66
65
<snip>
67
66
```
68
67
@@ -71,12 +70,12 @@ Sakura-DBCを起動するには以下のようにコマンドを入力します
71
70
Sakura-DBCを停止するには以下のようにコマンドを入力します。
72
71
73
72
```
74
- [root@test-db1 ~] # systemctl stop sakura -controller
75
- [root@test-db1 ~] # systemctl status sakura -controller
73
+ # systemctl stop db -controller
74
+ # systemctl status db -controller
76
75
● sakura-controller.service - Database Controller
77
- Loaded: loaded (/etc/systemd/system/sakura -controller.service; enabled; vendor preset: disabled)
76
+ Loaded: loaded (/etc/systemd/system/db -controller.service; enabled; vendor preset: disabled)
78
77
Active: inactive (dead) since Thu 2023-07-13 16:55:35 JST; 7s ago
79
- Process: 694 ExecStart=/root/distributed-mariadb-controller/bin/sakura -controller --log-level info --db-repilica-password-filepath /root/.db-replica-password (code=exited, status=0/SUCCESS)
78
+ Process: 694 ExecStart=/root/distributed-mariadb-controller/bin/db -controller --log-level info --db-repilica-password-filepath /root/.db-replica-password (code=exited, status=0/SUCCESS)
80
79
Main PID: 694 (code=exited, status=0/SUCCESS)
81
80
<snip>
82
81
```
@@ -86,15 +85,15 @@ Sakura-DBCを停止するには以下のようにコマンドを入力します
86
85
Sakura-DBCは、状態遷移や、それに伴い実行したコマンドなどをログ出力します。ログを確認するにはjournalctlコマンドを利用します。
87
86
88
87
```
89
- journalctl -u sakura -controller -e
88
+ # journalctl -u db -controller -e
90
89
```
91
90
92
91
## 現在の内部状態の確認方法
93
92
94
93
Sakura-DBCの現在の状態を確認するには、curlコマンドなどで以下のエンドポイントをHTTPリクエストします。
95
94
96
95
```
97
- [root@test-db1 ~] # curl http://127.0.0.1:54545/status
96
+ # curl http://127.0.0.1:54545/status
98
97
{"state":"replica"}
99
98
```
100
99
@@ -104,7 +103,7 @@ Sakura-DBCがGSLBに対し、どのようにレスポンスを行っているか
104
103
105
104
```
106
105
! primaryの場合(200 OKが返る)
107
- [root@test-db2 ~] # curl -v http://127.0.0.1:54545/healthcheck
106
+ # curl -v http://127.0.0.1:54545/healthcheck
108
107
* Connected to 127.0.0.1 (127.0.0.1) port 54545 (#0)
109
108
> GET /healthcheck HTTP/1.1
110
109
> Host: 127.0.0.1:54545
@@ -114,7 +113,7 @@ Sakura-DBCがGSLBに対し、どのようにレスポンスを行っているか
114
113
< Content-Length: 0
115
114
116
115
! primary以外の場合(503 Service Unavailableが返る)
117
- [root@test-db1 ~] # curl -v http://127.0.0.1:54545/healthcheck
116
+ # curl -v http://127.0.0.1:54545/healthcheck
118
117
* Connected to 127.0.0.1 (127.0.0.1) port 54545 (#0)
119
118
> GET /healthcheck HTTP/1.1
120
119
> Host: 127.0.0.1:54545
@@ -126,10 +125,12 @@ Sakura-DBCがGSLBに対し、どのようにレスポンスを行っているか
126
125
127
126
## BGP経路の確認方法
128
127
128
+ ### アンカーサーバ
129
+
129
130
BGPピアの状態を確認するには、以下のようにvtyshコマンドを用います。
130
131
131
132
```
132
- [root@test-db1 ~] # vtysh -c 'show ip bgp summary'
133
+ # vtysh -c 'show ip bgp summary'
133
134
134
135
IPv4 Unicast Summary (VRF default):
135
136
BGP router identifier xx.xx.xx.xx, local AS number 65001 vrf-id 0
@@ -147,7 +148,7 @@ Total number of neighbors 2
147
148
BGP経路情報を確認するには、以下のようにvtyshコマンドを用います。
148
149
149
150
```
150
- [root@test-db1 ~] # vtysh -c 'show ip bgp'
151
+ # vtysh -c 'show ip bgp'
151
152
BGP table version is 4, local router ID is xx.xx.xx.xx, vrf id 0
152
153
Default local pref 100, local AS 65001
153
154
Status codes: s suppressed, d damped, h history, * valid, > best, = multipath,
@@ -167,7 +168,7 @@ RPKI validation codes: V valid, I invalid, N Not found
167
168
168
169
Displayed 3 routes and 5 total paths
169
170
170
- [root@test-db1 ~] # vtysh -c 'show ip bgp community-list primary'
171
+ # vtysh -c 'show ip bgp community-list primary'
171
172
<snip>
172
173
173
174
Network Next Hop Metric LocPrf Weight Path
@@ -177,23 +178,47 @@ Displayed 3 routes and 5 total paths
177
178
Displayed 1 routes and 5 total paths
178
179
```
179
180
181
+ ### DBサーバ
182
+
183
+ BGPピアの状態を確認するには、以下のようにgobgpコマンドを用います。
184
+ db-controllerがgobgpのgRPCポート(50051)を待ち受けており、そこから情報が取得されます。
185
+
186
+ ```
187
+ # gobgp neighbor
188
+ Peer AS Up/Down State |#Received Accepted
189
+ xx.xx.xx.xx 65001 00:30:02 Establ | 1 1
190
+ xx.xx.xx.xx 65001 00:31:05 Establ | 3 2
191
+ ```
192
+
193
+ BGP経路情報を確認するには、以下のようにgobgpコマンドを用います。
194
+
195
+ ```
196
+ # gobgp global rib
197
+ Network Next Hop AS_PATH Age Attrs
198
+ *> xx.xx.xx.xx/32 xx.xx.xx.xx 00:34:41 [{Origin: i} {Communities: 65001:3}]
199
+ *> xx.xx.xx.xx/32 xx.xx.xx.xx 00:34:18 [{Origin: i} {LocalPref: 100} {Communities: 65001:4} {Originator: xx.xx.xx.xx} {ClusterList: [xx.xx.xx.xx]}]
200
+ * xx.xx.xx.xx/32 xx.xx.xx.xx 00:34:35 [{Origin: i} {LocalPref: 100} {Communities: 65001:4} {Originator: xx.xx.xx.xx} {ClusterList: [xx.xx.xx.xx]}]
201
+ *> xx.xx.xx.xx/32 xx.xx.xx.xx 00:00:00 [{Origin: i} {Med: 0} {LocalPref: 100} {Communities: 65001:10} {Originator: xx.xx.xx.xx} {ClusterList: [xx.xx.xx.xx]}]
202
+ * xx.xx.xx.xx/32 xx.xx.xx.xx 00:35:20 [{Origin: i} {Med: 0} {LocalPref: 100} {Communities: 65001:10}]
203
+ ```
204
+
180
205
## ログレベルの変更方法
181
206
182
207
[ クイックスタートガイド] ( quick-start-guide.md ) の手順では、通常の運用において推奨されるinfoログレベルにて設定するようになっています。
183
208
もし、ログレベルを変更するには、以下のようにします。
184
209
185
210
```
186
- vi /etc/systemd/system/sakura -controller.service
211
+ # vi /etc/systemd/system/db -controller.service
187
212
188
- ! infoになっている部分を変更します
189
- ExecStart = /root/distributed-mariadb-controller/bin/sakura -controller --log-level info --db-repilica-password-filepath /root/.db-replica-password
213
+ ! ログレベルを変更します(debugに変更する場合)
214
+ ExecStart = /root/distributed-mariadb-controller/bin/db -controller --log-level debug ...
190
215
```
191
216
192
- systemdに反映し、Sakura-DBCを再起動します 。
217
+ systemdに反映し、db-controllerを再起動します 。
193
218
194
219
```
195
- systemctl daemon-reload
196
- systemctl restart sakura -controller
220
+ # systemctl daemon-reload
221
+ # systemctl restart db -controller
197
222
```
198
223
199
224
指定可能なログレベルと、各レベルにおいて出力されるログの基準は以下の通りです。
0 commit comments