[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-25 Thread Enis Soztutar (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Enis Soztutar updated HBASE-6815:
-

   Resolution: Fixed
Fix Version/s: 0.96.0
 Hadoop Flags: Reviewed
   Status: Resolved  (was: Patch Available)

I've committed this. Thanks Slavik. 

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Fix For: 0.96.0

 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch, 
 hbase-6815_v3.patch, hbase-6815_v4.patch, hbase-6815_v4.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-24 Thread Enis Soztutar (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Enis Soztutar updated HBASE-6815:
-

Release Note: 
Added windows .cmd scripts, similar to bash counterparts for managing hbase 
daemons, and running hbase commands from the Windows Shell. These commands does 
not depend on cygwin. Multi node setup (using SSH or similar) is not supported. 


  was:
This patch contains windows scripts.

Right now the following is supported within the dev environment:

1. Getting version:
 C:\apache_hbasebin\hbase.cmd version
 13/01/15 22:28:22 INFO util.VersionInfo: HBase 0.95-SNAPSHOT
 13/01/15 22:28:22 INFO util.VersionInfo: Subversion 
file:///cygdrive/c/apache_hbase/hbase-server -r Unknown
 13/01/15 22:28:22 INFO util.VersionInfo: Compiled by viatk on Tue Jan 15 
10:27:11 PST 2013

2. Getting classpath:
 C:\apache_hbasebin\hbase.cmd classpath
 
C:\apache_hbase\bin\..\conf;C:\hw\tools\java\lib\tools.jar;C:\Users\viatk\.m2\repository\asm\asm\3.1\asm-3.1.jar;C:\U...

3. Starting HBASE in standalone mode:
 C:\apache_hbasebin\start-hbase.cmd
 Would start hbase in a separate console app

4. Running hbase shell:
 C:\apache_hbasebin\hbase.cmd shell
 Would start hbase shell in a separate window.
 One can create tables and put and scan data via shell there.

5. Stopping hbase:
 C:\apache_hbasebin\stop-hbase.cmd
 Would stop HBase.

You need set JAVA_HOME (either via env. varable or by modifying 
conf\hbase-env.cmd)
 Ex. C:\apache_hbaseset JAVA_HOME=C:\hw\tools\java

Please let me know if you run into issues!



 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch, 
 hbase-6815_v3.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-24 Thread Enis Soztutar (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Enis Soztutar updated HBASE-6815:
-

Attachment: hbase-6815_v4.patch

+1 for the patch. 
I've tested this with local mode setup, bin/start-hbase.cmd, as well as 
bin/hbase.cmd version, shell, etc. 

I've noticed 2 minor issues, one is the hbase.root.logger should be 
INFO,console, rather than -INFO,console. 
The other is, I removed the obsolete MVN references. Attaching an updated patch 
with these changes on top of v3. 

I am going to commit this version, unless objection. If we find issues, we can 
fix them in other jiras. 


 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch, 
 hbase-6815_v3.patch, hbase-6815_v4.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-24 Thread Enis Soztutar (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Enis Soztutar updated HBASE-6815:
-

Attachment: hbase-6815_v4.patch

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch, 
 hbase-6815_v3.patch, hbase-6815_v4.patch, hbase-6815_v4.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-22 Thread Slavik Krassovsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Slavik Krassovsky updated HBASE-6815:
-

Attachment: hbase-6815_v3.patch

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch, 
 hbase-6815_v3.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-16 Thread Slavik Krassovsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Slavik Krassovsky updated HBASE-6815:
-

Release Note: 
This patch contains windows scripts.

Right now the following is supported within the dev environment:

1. Getting version:
 C:\apache_hbasebin\hbase.cmd version
 13/01/15 22:28:22 INFO util.VersionInfo: HBase 0.95-SNAPSHOT
 13/01/15 22:28:22 INFO util.VersionInfo: Subversion 
file:///cygdrive/c/apache_hbase/hbase-server -r Unknown
 13/01/15 22:28:22 INFO util.VersionInfo: Compiled by viatk on Tue Jan 15 
10:27:11 PST 2013

2. Getting classpath:
 C:\apache_hbasebin\hbase.cmd classpath
 
C:\apache_hbase\bin\..\conf;C:\hw\tools\java\lib\tools.jar;C:\Users\viatk\.m2\repository\asm\asm\3.1\asm-3.1.jar;C:\U...

3. Starting HBASE in standalone mode:
 C:\apache_hbasebin\start-hbase.cmd
 Would start hbase in a separate console app

4. Running hbase shell:
 C:\apache_hbasebin\hbase.cmd shell
 Would start hbase shell in a separate window.
 One can create tables and put and scan data via shell there.

5. Stopping hbase:
 C:\apache_hbasebin\stop-hbase.cmd
 Would stop HBase.

You need set JAVA_HOME (either via env. varable or by modifying 
conf\hbase-env.cmd)
 Ex. C:\apache_hbaseset JAVA_HOME=C:\hw\tools\java

Please let me know if you run into issues!

  Status: Patch Available  (was: Open)

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-16 Thread Slavik Krassovsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Slavik Krassovsky updated HBASE-6815:
-

Attachment: hbase-6815_v2.patch

ANSI version of the patch.

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-16 Thread Slavik Krassovsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Slavik Krassovsky updated HBASE-6815:
-

Status: In Progress  (was: Patch Available)

Added v2 version

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-16 Thread Slavik Krassovsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Slavik Krassovsky updated HBASE-6815:
-

Status: Patch Available  (was: Open)

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch, hbase-6815_v2.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2013-01-15 Thread Slavik Krassovsky (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Slavik Krassovsky updated HBASE-6815:
-

Attachment: hbase-6815_v1.patch

The patch contains Windows scripts.

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky
 Attachments: hbase-6815_v1.patch


 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2012-10-16 Thread Enis Soztutar (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Enis Soztutar updated HBASE-6815:
-

Assignee: Slavik Krassovsky

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.94.3, 0.96.0
Reporter: Enis Soztutar
Assignee: Slavik Krassovsky

 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-6815) [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a single user mode

2012-09-18 Thread Enis Soztutar (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-6815?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Enis Soztutar updated HBASE-6815:
-

Issue Type: Sub-task  (was: Improvement)
Parent: HBASE-6814

 [WINDOWS] Provide hbase scripts in order to start HBASE on Windows in a 
 single user mode
 

 Key: HBASE-6815
 URL: https://issues.apache.org/jira/browse/HBASE-6815
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.96.0, 0.94.3
Reporter: Enis Soztutar

 Provide .cmd scripts in order to start HBASE on Windows in a single user mode

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira