I'd like to grant permissions to my jstatd on linux
The corresponding manual reads:

To use this policy, copy the text into a file called jstatd.all.policy and run the jstatd server as follows:

jstatd -J-Djava.security.policy=jstatd.all.policy

But where on linux should I place this jstatd.all.policy file?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

As far as i remember you have to create the file in the same location as jstatd (...jdk/bin/) and it should work.

Update: From here:

The user policy file is by default located at

user.home/.java.policy (Solaris/Linux)

user.home\.java.policy (Windows)

Note: user.home refers to the value of the system property named "user.home", which specifies the user's home directory.

link|improve this answer
Any ideas about alternative locations? ${JAVA_HOME/bin} is on a read-only filesystem which I don't control here. – kittylyst Feb 23 at 16:54
1  
I have updated my answer, should be the thing you need. – ortang Feb 23 at 20:16
feedback

You can also give a full path to the policy that would be used such as:

jstatd -p 1099 -J-Xrs -J-Djava.security.policy=C:\jstatd\tools.policy

This is helpful if you are on a shared machine and want a central place to add policies.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.