I have Websphere 8.5 on Solaris.
================================
I have an agent name myAgent.jar which has to be loaded while stating the JVM during the process of starting the application.
As per my research, we have to update the
g<jvmEntries .... genericJvmArguments="-javaagent:/opt/IBM/WebSphere/AppServer/AppDefender_Agent/lib-19.2.0/myAgent.jar -Xshareclasses:none"
..........
</jvmEntries>
When I start my server, it doesn't start . In fact, I am not getting any error or exception also.
I am wondering what mistake I am making . May be some error in the server.xml file. I need to troubleshoot and for that I need the error .
I have checked the ownership and permission, which is same as application owner.
For security setting purpose, I checked and gave permission as well.
1- Please check the if security policy set on the server or profile level. If that is the case then we have to give the permission in both server and profile level. You can check in
/opt/IBM/WebSphere/AppServer/profiles/Appsrv01/properties/server.policy
grant codeBase ‘file:/opt/IBM/WebSphere/AppServer/AppDefender_Agent/lib-19.2.0/myAgent.jar’
{
permission java.security.AllPermission;
};
Still no clue. Please advise.
#Support#SupportMigration#WebSphereApplicationServer(WAS)