Showing posts with label Weblogic. Show all posts
Showing posts with label Weblogic. Show all posts

Weblogic Domain

domain is the basic administration unit for WebLogic Server instances. A domain consists of one or more WebLogic Server instances (and their associated resources) that you manage with a single Administration Server. You can define multiple domains based on different system administrators' responsibilities, application boundaries, or geographical locations of servers. Conversely, you can use a single domain to centralize all WebLogic Server administration activities.
Each domain's configuration is stored in a separate configuration file called config.xml, which is stored on the Administration Server along with other files such as logs and security files. When you use the Administration Server to perform a configuration task, the changes you make apply only to the domain managed by that Administration Server. To manage another domain, use the Administration Server for that domain. For this reason, the servers instances, applications, and resources in one domain should be treated as being independent of servers, applications, and resources in a different domain.You cannot perform configuration or deployment tasks in multiple domains at the same time.

Deploying BlazeDS to Weblogic 10.0

Link

ERROR: JDWP unable to get necessary JVMTI capabilities.

I got this error today when I try to start up weblogic as debug mode.

Did some searching, here is the solution:

I found that I have 2 sets of "-Xdebug -Xrunjdwp:", one is for 8453, the other is for 5005.

I simply removed the 5005 one:

-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005

Now it's working.