TIDB

基于Docker TIDB安装

自己本身记录一下从无到有在Centos 上安装TIDB 单机版

基于最新版的Centos 安装

按照基础命令进行安装,当做一个笔记来使用

vi /etc/security/limits.conf
添加

  • soft nofile 100001
  • hard nofile 100002
    root soft nofile 100001
    root hard nofile 100002
    vi /etc/selinux/config
    将SELINUX=disabled

SELINUX=disabled
yum -y install git
yum -y install docker
yum -y install epel-release
yum -y install python-pip
pip install --upgrade pip
pip install docker-compose
在这一步根据各个系统的版本的不同,会容易造成docker-compose 不能完成安装
在这里可以根据docker-compose 官方安装文档进行安装
https://docs.docker.com/compose/install/#install-compose
git clone https://github.com/pingcap/tidb-docker-compose.git
systemctl start docker
cd tidb-docker-compose
docker-compose pull(此过程较慢)
docker-compose up -d
docker ps(STATUS 全部为UP开头则说明启动成功)
开启3000和4000端口
firewall-cmd --zone=public --add-port=3000/tcp --permanent;
firewall-cmd --zone=public --add-port=4000/tcp --permanent;

大家看到了仅供参考

你可能感兴趣的:(个人笔记)