|
27 | 27 |
|
28 | 28 | <template> |
29 | 29 | <Panel> |
30 | | - <template #title>远程服务管理</template> |
| 30 | + <template #title>远程守护进程管理</template> |
31 | 31 | <template #default> |
32 | 32 | <div class="flex flex-space-between"> |
33 | 33 | <ItemGroup> |
|
43 | 43 | </template> |
44 | 44 | </Panel> |
45 | 45 | <Panel> |
46 | | - <template #title>所有分布式服务总览</template> |
| 46 | + <template #title>已配置的守护进程</template> |
47 | 47 | <template #default> |
48 | 48 | <p> |
49 | | - 远程服务(远程主机)必须确保全部在线且互相网络畅通,面板连接需公开放行远程服务端口与配置密钥。 |
| 49 | + 远程守护进程(在任何物理主机上)必须确保全部在线且互相网络畅通,面板连接需公开放行守护进程端口与配置密钥。 |
50 | 50 | <br /> |
51 | | - 网页需要能直接连接远程服务(上传,下载与控制台),避免使用除 localhost |
| 51 | + 网页需要能直接连接远程守护进程(上传,下载与控制台),避免使用除 localhost |
52 | 52 | 外的局域网段任何IP,必须使用外网IP或域名进行连接。 |
53 | 53 | <br /> |
54 | | - 面板端所需最低守护进程版本:{{ specifiedDaemonVersion }} |
| 54 | + 面板端对应的守护进程版本:{{ specifiedDaemonVersion }} |
55 | 55 | </p> |
56 | 56 | <el-table :data="services" style="width: 100%" size="small"> |
57 | 57 | <el-table-column label="地址" width="170"> |
|
145 | 145 | </Panel> |
146 | 146 |
|
147 | 147 | <Dialog v-model="isNewService"> |
148 | | - <template #title>新增远程服务</template> |
| 148 | + <template #title>新增远程守护进程</template> |
149 | 149 | <template #default> |
150 | 150 | <div> |
151 | 151 | <div class="sub-title">备注信息</div> |
|
155 | 155 | size="small" |
156 | 156 | ></el-input> |
157 | 157 | <div class="sub-title row-mt"> |
158 | | - <div class="sub-title-title">远程服务所在主机的IP地址</div> |
| 158 | + <div class="sub-title-title">守护进程所在主机的IP地址</div> |
159 | 159 | <div class="sub-title-info"> |
160 | 160 | <b>必须使用外网地址</b>或 localhost 地址,否则将导致远程实例无法连接 |
161 | 161 | </div> |
|
165 | 165 | placeholder="必填,列如 mcsmanager.com,43.123.211.12" |
166 | 166 | size="small" |
167 | 167 | ></el-input> |
168 | | - <div class="sub-title row-mt">远程服务端口</div> |
| 168 | + <div class="sub-title row-mt">守护进程端口</div> |
169 | 169 | <el-input |
170 | 170 | v-model="newServiceInfo.port" |
171 | 171 | placeholder="必填,列如 24444" |
|
207 | 207 | 检测到您的连接IP为 :{{ newServiceInfo.ip }},似乎是一个内网地址? |
208 | 208 | </div> |
209 | 209 | <div class="sub-title-info"> |
210 | | - 面板与远程服务端均要能够让用户访问,以此行为设计即可实现流量分流减轻中心面板端的压力。 |
| 210 | + 面板与守护进程端均要能够让用户访问,以此行为设计即可实现流量分流减轻中心面板端的压力。 |
211 | 211 | </div> |
212 | 212 | </div> |
213 | 213 | <div class="sub-title"> |
@@ -383,7 +383,7 @@ export default { |
383 | 383 | }, |
384 | 384 | // 删除服务 |
385 | 385 | async deleteService(uuid) { |
386 | | - await this.$confirm("此操作将永久删除该远程服务,是否继续?", "警告", { |
| 386 | + await this.$confirm("此操作将永久删除该守护进程,是否继续?", "警告", { |
387 | 387 | confirmButtonText: "删除", |
388 | 388 | cancelButtonText: "取消", |
389 | 389 | type: "warning" |
|
0 commit comments