java.security.AccessControlException: WFSM000001: Permission check failed (permission "("java.lang.RuntimePermission" "createStdioContext")" in code source " <no signer certificates>)" of "null"

Posted on

After configuring Security-Manager in standalone mode, we set the -secmgr flag to true through standalone.conf and added within security-manager subsystem as below :

    <subsystem xmlns="urn:jboss:domain:security-manager:1.0">
        <deployment-permissions>
            <minimum-set>
                <permission class="java.util.PropertyPermission" name="*" actions="read"/>
            </minimum-set>
            <maximum-set>
                <permission class="java.security.AllPermission"/>
            </maximum-set>
        </deployment-permissions>
    </subsystem>

After this when we start the jboss server with standalone.sh we are getting :-  Permission check failed Screenshot

Please help us to resolve the above said issue.Security_manager_subsystem

Close

Welcome! Check out the Getting Started with Red Hat page for quick tours and guides for common tasks.