Reputation: 31
After running this command java -jar corda.jar.
I am getting this error:
CAPSULE EXCEPTION: Capsule not extracted. while processing system property java.io.tmpdir: /tmp (for stack trace, run with -Dcapsule.log=verbose)
Upvotes: 3
Views: 435
Reputation: 446
I got this error while trying to launch my application. Checking the contents of the error with -Dcapsule.log=verbose
, java complained that it could not clean the temporary folder. After a quick check I found an instance of the application was running in the background, which prevented cleaning. Closing this instance solved the issue.
Upvotes: 0
Reputation: 1053
So with only the information here it's hard to have any clue what the issue is.
It's possible you have a bad download so I'd say to just download a newer version of the corda jar and give it another try with the verbose flag to see what the issue is.
Upvotes: 1