개인 컴퓨터에 TidB 설치
Component
Port
Protocol
Description
TiDB
4000
TCP
the communication port for the application and DBA tools
TiDB
10080
TCP
the communication port to report TiDB status
TiKV
20160
TCP
the TiKV communication port
PD
2379
TCP
the communication port between TiDB and PD
PD
2380
TCP
the inter-node communication port within the PD cluster
Prepare This guide is for deployment on Linux only. It is recommended to use RHEL/CentOS 7.3 or higher. TiKV requires you to raise the open files limit:
tidbuser="tidb"
cat << EOF > /tmp/tidb.conf
$tidbuser soft nofile 1000000
$tidbuser hard nofile 1000000 EOF sudo cp /tmp/tidb.conf /etc/security/limits.d/ sudo sysctl -w fs.file-max=1000000
See the production deployment optional kernel tuning parameters. Create a database running user account
root
user account and create a database running user account ( tidb
) using the following command: # useradd tidb -m
root
to tidb
by using the following command. You can use this tidb
user account to deploy your TiDB cluster. # su - tidb
Download the official binary package
# Download the package.
$ wget http://download.pingcap.org/tidb-v3.0-linux-amd64.tar.gz http://download.pingcap.org/tidb-v3.0-linux-amd64.sha256
# Check the file integrity. If the result is OK, the file is correct.
$ sha256sum -c tidb-v3.0-linux-amd64.sha256
# Extract the package.
$ tar -xzf tidb-v3.0-linux-amd64.tar.gz
$ cd tidb-v3.0-linux-amd64
Start
Follow the steps below to start PD, TiKV and TiDB:
$ ./bin/pd-server --data-dir=pd \
--log-file=pd.log &
$ ./bin/tikv-server --pd="127.0.0.1:2379" \
--data-dir=tikv \ --log-file=tikv.log &
$ ./bin/tidb-server --store=tikv \
--path="127.0.0.1:2379" \ --log-file=tidb.log &
$ mysql -h 127.0.0.1 -P 4000 -u root -D test
전재 대상:https://www.cnblogs.com/yangruishan/p/11261231.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.