-
Notifications
You must be signed in to change notification settings - Fork 688
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
*: update the confusing statements #468
Merged
Merged
Changes from 5 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
aeef195
Fix the wrong statement
QueenyJin a9db873
Fix a typo
QueenyJin 6365ca0
Fix the statement
QueenyJin 4ca4316
Fix the quotation mark
QueenyJin 7c6f7ad
Update the statement of tikv-ctl
QueenyJin ce59b3d
Update the MySQL related statement
QueenyJin ba65b01
Update the statement regarding the MySQL client
QueenyJin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,7 +132,9 @@ The key's randomart image is: | |
|
||
TiDB provides the official binary installation package that supports Linux. For the operating system, it is recommended to use Redhat 7.3+, CentOS 7.3+ and higher versions. | ||
|
||
### Operating system: Linux (Redhat 7+, CentOS 7+) | ||
> Note: Because TiDB is compatible with MySQL, you can use MySQL client to connect to TiDB directly. Before you start TiDB, make sure to install MySQL client first. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Installing before starting TiDB is not necessary. I think the last sentence can be removed. |
||
|
||
### Download and extract the package on each node | ||
|
||
``` | ||
# Download the package. | ||
|
@@ -207,19 +209,29 @@ Follow the steps below to start PD, TiKV and TiDB: | |
--log-file=pd.log | ||
``` | ||
|
||
2. Start TiKV on Node2, Node3 and Node4. | ||
2. Log in and start TiKV on other nodes: Node2, Node3 and Node4: | ||
|
||
On Node2: | ||
|
||
```bash | ||
./bin/tikv-server --pd="192.168.199.113:2379" \ | ||
--addr="192.168.199.114:20160" \ | ||
--data-dir=tikv1 \ | ||
--log-file=tikv.log | ||
``` | ||
|
||
On Node3: | ||
|
||
```bash | ||
./bin/tikv-server --pd="192.168.199.113:2379" \ | ||
--addr="192.168.199.115:20160" \ | ||
--data-dir=tikv2 \ | ||
--log-file=tikv.log | ||
``` | ||
|
||
On Node4: | ||
|
||
```bash | ||
./bin/tikv-server --pd="192.168.199.113:2379" \ | ||
--addr="192.168.199.116:20160" \ | ||
--data-dir=tikv3 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Installing before starting TiDB is not necessary. I think the last sentence can be removed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If users don’t have MySQL client installed, how can they test their connection to TiDB? I believe TiDB doesn’t have a client yet...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They need a MySQL client, yes! But they don't necessarily need one before installing TiDB. I think maybe
Because TiDB is compatible with MySQL, you must use MySQL client to connect to TiDB directly.
is appropriate?