-
Notifications
You must be signed in to change notification settings - Fork 275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errors installing Ambry on a Windows based machine #1805
Comments
Hi @salamehsameera, I will try this out on my windows machine later today, but could you try changing the paths to start with |
Thanks @cgtz, I tried both and it did not work out unfortunately, here's the log output:
|
Hi everyone,
I'm new here and I'm trying to install Ambry on my machine. These are the steps that I executed:
$ git clone https://github.com/linkedin/ambry.git
$ cd ambry
$ ./gradlew allJar
$ cd target
$ mkdir logs
Then, when I try to execute the following:
$ nohup java -Dlog4j.configuration=file:../config/log4j.properties -jar ambry.jar --serverPropsFilePath ../config/server.properties --hardwareLayoutFilePath ../config/HardwareLayout.json --partitionLayoutFilePath ../config/PartitionLayout.json > logs/server.log &
I get the following error:
I see that it says that mount path has to be an absolute path, so I adjusted my command to be:
$ nohup java -Dlog4j.configuration=file:/d/users/sameeras/ambry2/config/log4j.properties -jar ambry.jar --serverPropsFilePath /d/users/sameeras/ambry2/config/server.properties --hardwareLayoutFilePath /d/users/sameeras/ambry2/config/HardwareLayout.json --partitionLayoutFilePath /d/users/sameeras/ambry2/config/PartitionLayout.json > logs/server.log &
And the result is:
Does anyone have any idea what could I be missing? Thanks in advance!
The text was updated successfully, but these errors were encountered: