Skip to content

Instantly share code, notes, and snippets.

@rotty3000
Last active December 24, 2015 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rotty3000/6816074 to your computer and use it in GitHub Desktop.
Save rotty3000/6816074 to your computer and use it in GitHub Desktop.
websphere notes
  • edit <profile_root>/config/cells/<cell_name>/nodes/<node_name>/app.policy
  • in each "grant" section replace content by permission java.security.AllPermission;
  • add the following to the end of the same file
grant codeBase "file:${was.install.root}/lib/-" {
  permission java.security.AllPermission;
};

grant codeBase "file:${was.install.root}/plugins/-" {
  permission java.security.AllPermission;
};

grant codeBase "file:${server.root}/-" {
  permission java.security.AllPermission;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment