You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ts...@apache.org on 2015/05/19 01:36:44 UTC

[21/31] drill git commit: add screenshot, clarification

add screenshot, clarification


Project: http://git-wip-us.apache.org/repos/asf/drill/repo
Commit: http://git-wip-us.apache.org/repos/asf/drill/commit/4f4d4fb8
Tree: http://git-wip-us.apache.org/repos/asf/drill/tree/4f4d4fb8
Diff: http://git-wip-us.apache.org/repos/asf/drill/diff/4f4d4fb8

Branch: refs/heads/gh-pages
Commit: 4f4d4fb8dbdcdd188cc651713427a04c5588fc7e
Parents: 46617fc
Author: Kristine Hahn <kh...@maprtech.com>
Authored: Mon May 18 08:23:01 2015 -0700
Committer: Kristine Hahn <kh...@maprtech.com>
Committed: Mon May 18 08:23:01 2015 -0700

----------------------------------------------------------------------
 _docs/img/sqlline1.png                          | Bin 6633 -> 10413 bytes
 .../050-starting-drill-on-windows.md            |  15 +++++++++------
 2 files changed, 9 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/4f4d4fb8/_docs/img/sqlline1.png
----------------------------------------------------------------------
diff --git a/_docs/img/sqlline1.png b/_docs/img/sqlline1.png
index 5ea6b30..5045644 100755
Binary files a/_docs/img/sqlline1.png and b/_docs/img/sqlline1.png differ

http://git-wip-us.apache.org/repos/asf/drill/blob/4f4d4fb8/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
----------------------------------------------------------------------
diff --git a/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md b/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
index 2a4a9bd..942d727 100644
--- a/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
+++ b/_docs/install/installing-drill-in-embedded-mode/050-starting-drill-on-windows.md
@@ -4,17 +4,20 @@ parent: "Installing Drill in Embedded Mode"
 ---
 Start the Drill shell using the **sqlline command**. The `zk=local` means the local node is the ZooKeeper node. Complete the following steps to launch the Drill shell:
 
-1. Open the apache-drill-0.1.0 folder.  
-2. Go to the bin directory.
-2. Open Command Prompt and type the following command on the command line:
+1. Open Command Prompt.
+2. Open the apache-drill-1.0.0 folder. For example:  
+   ``cd apache-drill-1.0.0``
+3. Go to the bin directory. For example:  
+   ``cd bin``
+4. Type the following command on the command line:
    ``sqlline.bat -u "jdbc:drill:zk=local"``
-3. Enter the username, `admin`, and password, also `admin` when prompted.
-   The `0: jdbc:drill:zk=local>` prompt appears.
+   ![drill install dir]({{ site.baseurl }}/docs/img/sqlline1.png)
+
 At this point, you can [submit queries]({{ site.baseurl }}/docs/drill-in-10-minutes#query-sample-data) to Drill.
 
 You can use the schema option in the **sqlline** command to specify a storage plugin. Specifying the storage plugin when you start up eliminates the need to specify the storage plugin in the query: For example, this command specifies the `dfs` storage plugin.
 
-    c:\bin\sqlline sqlline.bat –u "jdbc:drill:schema=dfs;zk=local"
+    C:\bin\sqlline sqlline.bat –u "jdbc:drill:schema=dfs;zk=local"
 
 ## Exiting the Drill Shell