From f0562cf909ff52b2c4dc8076061737d6984aabc6 Mon Sep 17 00:00:00 2001 From: lilin90 Date: Thu, 26 Apr 2018 11:11:51 +0800 Subject: [PATCH 1/2] op-guide: fix the file name Via: https://github.com/pingcap/docs-cn/pull/677 --- op-guide/binary-deployment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/op-guide/binary-deployment.md b/op-guide/binary-deployment.md index 43dc62b766fb0..e9d7266b2d565 100644 --- a/op-guide/binary-deployment.md +++ b/op-guide/binary-deployment.md @@ -358,7 +358,7 @@ tar -xzf pushgateway-0.3.1.linux-amd64.tar.gz #### Start `node_exporter` on Node1, Node2, Node3 and Node4. ``` -$cd node_exporter-0.14.0-rc.1.linux-amd64 +$cd node_exporter-0.14.0-rc.2.linux-amd64 # Start the node_exporter service. ./node_exporter --web.listen-address=":9100" \ @@ -424,7 +424,7 @@ scrape_configs: #### Start Grafana in Node1. ``` -cd grafana-4.1.2-1486989747.linux-x64 +cd grafana-4.1.2-1486989747 # Edit the Configuration file: From fd6b3c62d80e876a86dbb87303eec99d4da704b5 Mon Sep 17 00:00:00 2001 From: lilin90 Date: Thu, 26 Apr 2018 11:17:57 +0800 Subject: [PATCH 2/2] op-guide: fix join Via: https://github.com/pingcap/docs-cn/pull/680 --- op-guide/binary-deployment.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/op-guide/binary-deployment.md b/op-guide/binary-deployment.md index e9d7266b2d565..f96082bf234af 100644 --- a/op-guide/binary-deployment.md +++ b/op-guide/binary-deployment.md @@ -273,7 +273,6 @@ Follow the steps below to start PD, TiKV, and TiDB: --client-urls="http://192.168.199.114:2379" \ --peer-urls="http://192.168.199.114:2380" \ --initial-cluster="pd1=http://192.168.199.113:2380,pd2=http://192.168.199.114:2380,pd3=http://192.168.199.115:2380" \ - --join="http://192.168.199.113:2379" \ -L "info" \ --log-file=pd.log @@ -282,7 +281,6 @@ Follow the steps below to start PD, TiKV, and TiDB: --client-urls="http://192.168.199.115:2379" \ --peer-urls="http://192.168.199.115:2380" \ --initial-cluster="pd1=http://192.168.199.113:2380,pd2=http://192.168.199.114:2380,pd3=http://192.168.199.115:2380" \ - --join="http://192.168.199.113:2379" \ -L "info" \ --log-file=pd.log ```