You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Shyam Phirke (JIRA)" <ji...@apache.org> on 2018/04/25 17:00:06 UTC

[jira] [Updated] (CASSANDRA-14418) Cassandra not getting started when using enhanced startup scripts in windows

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

Shyam Phirke updated CASSANDRA-14418:
-------------------------------------
    Description: 
I am using Apache Cassandra 3.11.2 with my application. 

My application is getting installed under C:/Program Files/My Application/Some Folder/.

And cassandra C:/Program Files/My Application/Some Folder/cassandra.

So when I am using enhanced startup scripts cassandra not getting up and running and I am getting below error:

"Error: Could not find or load main class Files\My"

One of the solution I got is moving cassandra to another location where location path does not contain spaces. But this is not good way of getting this problem resolved.

After doing detailed analysis of all the scripts I found the solution below:

Inside file cassandra-env.ps1 at line number 380:

Replace line:

$env:JVM_OPTS = "$env:JVM_OPTS -XX:CompileCommandFile=$env:CASSANDRA_CONF\hotspot_compiler"

with line

$env:JVM_OPTS = "$env:JVM_OPTS -XX:CompileCommandFile=""$env:CASSANDRA_CONF\hotspot_compiler"""

Fix here is the double quotes added before $env:CASSANDRA_CONF and at the end.

At other places this case is well handled. But missed at this place.

 

  was:
I am using Apache Cassandra 3.11.2 with my application. 

My application is getting installed under C:/Program Files/My Application/Some Folder/.

And cassandra C:/Program Files/My Application/Some Folder/cassandra.

So when I am using enhanced startup scripts cassandra not getting up and running and I am getting below error:

"Error: Could not find or load main class Files\My"

One of the solution I got is moving cassandra to another location where location path does not contains spaces. But this is not good way of getting this problem resolved.

After doing detailed analysis of all the scripts I found the solution below:

Inside file cassandra-env.ps1 at line number 380:

Replace line:

$env:JVM_OPTS = "$env:JVM_OPTS -XX:CompileCommandFile=$env:CASSANDRA_CONF\hotspot_compiler"

with line

$env:JVM_OPTS = "$env:JVM_OPTS -XX:CompileCommandFile=""$env:CASSANDRA_CONF\hotspot_compiler"""

Fix here is the double quotes added before $env:CASSANDRA_CONF and at the end.

At other places this case is well handled. But missed at this place.

 


> Cassandra not getting started when using enhanced startup scripts in windows
> ----------------------------------------------------------------------------
>
>                 Key: CASSANDRA-14418
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-14418
>             Project: Cassandra
>          Issue Type: Bug
>            Reporter: Shyam Phirke
>            Priority: Major
>             Fix For: 3.11.x
>
>
> I am using Apache Cassandra 3.11.2 with my application. 
> My application is getting installed under C:/Program Files/My Application/Some Folder/.
> And cassandra C:/Program Files/My Application/Some Folder/cassandra.
> So when I am using enhanced startup scripts cassandra not getting up and running and I am getting below error:
> "Error: Could not find or load main class Files\My"
> One of the solution I got is moving cassandra to another location where location path does not contain spaces. But this is not good way of getting this problem resolved.
> After doing detailed analysis of all the scripts I found the solution below:
> Inside file cassandra-env.ps1 at line number 380:
> Replace line:
> $env:JVM_OPTS = "$env:JVM_OPTS -XX:CompileCommandFile=$env:CASSANDRA_CONF\hotspot_compiler"
> with line
> $env:JVM_OPTS = "$env:JVM_OPTS -XX:CompileCommandFile=""$env:CASSANDRA_CONF\hotspot_compiler"""
> Fix here is the double quotes added before $env:CASSANDRA_CONF and at the end.
> At other places this case is well handled. But missed at this place.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cassandra.apache.org
For additional commands, e-mail: commits-help@cassandra.apache.org