Repository: drill Updated Branches: refs/heads/gh-pages 80f53c0b4 -> 13859d7f3
link updates for 1.7 Project: http://git-wip-us.apache.org/repos/asf/drill/repo Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/13859d7f Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/13859d7f Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/13859d7f Branch: refs/heads/gh-pages Commit: 13859d7f3f5e215dabbab03e4d263e9253edceea Parents: 80f53c0 Author: Bridget Bevens <[email protected]> Authored: Tue Jun 28 19:15:52 2016 -0700 Committer: Bridget Bevens <[email protected]> Committed: Tue Jun 28 19:15:52 2016 -0700 ---------------------------------------------------------------------- _docs/install/047-installing-drill-on-the-cluster.md | 8 ++++---- .../020-installing-drill-on-linux-and-mac-os-x.md | 8 ++++---- .../040-installing-drill-on-windows.md | 4 ++-- _docs/tutorials/020-drill-in-10-minutes.md | 8 ++++---- 4 files changed, 14 insertions(+), 14 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/drill/blob/13859d7f/_docs/install/047-installing-drill-on-the-cluster.md ---------------------------------------------------------------------- diff --git a/_docs/install/047-installing-drill-on-the-cluster.md b/_docs/install/047-installing-drill-on-the-cluster.md index 1464dad..ee08ae5 100644 --- a/_docs/install/047-installing-drill-on-the-cluster.md +++ b/_docs/install/047-installing-drill-on-the-cluster.md @@ -1,13 +1,13 @@ --- title: "Installing Drill on the Cluster" -date: 2016-03-16 19:17:03 UTC +date: 2016-06-29 02:15:53 UTC parent: "Installing Drill in Distributed Mode" --- You install Drill on nodes in the cluster, configure a cluster ID, and add Zookeeper information, as described in the following steps: - 1. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.6.0/apache-drill-1.6.0.tar.gz&action=download) or from the [Apache Drill mirror site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz) with the command appropriate for your system: - * `wget http://apache.mesi.com.ar/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz` - * `curl -o apache-drill-1.6.0.tar.gz http://apache.mesi.com.ar/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz` + 1. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.7.0/apache-drill-1.7.0.tar.gz&action=download) or from the [Apache Drill mirror site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz) with the command appropriate for your system: + * `wget http://apache.mesi.com.ar/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz` + * `curl -o apache-drill-1.7.0.tar.gz http://apache.mesi.com.ar/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz` 2. Extract the tarball to the directory of your choice, such as `/opt`: `tar -xzvf apache-drill-<version>.tar.gz` 3. In `drill-override.conf,` use the Drill `cluster ID`, and provide ZooKeeper host names and port numbers to configure a connection to your ZooKeeper quorum. http://git-wip-us.apache.org/repos/asf/drill/blob/13859d7f/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md ---------------------------------------------------------------------- diff --git a/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md b/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md index 598946a..8a18f75 100644 --- a/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md +++ b/_docs/install/installing-drill-in-embedded-mode/020-installing-drill-on-linux-and-mac-os-x.md @@ -1,6 +1,6 @@ --- title: "Installing Drill on Linux and Mac OS X" -date: 2016-03-16 19:05:50 UTC +date: 2016-06-29 02:15:53 UTC parent: "Installing Drill in Embedded Mode" --- First, check that you [meet the prerequisites]({{site.baseurl}}/docs/embedded-mode-prerequisites), and then install Apache Drill on Linux or Mac OS X: @@ -8,9 +8,9 @@ First, check that you [meet the prerequisites]({{site.baseurl}}/docs/embedded-mo Complete the following steps to install Drill: 1. In a terminal window, change to the directory where you want to install Drill. -2. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.6.0/apache-drill-1.6.0.tar.gz&action=download) or from the [Apache Drill mirror site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz) with the command appropriate for your system: - * `wget http://apache.mesi.com.ar/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz` - * `curl -o apache-drill-1.6.0.tar.gz http://apache.mesi.com.ar/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz` +2. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.7.0/apache-drill-1.7.0.tar.gz&action=download) or from the [Apache Drill mirror site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz) with the command appropriate for your system: + * `wget http://apache.mesi.com.ar/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz` + * `curl -o apache-drill-1.7.0.tar.gz http://apache.mesi.com.ar/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz` 3. Copy the downloaded file to the directory where you want to install Drill. 4. Extract the contents of the Drill `.tar.gz` file. Use sudo only if necessary: `tar -xvzf <.tar.gz file name>` http://git-wip-us.apache.org/repos/asf/drill/blob/13859d7f/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md ---------------------------------------------------------------------- diff --git a/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md b/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md index aa62422..53e0fda 100644 --- a/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md +++ b/_docs/install/installing-drill-in-embedded-mode/040-installing-drill-on-windows.md @@ -1,11 +1,11 @@ --- title: "Installing Drill on Windows" -date: 2016-03-16 19:05:51 UTC +date: 2016-06-29 02:15:53 UTC parent: "Installing Drill in Embedded Mode" --- First, check that you [meet the prerequisites]({{site.baseurl}}/docs/embedded-mode-prerequisites), including setting the JAVA_HOME environment variable, and then install Drill. Currently, Drill supports 64-bit Windows only. Complete the following steps to install Drill: -1. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.6.0/apache-drill-1.6.0.tar.gz&action=download). +1. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.7.0/apache-drill-1.7.0.tar.gz&action=download). 2. Move the downloaded file to the directory where you want to install Drill. 3. Unzip the GZ file using a third-party tool. If the tool you use does not unzip the underlying TAR file as well as the GZ file, perform a second unzip to extract the Drill software. The extraction process creates the installation directory containing the Drill software. http://git-wip-us.apache.org/repos/asf/drill/blob/13859d7f/_docs/tutorials/020-drill-in-10-minutes.md ---------------------------------------------------------------------- diff --git a/_docs/tutorials/020-drill-in-10-minutes.md b/_docs/tutorials/020-drill-in-10-minutes.md index fe7f6c3..2a02439 100644 --- a/_docs/tutorials/020-drill-in-10-minutes.md +++ b/_docs/tutorials/020-drill-in-10-minutes.md @@ -1,6 +1,6 @@ --- title: "Drill in 10 Minutes" -date: 2016-03-16 19:05:51 UTC +date: 2016-06-29 02:15:54 UTC parent: "Tutorials" description: Get started with Drill in 10 minutes or less. --- @@ -45,9 +45,9 @@ The output looks something like this: Complete the following steps to install Drill: 1. In a terminal window, change to the directory where you want to install Drill. -2. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.6.0/apache-drill-1.6.0.tar.gz&action=download) or from the [Apache Drill mirror site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz) with the command appropriate for your system: - * `wget http://apache.mesi.com.ar/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz` - * `curl -o apache-drill-1.6.0.tar.gz http://apache.mesi.com.ar/drill/drill-1.6.0/apache-drill-1.6.0.tar.gz` +2. Download the latest version of Apache Drill [here](http://www.apache.org/dyn/closer.lua?filename=drill/drill-1.7.0/apache-drill-1.7.0.tar.gz&action=download) or from the [Apache Drill mirror site](http://www.apache.org/dyn/closer.cgi/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz) with the command appropriate for your system: + * `wget http://apache.mesi.com.ar/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz` + * `curl -o apache-drill-1.7.0.tar.gz http://apache.mesi.com.ar/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz` 3. Copy the downloaded file to the directory where you want to install Drill. 4. Extract the contents of the Drill .tar.gz file. Use `sudo` if necessary: `tar -xvzf <.tar.gz file name>`
