zoukankan      html  css  js  c++  java
  • TIDB ---NEW SQL

    https://github.com/pingcap/tidb

    http://www.pingcap.com/

    Quick Start
    
    Run TiDB with Docker
    
    You can quickly test TiDB with Docker, the source repository contains the Dockerfile which contains local tidb-server.
    
    To install Docker on your system, you can read the document on https://docs.docker.com/
    
    docker pull pingcap/tidb:latest
    docker run --name tidb-server -d -p 4000:4000 pingcap/tidb:latest
    docker pull may take a while to download images ~560M.
    
    Then you can use official mysql client to connect to TiDB.
    
    mysql -h 127.0.0.1 -P 4000 -u root -D test
    Notice: OS X user may use docker-machine ip to connect it.
    
    Run TiDB on TiKV
    
    Read this doc.
    
    Pre-requirement
    
    Go environment. Currently a 64-bit version of go >= 1.5 is required.
    
    git clone https://github.com/pingcap/tidb.git $GOPATH/src/github.com/pingcap/tidb
    cd $GOPATH/src/github.com/pingcap/tidb
    make
    Run command line interpreter
    
    Interpreter is an interactive command line TiDB client. You can just enter some SQL statements and get the result.
    
    make interpreter
    cd interpreter && ./interpreter
    Press Ctrl+C to quit.
    
    Run as MySQL protocol server
    
    make server
    cd tidb-server && ./tidb-server
    In case you want to compile a specific location:
    
    make server TARGET=$GOPATH/bin/tidb-server
    The default server port is 4000 and can be changed by flag -P <port>.
    
    Run ./tidb-server -h to see more flag options.
    
    After you started tidb-server, you can use official mysql client to connect to TiDB.
    
    mysql -h 127.0.0.1 -P 4000 -u root -D test
  • 相关阅读:
    第一次上机作业
    第一次作业
    信号
    进程基础
    计算机网络(第七版)谢希仁编著 第四章课后答案详解
    shell脚本编程
    关于linux安装软件(Ubuntu)时遇见的常见问题处理
    Linux系统C语言开发环境学习
    LINUX下安装中文输入法
    处理《无法获得锁 /var/lib/dpkg/lock
  • 原文地址:https://www.cnblogs.com/zengkefu/p/5680787.html
Copyright © 2011-2022 走看看