weblogic 安全审计的问题
请问怎么启用weblogic 安全审计中间件的日志审计功能,是否记录所有与安全性相关活动的功能,例如:用户登录、资源访问要求。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
请问怎么启用weblogic 安全审计中间件的日志审计功能,是否记录所有与安全性相关活动的功能,例如:用户登录、资源访问要求。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
新手路过.。。。。。。。。。。
@jqm2009@zp989
因为看的都是英文文档,猜想你们要的是: Secure Audit Logging in Weblogic, 按照下面的流程,可以添加一个审核。
Security->Realms->myrealm->Providers->Auditing
有以下几个级别
Severity levels are ranked in this order:
INFORMATION
WARNING
ERROR (包括下面的 success 和 failure)
SUCCESS
FAILURE
The values of state can be:
R - Runnable - the thread is able to run when given the chance.
CW - Condition Wait - the thread is waiting. For example, because:
A sleep() call is made
The thread has been blocked for I/O
A wait() method is called to wait on a monitor being notified
The thread is synchronizing with another thread with a join() call
S – Suspended – the thread has been suspended by another thread.
Z – Zombie – the thread has been killed.
P – Parked – the thread has been parked by the new concurrency API (java.util.concurrent).
B – Blocked – the thread is waiting to obtain a lock that something else currently owns.
请问怎么启用weblogic 安全审计中间件的日志审计功能,是否记录所有与安全性相关活动的功能,例如:用户登录、资源访问要求。
这个问题我很想知道答案!
java dump中的很多线程处于state:CW和state:B状态,他们之间有什么区别吗?