-
Notifications
You must be signed in to change notification settings - Fork 59
/
Pomelo分布式部署.txt
175 lines (170 loc) · 5.04 KB
/
Pomelo分布式部署.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
2台分布式部署:要配置每台server之间ssh不需要输入密码
======
1,一台全功能:包含connector/hall/db/master,内部IP:10.0.0.20。
```
vi config/master.json #master的host都指向10.0.0.20
{
"development": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 },
"production": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 }
}
vi config/services.json #connector/hall/db的host都指向10.0.0.20
{
"development": {
"connector": [
{ "id": "connector-server-2", "host": "10.0.0.20", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
},
"production": {
"connector": [
{ "id": "connector-server-2", "host": "10.0.0.20", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
}
}
```
2,一台只启动connector,内部IP:10.0.0.22。
```
vi config/master.json #master的host都指向10.0.0.20
{
"development": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 },
"production": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 }
}
vi config/services.json #connector的host都指向10.0.0.22,hall/db的host都指向10.0.0.20
{
"development": {
"connector": [
{ "id": "connector-server-1", "host": "10.0.0.22", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
},
"production": {
"connector": [
{ "id": "connector-server-1", "host": "10.0.0.22", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
}
}
```
3台分布式部署:要配置每台server之间ssh不需要输入密码
======
1,一台全功能:包含connector/hall/db/master,内部IP:10.0.0.20。
```
vi config/master.json #master的host都指向10.0.0.20
{
"development": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 },
"production": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 }
}
vi config/services.json #connector/hall/db的host都指向10.0.0.20
{
"development": {
"connector": [
{ "id": "connector-server-0", "host": "10.0.0.20", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
},
"production": {
"connector": [
{ "id": "connector-server-0", "host": "10.0.0.20", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
}
}
```
2,第2台只启动connector,内部IP:10.0.0.22
```
vi config/master.json #master的host都指向10.0.0.20
{
"development": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 },
"production": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 }
}
vi config/services.json #connector的host都指向10.0.0.22,hall/db的host都指向10.0.0.20
{
"development": {
"connector": [
{ "id": "connector-server-1", "host": "10.0.0.22", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
},
"production": {
"connector": [
{ "id": "connector-server-1", "host": "10.0.0.22", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
}
}
```
3,第3台只启动connector,内部IP:10.0.0.23
```
vi config/master.json #master的host都指向10.0.0.20
{
"development": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 },
"production": { "id": "master-server-1", "host": "10.0.0.20", "port": 1005 }
}
vi config/services.json #connector的host都指向10.0.0.23,hall/db的host都指向10.0.0.20
{
"development": {
"connector": [
{ "id": "connector-server-2", "host": "10.0.0.23", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
},
"production": {
"connector": [
{ "id": "connector-server-2", "host": "10.0.0.23", "port": 7550, "clientPort": 7510, "frontend": true }
],
"hall": [
{ "id": "hall-server-1", "host": "10.0.0.20", "port": 7850 }
],
"db": [
{ "id": "db-server-1", "host": "10.0.0.20", "port": 7860 }
]
}
}
```
4,轮询时不启动全功能的connector