You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					28 lines
				
				486 B
			
		
		
			
		
	
	
					28 lines
				
				486 B
			| 
											2 years ago
										 | == TiDB | ||
|  | === 安装 | ||
|  | [source,bash] | ||
|  | ---- | ||
|  | # 获取镜像 | ||
|  | docker pull pingcap/tidb | ||
|  | 
 | ||
|  | # 创建并启动容器 | ||
|  | docker run \ | ||
|  |   --name tidb \ | ||
|  |   -d \ | ||
|  |   -p 4000:4000 \ | ||
|  |   -p 10080:10080 \ | ||
|  |   -v /Users/wangshaoping/wspsc/software/docker/volume/tidb/data:/tmp/tidb \ | ||
|  |   --privileged=true \ | ||
|  |   pingcap/tidb | ||
|  | ---- | ||
|  | 
 | ||
|  | === 使用 | ||
|  | 通过 dbeaver 连接数据库 4000 端口,初始用户 root ,密码为空。 | ||
|  | 
 | ||
|  | image::9999-appendix/docker/tidb/001.png[,60%] | ||
|  | 
 | ||
|  | image::9999-appendix/docker/tidb/002.png[,30%] | ||
|  | 
 | ||
|  | 
 | ||
|  | 
 |