开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
捐赠
捐赠前请先登录
扫描微信二维码支付
取消
支付完成
支付提示
将跳转至支付宝完成支付
确定
取消
2 Star 0 Fork 0

万里数据库/GreatSQL-Cluster

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (2)
标签 (1)
master
greatsql-cluster-8.4.4-4
GreatSQL-Cluster-8.4.4-4
master
分支 (2)
标签 (1)
master
greatsql-cluster-8.4.4-4
GreatSQL-Cluster-8.4.4-4
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (2)
标签 (1)
master
greatsql-cluster-8.4.4-4
GreatSQL-Cluster-8.4.4-4
procfs.cc 18.94 KB
一键复制 编辑 原始数据 按行查看 历史
GreatSQL 提交于 2025年11月15日 22:14 +08:00 . first commit for GreatSQL Cluster 8.4.4-4
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 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518
/*
(C) 2019 Percona LLC and/or its affiliates
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
*/
/**
@file
The ProcFS plugin is intended to provide access to Linux performance counters
by running SQL queries against a Percona Server 8.0 (or other MySQL 8.0
compatible variant). This is useful for Cloud and MySQL-as-service
installations.
The plugin reads files from /proc and /sys filesystems and returns the files
name and content as is within individual rows of a new view
INFORMATION_SCHEMA.PROCFS. The schema definition of this view is:
CREATE TEMPORARY TABLE `PROCFS` (
`FILE` varchar(1024) NOT NULL DEFAULT '',
`CONTENTS` longtext NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
Access to /proc and /sys dfiles and directories is limited by the system
variable procfs_files_spec. This variable is a global, read only variable,
meaning that it may only be set either via the mysqld command line or within
my.cnf and is not changeable at run time. This is for security purposes to
prevent a compromised account from giving itself greater access to the /proc
or /sys filesystems. Any files that are not included within the
procfs_files_spec are ignored and considered to not exist. You can write file
access patterns in glob(7) style: /sys/block/sd[a-z]/stat;/proc/version*
The default value for procfs_files_spec is : /proc/cpuinfo;/proc/irq//;
/proc/loadavg;/proc/net/dev;/proc/net/sockstat;/proc/net/sockstat_rhe4;
/proc/net/tcpstat;/proc/self/net/netstat;/proc/self/stat;/proc/self/io;
/proc/self/numa_maps/proc/softirqs;/proc/spl/kstat/zfs/arcstats;/proc/stat;
/proc/sys/fs/file-nr;/proc/version;/proc/vmstat
To install this plugin, copy the procfs.so file to the mysql plugin
installation directory and execute "INSTALL PLUGIN procfs SONAME 'procfs.so';"
Access to the INFORMATION_SCHEMA.PROCFS is limited to users with the
ACCESS_PROCFS dynamic privilege. Upon plugin startup, this new dynamic
privilege is registered with the server. After the plugin has been installed,
grant a user access to the INFORMATION_SCHEMA.PROCFS view by executing:
"GRANT ACCESS_PROCFS ON *. TO 'user'@'host';".
Authorized users can now obtain information from individual files by
specifying the exact file name within a WHERE clause. Example:
"SELECT * FROM INFORMATION_SCHEMA.PROCFS WHERE FILE = '/proc/version';".
Specifying specific files is critical to limiting the impact of the plugin to
the servers performance. Limited file globbing is supported by the LIKE
expression. Failure to limit the set of files scanned via a WHERE clause
through equality, LIKE or IN qualifiers can lead to lengthy query response
times and high load and memory usage on the server as all files that match the
procfs_files_spec must be opened, read, held in memory, and finally returned
to the client.
Some basic metrics are provided by status variables:
Name Description
-----------------------------------------------------------------------------
procfs_access_violations number of attempted queries by users without the
ACCESS_PROCFS privilege
procfs_queries number of queries made against the procfs view
procfs_files_read number of files read to provide content
procfs_bytes_read number of bytes read to provide content
Credit goes to Nickolay Ihalainen (nickolay.ihalainen@percona.com) for the
original implementation on which this work is based. Thank you Nickolay!
*/
#define LOG_COMPONENT_TAG "procfs"
#include "mf_wcomp.h"
#include "my_sys.h"
#include "mysql/components/my_service.h"
#include "mysql/components/services/component_sys_var_service.h"
#include "mysql/components/services/dynamic_privilege.h"
#include "mysql/components/services/log_builtins.h"
#include "mysql/plugin.h"
#include "mysql/service_security_context.h"
#include "mysql/strings/m_ctype.h"
#include "mysql_version.h"
#include "sql/item_cmpfunc.h"
#include "sql/sql_class.h" /* THD, Security context */
#include "sql/sql_show.h"
#include <ctype.h>
#include <dirent.h>
#include <fnmatch.h>
#include <stdlib.h>
#include <time.h>
#include <fstream>
// MySQL 8.0 logger service interface
static SERVICE_TYPE(registry) *reg_srv = nullptr;
SERVICE_TYPE(log_builtins) *log_bi = nullptr;
SERVICE_TYPE(log_builtins_string) *log_bs = nullptr;
namespace procfs {
static const char *IS_TABLE_NAME = "PROCFS";
static const char *PRIVILEGE_NAME = "ACCESS_PROCFS";
static const constexpr ulong MAX_CONTENTS_SIZE = 60000;
static const constexpr ulong MAX_FILES_PER_PATTERN = 10000;
static const constexpr ulong MAX_PATTERN_DEPTH = 10;
static const char *DEFAULT_FILES_SPEC =
"/proc/cpuinfo;"
"/proc/irq/*/*;"
"/proc/loadavg;"
"/proc/net/dev;"
"/proc/net/sockstat;"
"/proc/net/sockstat_rhe4;"
"/proc/net/tcpstat;"
"/proc/self/net/netstat;"
"/proc/self/stat;"
"/proc/self/io;"
"/proc/self/numa_maps/proc/softirqs;"
"/proc/spl/kstat/zfs/arcstats;"
"/proc/stat;"
"/proc/sys/fs/file-nr;"
"/proc/version;"
"/proc/vmstat";
static const constexpr char SYS_NAME[] = "/sys/";
static const constexpr int SYS_NAME_LEN = sizeof(SYS_NAME) - 1;
static const constexpr char PROC_NAME[] = "/proc/";
static const constexpr int PROC_NAME_LEN = sizeof(PROC_NAME) - 1;
static char *files_spec = nullptr;
static char *buffer = nullptr;
static struct st_mysql_information_schema view = {
MYSQL_INFORMATION_SCHEMA_INTERFACE_VERSION};
MYSQL_PLUGIN plugin_info = 0;
static ST_FIELD_INFO view_fields[] = {
{"FILE", 1024, MYSQL_TYPE_STRING, 0, MY_I_S_UNSIGNED, 0, 0},
{"CONTENTS", MAX_CONTENTS_SIZE, MYSQL_TYPE_STRING, 0, MY_I_S_UNSIGNED, 0,
0},
{0, 0, MYSQL_TYPE_NULL, 0, 0, 0, 0}};
static MYSQL_SYSVAR_STR(files_spec, files_spec,
PLUGIN_VAR_RQCMDARG | PLUGIN_VAR_READONLY |
PLUGIN_VAR_NOPERSIST,
"List of files and directories accessable to users "
"with ACCESS_PROCFS privilege.",
nullptr, nullptr, DEFAULT_FILES_SPEC);
static SYS_VAR *system_variables[] = {MYSQL_SYSVAR(files_spec), nullptr};
static std::atomic<uint64_t> access_violations(0);
static std::atomic<uint64_t> queries(0);
static std::atomic<uint64_t> files_read(0);
static std::atomic<uint64_t> bytes_read(0);
static SHOW_VAR status_variables[] = {
{"procfs_access_violations", (char *)&access_violations, SHOW_LONGLONG,
SHOW_SCOPE_GLOBAL},
{"procfs_queries", (char *)&queries, SHOW_LONGLONG, SHOW_SCOPE_GLOBAL},
{"procfs_files_read", (char *)&files_read, SHOW_LONGLONG,
SHOW_SCOPE_GLOBAL},
{"procfs_bytes_read", (char *)&bytes_read, SHOW_LONGLONG,
SHOW_SCOPE_GLOBAL},
{NullS, NullS, SHOW_LONG, SHOW_SCOPE_GLOBAL}};
static bool get_equal_condition_argument(Item *cond, std::string *eq_arg,
const std::string &field_name) {
if (cond != 0 && cond->type() == Item::FUNC_ITEM) {
Item_func *func = static_cast<Item_func *>(cond);
if (func != nullptr && func->functype() == Item_func::EQ_FUNC) {
Item_func_eq *eq_func = static_cast<Item_func_eq *>(func);
if (eq_func->arguments()[0]->type() == Item::FIELD_ITEM &&
my_strcasecmp(system_charset_info,
eq_func->arguments()[0]->full_name(),
field_name.c_str()) == 0) {
char buff[1024];
String *res;
String filter(buff, sizeof(buff), system_charset_info);
if (eq_func->arguments()[1] != nullptr &&
(res = eq_func->arguments()[1]->val_str(&filter))) {
eq_arg->append(res->c_ptr_safe(), res->length());
return false;
}
}
}
}
return true;
}
static bool get_like_condition_argument(Item *cond, std::string *like_arg,
const std::string &field_name) {
if (cond != 0 && cond->type() == Item::FUNC_ITEM) {
Item_func *func = static_cast<Item_func *>(cond);
if (func != nullptr && func->functype() == Item_func::LIKE_FUNC) {
Item_func_like *like_func = static_cast<Item_func_like *>(func);
if (like_func->arguments()[0]->type() == Item::FIELD_ITEM &&
my_strcasecmp(system_charset_info,
like_func->arguments()[0]->full_name(),
field_name.c_str()) == 0) {
char buff[1024];
String *res;
String filter(buff, sizeof(buff), system_charset_info);
if (like_func->arguments()[1] != nullptr &&
(res = like_func->arguments()[1]->val_str(&filter))) {
like_arg->append(res->c_ptr_safe(), res->length());
return false;
}
}
}
}
return true;
}
static bool get_in_condition_argument(Item *cond,
std::map<std::string, bool> &in_args,
const std::string &field_name) {
if (cond != 0 && cond->type() == Item::FUNC_ITEM) {
Item_func *func = static_cast<Item_func *>(cond);
if (func != nullptr && func->functype() == Item_func::IN_FUNC) {
Item_func_in *in_func = static_cast<Item_func_in *>(func);
if (in_func->arguments()[0]->type() == Item::FIELD_ITEM &&
my_strcasecmp(system_charset_info,
in_func->arguments()[0]->full_name(),
field_name.c_str()) == 0) {
char buff[1024];
String *res;
String filter(buff, sizeof(buff), system_charset_info);
for (uint i = 1; i < in_func->arg_count; ++i) {
if (in_func->arguments()[i] != nullptr &&
(res = in_func->arguments()[i]->val_str(&filter)) &&
res->length() > 0) {
in_args[std::string(res->c_ptr_safe(), res->length())] = true;
}
}
return false;
}
}
}
return true;
}
static void limited_glob_files(const std::string &path,
const std::string &pattern, int max_results,
std::vector<std::string> &files_found) {
if (max_results <= 0) return;
DIR *dir = opendir(path.c_str());
struct dirent *dir_entry;
if (!dir) return;
std::vector<char> real_file_path(PATH_MAX);
while ((dir_entry = readdir(dir)) != 0) {
if (!fnmatch(pattern.c_str(), dir_entry->d_name,
FNM_FILE_NAME | FNM_CASEFOLD | FNM_NOESCAPE | FNM_PERIOD)) {
if (dir_entry->d_type != DT_DIR) {
std::string fname =
std::string(path).append("/").append(dir_entry->d_name);
if (realpath(fname.c_str(), real_file_path.data())) {
if (strncmp(SYS_NAME, real_file_path.data(), SYS_NAME_LEN) == 0 ||
strncmp(PROC_NAME, real_file_path.data(), PROC_NAME_LEN) == 0)
files_found.push_back(fname);
}
if (files_found.size() >= static_cast<size_t>(max_results)) break;
}
}
}
closedir(dir);
return;
}
static void limited_glob(const std::string &query, int max_results,
int max_depth, std::vector<std::string> &files_found) {
if (max_results <= 0 || max_depth <= 0) return;
std::string path;
std::string pattern;
std::string rest;
std::string::size_type first_star = query.find_first_of("*?[");
std::string::size_type last_sep_before_star =
query.find_last_of("/", first_star);
std::string::size_type first_sep_after_star =
query.find_first_of("/", first_star);
if (first_sep_after_star == std::string::npos) {
path = std::string(query.begin(), query.begin() + last_sep_before_star);
pattern =
std::string(query.begin() + last_sep_before_star + 1, query.end());
} else {
path = std::string(query.begin(), query.begin() + last_sep_before_star);
pattern = std::string(query.begin() + last_sep_before_star + 1,
query.begin() + first_sep_after_star);
rest = std::string(query.begin() + first_sep_after_star + 1, query.end());
}
if (rest.size() == 0) {
limited_glob_files(path, pattern, max_results, files_found);
return;
}
DIR *dir = opendir(path.c_str());
struct dirent *dir_entry;
if (!dir) return;
while ((dir_entry = readdir(dir)) != 0) {
if (!fnmatch(pattern.c_str(), dir_entry->d_name,
FNM_CASEFOLD | FNM_NOESCAPE | FNM_PERIOD)) {
if (dir_entry->d_type == DT_DIR || dir_entry->d_type == DT_LNK ||
dir_entry->d_type == DT_UNKNOWN) {
std::string new_pattern = std::string(path)
.append("/")
.append(dir_entry->d_name)
.append("/")
.append(rest);
limited_glob(new_pattern, max_results - files_found.size(),
max_depth - 1, files_found);
}
}
}
closedir(dir);
return;
}
static void fill_files_list(std::vector<std::string> &files) {
std::istringstream list(files_spec);
files.clear();
while (list) {
std::string path;
std::getline(list, path, ';');
if (path.find_first_of("*?[") == std::string::npos) {
std::vector<char> real_file_path(PATH_MAX);
if (realpath(path.c_str(), real_file_path.data())) {
if (strncmp(SYS_NAME, real_file_path.data(), SYS_NAME_LEN) == 0 ||
strncmp(PROC_NAME, real_file_path.data(), PROC_NAME_LEN) == 0)
files.push_back(path);
}
continue;
}
limited_glob(path, MAX_FILES_PER_PATTERN, MAX_PATTERN_DEPTH, files);
}
}
static void fill_view_row(THD *thd, TABLE *table, const char *fname, char *buf,
size_t sz) {
if (sz == 0) return;
table->field[0]->store(fname, strlen(fname), system_charset_info);
table->field[1]->store(buf, sz, system_charset_info);
schema_table_store_record(thd, table);
files_read++;
bytes_read += sz;
}
static int fill_view(THD *thd, Table_ref *tables, Item *cond) {
if (!thd->security_context()
->has_global_grant(PRIVILEGE_NAME, strlen(PRIVILEGE_NAME))
.first) {
my_error(ER_SPECIFIC_ACCESS_DENIED_ERROR, MYF(0), PRIVILEGE_NAME);
access_violations++;
return 1;
}
TABLE *table = tables->table;
static const std::string I_S_FILE("INFORMATION_SCHEMA.PROCFS.FILE");
std::string like_arg;
std::map<std::string, bool> in_args;
if (cond != 0) {
std::string eq_arg;
if (!get_equal_condition_argument(cond, &eq_arg, I_S_FILE) &&
!eq_arg.empty()) {
in_args[eq_arg] = true;
} else if (!get_like_condition_argument(cond, &like_arg, I_S_FILE) &&
!like_arg.empty()) {
} else {
get_in_condition_argument(cond, in_args, I_S_FILE);
}
}
std::vector<std::string> files;
fill_files_list(files);
for (std::vector<std::string>::const_iterator fname = files.begin();
fname != files.end(); ++fname) {
if (cond != 0 && in_args.size() > 0 &&
in_args.find(*fname) == in_args.end())
continue;
if (cond != 0 && like_arg.size() > 0 &&
wild_compare(fname->c_str(), fname->size(), like_arg.c_str(),
like_arg.size(), 0))
continue;
std::ifstream f(fname->c_str());
if (!f || !f.is_open()) continue;
f.read(buffer, MAX_CONTENTS_SIZE);
fill_view_row(thd, table, fname->c_str(), buffer, f.gcount());
f.close();
}
queries++;
return false;
}
static int view_init(void *ptr) {
if (init_logging_service_for_plugin(&reg_srv, &log_bi, &log_bs)) {
return 1;
}
LogErr(INFORMATION_LEVEL, ER_LOG_PRINTF_MSG, "Plugin procfs initializing...");
if (strcmp(files_spec, DEFAULT_FILES_SPEC) != 0) {
LogPluginErrMsg(WARNING_LEVEL, ER_LOG_PRINTF_MSG,
"default procfs_files_spec has been overridden with "
"\"%s\", sensitive system information may be exposed via "
"the information_schema.procfs table",
files_spec);
}
if (reg_srv == nullptr) {
LogPluginErrMsg(ERROR_LEVEL, ER_LOG_PRINTF_MSG, "reg_srv is NULL in init");
return 1;
}
my_service<SERVICE_TYPE(dynamic_privilege_register)> reg_priv(
"dynamic_privilege_register", reg_srv);
if (reg_priv.is_valid()) {
if (reg_priv->register_privilege(PRIVILEGE_NAME, strlen(PRIVILEGE_NAME))) {
LogPluginErrMsg(ERROR_LEVEL, ER_LOG_PRINTF_MSG,
"cannot register privilege \"%s\"", PRIVILEGE_NAME);
deinit_logging_service_for_plugin(&reg_srv, &log_bi, &log_bs);
return 1;
}
}
ST_SCHEMA_TABLE *schema_table = (ST_SCHEMA_TABLE *)ptr;
schema_table->table_name = IS_TABLE_NAME;
schema_table->fields_info = view_fields;
schema_table->fill_table = fill_view;
schema_table->old_format = nullptr;
schema_table->process_table = nullptr;
buffer = static_cast<char *>(
my_malloc(PSI_NOT_INSTRUMENTED, MAX_CONTENTS_SIZE, MY_ZEROFILL));
return 0;
}
static int view_deinit(void *) {
LogPluginErrMsg(INFORMATION_LEVEL, ER_LOG_PRINTF_MSG,
"Plugin procfs de-initializing...");
if (reg_srv == nullptr) {
LogPluginErrMsg(ERROR_LEVEL, ER_LOG_PRINTF_MSG,
"reg_srv is NULL in deinit");
} else {
my_service<SERVICE_TYPE(dynamic_privilege_register)> reg_priv(
"dynamic_privilege_register", reg_srv);
if (reg_priv.is_valid()) {
if (reg_priv->unregister_privilege(PRIVILEGE_NAME,
strlen(PRIVILEGE_NAME))) {
LogPluginErrMsg(ERROR_LEVEL, ER_LOG_PRINTF_MSG,
"cannot unregister privilege \"%s\"", PRIVILEGE_NAME);
}
}
}
my_free(buffer);
deinit_logging_service_for_plugin(&reg_srv, &log_bi, &log_bs);
return 0;
}
} // namespace procfs
mysql_declare_plugin(procfs){
MYSQL_INFORMATION_SCHEMA_PLUGIN, /* type */
&procfs::view, /* descriptor */
"PROCFS", /* name */
"Percona Inc", /* author */
"I_S table providing a view /proc/ statistics", /* description */
PLUGIN_LICENSE_GPL, /* plugin license */
procfs::view_init, /* init function (when loaded) */
nullptr, /* check uninstall function */
procfs::view_deinit, /* deinit function (when unloaded) */
0x0100, /* version */
procfs::status_variables, /* status variables */
procfs::system_variables, /* system variables */
nullptr,
0} mysql_declare_plugin_end;
Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

GreatSQL Cluster是GreatSQL社区开源的分布式关系型数据库,具备卓越的水平扩展能力、金融级的数据一致性、秒级故障自动无损容灾能力以及完整SQL语法支持等重要特性。
取消

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/GreatSQL/GreatSQL-Cluster.git
git@gitee.com:GreatSQL/GreatSQL-Cluster.git
GreatSQL
GreatSQL-Cluster
GreatSQL-Cluster
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /