What are the minimum unix permissions to run an executable jar file? What are the minimum unix permissions to run an executable jar file? unix unix

What are the minimum unix permissions to run an executable jar file?


You just need read on the .jar, since 'java' is what you're executing, and it reads the jar.


You will need read, since the jar is virtually executed by java (of course java needs to have exec permissions). But if you have a program that stores some datas inside itself (it can happen, for example storing settings) I would suggest to have also the write attribute set.