本指南介绍如何快速上手体验 TiDB 数据库。对于非生产环境,你可以选择以下任意一种方式部署 TiDB 数据库:
注意:本指南中的 TiDB 部署方式仅适用于快速上手体验,不适用于生产环境。
适用场景:利用本地 Mac 或者单机 Linux 环境快速部署 TiDB 测试集群,体验 TiDB 集群的基本架构,以及 TiDB、TiKV、PD、监控等基础组件的运行。
TiDB 是一个分布式系统。最基础的 TiDB 测试集群通常由 2 个 TiDB 实例、3 个 TiKV 实例、3 个 PD 实例和可选的 TiFlash 实例构成。通过 TiUP Playground,可以快速搭建出上述的一套基础测试集群。
curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh
注意:TiUP 安装完成后会提示对应 profile 文件的绝对路径。在执行以下 source 命令前,需要根据 profile 文件的实际位置修改命令。
source .bash_profile
直接运行 tiup playground
命令会运行最新版本的 TiDB 集群,其中 TiDB、TiKV、PD 和 TiFlash 实例各 1 个:
tiup playground
也可以指定 TiDB 版本以及各组件实例个数,命令类似于:
tiup playground v4.0.16 --db 2 --pd 3 --kv 3 --monitor
上述命令会在本地下载并启动某个版本的集群(例如 v4.0.16),--monitor
表示同时部署监控组件。最新版本可以通过执行 tiup list tidb
来查看。运行结果将显示集群的访问方式:
CLUSTER START SUCCESSFULLY, Enjoy it ^-^ To connect TiDB: mysql --host 127.0.0.1 --port 4000 -u root To connect TiDB: mysql --host 127.0.0.1 --port 4001 -u root To view the dashboard: http://127.0.0.1:2379/dashboard To view the monitor: http://127.0.0.1:9090
使用 TiUP client
连接 TiDB:
tiup client
也可使用 MySQL 客户端连接 TiDB:
mysql --host 127.0.0.1 --port 4000 -u root
tiup clean --all
本节介绍如何参照 TiUP 最小拓扑的一个 YAML 文件部署 TiDB 集群。
准备一台部署主机,确保其软件满足需求:
最小规模的 TiDB 集群拓扑:
注意:下表中拓扑实例的 IP 为示例 IP。在实际部署时,请替换为实际的 IP。
实例 | 个数 | IP | 配置 |
TiKV | 3 | 10.0.1.110.0.1.110.0.1.1 | 避免端口和目录冲突 |
TiDB | 1 | 10.0.1.1 | 默认端口全局目录配置 |
PD | 1 | 10.0.1.1 | 默认端口全局目录配置 |
TiFlash | 1 | 10.0.1.1 | 默认端口全局目录配置 |
Monitor | 1 | 10.0.1.1 | 默认端口全局目录配置 |
部署主机软件和环境要求:
注意:你可以使用 Linux 系统的任一普通用户或 root 用户登录主机,以下步骤以 root 用户为例。
curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh
注意:TiUP 安装完成后会提示对应 profile 文件的绝对路径。在执行以下 source 命令前,需要根据 profile 文件的实际位置修改命令。
source .bash_profile
tiup cluster
tiup update --self && tiup update cluster
root
用户调大 sshd 服务的连接数限制/etc/ssh/sshd_config
将 MaxSessions
调至 20。service sshd restart
按下面的配置模板,编辑配置文件,命名为 topo.yaml
,其中:
user: "tidb"
:表示通过 tidb
系统用户(部署会自动创建)来做集群的内部管理,默认使用 22 端口通过 ssh 登录目标机器replication.enable-placement-rules
:设置这个 PD 参数来确保 TiFlash 正常运行host
:设置为本部署主机的 IP配置模板如下:
# # Global variables are applied to all deployments and used as the default value of # # the deployments if a specific deployment value is missing. global: user: "tidb" ssh_port: 22 deploy_dir: "/tidb-deploy" data_dir: "/tidb-data" # # Monitored variables are applied to all the machines. monitored: node_exporter_port: 9100 blackbox_exporter_port: 9115 server_configs: tidb: log.slow-threshold: 300 tikv: readpool.storage.use-unified-pool: false readpool.coprocessor.use-unified-pool: true pd: replication.enable-placement-rules: true replication.location-labels: ["host"] tiflash: logger.level: "info" pd_servers: - host: 10.0.1.1 tidb_servers: - host: 10.0.1.1 tikv_servers: - host: 10.0.1.1 port: 20160 status_port: 20180 config: server.labels: { host: "logic-host-1" } - host: 10.0.1.1 port: 20161 status_port: 20181 config: server.labels: { host: "logic-host-2" } - host: 10.0.1.1 port: 20162 status_port: 20182 config: server.labels: { host: "logic-host-3" } tiflash_servers: - host: 10.0.1.1 monitoring_servers: - host: 10.0.1.1 grafana_servers: - host: 10.0.1.1
tiup cluster deploy <cluster-name> <tidb-version> ./topo.yaml --user root -p
<cluster-name>
表示设置集群名称<tidb-version>
表示设置集群版本,可以通过 tiup list tidb
命令来查看当前支持部署的 TiDB 版本按照引导,输入 y
及 root 密码,来完成部署:
Do you want to continue? [y/N]: y Input SSH password:
tiup cluster start <cluster-name>
安装 MySQL 客户端。如果已安装 MySQL 客户端则可跳过这一步骤。
yum -y install mysql
访问 TiDB 数据库,密码为空:
mysql -h 10.0.1.1 -P 4000 -u root
访问 TiDB 的 Grafana 监控:
访问 TiDB 的 Dashboard:
执行以下命令确认当前已经部署的集群列表:
tiup cluster list
执行以下命令查看集群的拓扑结构和状态:
tiup cluster display <cluster-name>
评论区(0)