Browsing articles tagged with "weblogic - Admins Goodies"
Jun 17, 2012
tom

why Apache with ssl but back end weblogic without ssl works?

    Hello everyone. my question is very simple . The link below is a picture about my architecture. https://docs.google.com/open?id=0BxSXbpgYIZVOR212RVk4ZDN1Sm8.      The pic above shows the architecture right now and it works correctly ! which means I could visit apache with url https//apchehost:8080, could not visit the web app with https served by weblogic but I could visit these app with https served by Apache(Apache is proxy server).      My question is why the Apache is configured [...]

Continue Reading »
May 25, 2012
tom

WebLogic cluster, determine node from JSESSIONID cookie

We are running a WebLogic 10.3.4 cluster with three managed servers (nodes). We do not use session stickyness, but session replication across the cluster and everything is working fine. When trying to test our web application however, we regularly try to figure out on which node the user currently is (in order to find the correct log files). The JSESSIONID cookie has the format: sessionid!primary_server_id!secondary_server_id as specified in the official WLS Cluster Documentation. Is there [...]

Continue Reading »
Apr 9, 2012
tom

Which book would you recommend for a Weblogic sysadmin? [closed]

Apart from the BEA docs? Asked by n/a This one is very easy to answer. Sam Alapti’s Oracle WebLogic Server 11g Administration Handbook is the most detailed and up to date Weblogic book. Answered by n/a Check more discussion of this question. Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Print for later Bookmark in Browser Tell a friend

Continue Reading »
Aug 23, 2011
tom

Usual suspects for WebLogic 9.2 performance tuning

Reading through the BEA WebLogic 9.2 Deployment Descriptor Elements documentation, there are a few parameters that we already use in our web applications weblogic.xml to decrease the time it takes to run continuous integration tests against WebLogic 9.2: jsp-descriptor, precompile, false jsp-descriptor, page-check-seconds, -1 container-descriptor, servlet-reload-check-secs, -1 This is what our weblogic.xml looks like: <?xml version=”1.0″ encoding=”UTF-8″?> <weblogic-web-app xmlns=”http://www.bea.com/ns/weblogic/90″ xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:schemaLocation=”http://www.bea.com/ns/weblogic/90 http://www.bea.com/ns/weblogic/90/weblogic-web-app.xsd”> <jsp-descriptor> <page-check-seconds>-1</page-check-seconds> <precompile>false</precompile> </jsp-descriptor> <container-descriptor> <servlet-reload-check-secs>-1</servlet-reload-check-secs> </container-descriptor> </weblogic-web-app> Are there are any other [...]

Continue Reading »
Aug 22, 2011
tom

WebLogic 10.x – Run Admin server in the background

Like the Title says, I need to run the admin server as a windows service. Actually, I would be happy evem if there is a command to run the admin server that terminates once the server is up and running. Any ideas would be appreciated. You normally would set that up during the install process. But here is the document that outlines the process. If you are going to be running instances other than the [...]

Continue Reading »
Aug 21, 2011
tom

Installing SSL Support in Weblogic 10

I have some troubles installing my SSL Certificate into Weblogic 10, here are my configuration steps: Copied the .cert and .key to the server Executed the following: []# keytool -import -keystore myKeystore -trustcacerts -alias myKeystore -file myCert.cert -storepass myStorePass -noprompt Certificate was added to keystore Executing the following: []# java utils.ImportPrivateKey myKeystore myStorePass myKeystore myStorePass myCert.cert myCert.key Imported private key myCert.key and certificate myCert.cert into keystore myKeystore of type jks under alias myKeystore Running Weblogic [...]

Continue Reading »
Aug 21, 2011
tom

Weblogic – Adding websites

Is it possible to create a website in a domain pointing to a local directory? Or does everything deployed to Weblogic have to be WAR, EAR, RAR or JAR? I want a simple possibility to just FTP to a folder, add html-files and have them added to weblogic, is this possible? WebLogic can be configured to handle static content site, without it being any type of archive. The way I have done this is to [...]

Continue Reading »
Aug 20, 2011
tom

Oracle Embedded LDAP Error

I just installed the Oracle Weblogic Server. The server start fines and I can get to the admin console and use it, but once I deploy the console I begin to get exceptions on the server and it pegs the processor at 100%. The expection is : <Nov 4, 2009 11:14:00 PM EST> <Critical> <EmbeddedLDAP> <BEA-000000> <java.lang.NegativeArraySizeException at com.octetstring.vde.EntryChanges.readBytes(EntryChanges.java:274) at com.octetstring.vde.EntryChanges.<init>(EntryChanges.java:72) at com.octetstring.vde.replication.BackendChangeLog.getChange(BackendChangeLog.java:548) at com.octetstring.vde.replication.Replicator.run(Replicator.java:180) at com.octetstring.vde.replication.Replication.run(Replication.java:339) The exception is repeated about every second. I [...]

Continue Reading »
Aug 19, 2011
tom

Custom Trust and Custom Identity Keystore in WebLogic 10.3

QUESTION Having configured the Custom Trust and Custom Identity Keystores in WebLogic 10.3, anyone know why WebLogic 10.3 still persists to load the Demo key store and the JDK trust store please? DESCRIPTION I start WebLogic, browse to https://mysite.com/console and login, navigate to Environments->Servers->Admin Server->Keystores and configure the keystores and set the identity and trust keystores (both are the same keystore). I stop WebLogic, and modify the ${DOMAIN_HOME}/bin/startWebLogic.sh to include the following line: JAVA_OPTIONS=”${JAVA_OPTIONS} -Dssl.debug=true [...]

Continue Reading »
Aug 18, 2011
tom

Can’t start managed server in Oracle Weblogic 10.3.2

I installed Oracle SOA Suite 11g. I start the NodeManager successfully. I start the AdminServer successfully. When I go to start the soa serve (soa_server1) I get this output: NMProcess: <Mar 15, 2010 3:33:30 PM> <WARNING> <Exception while starting server ‘soa_server1′> NMProcess: java.io.IOException: Server failed to start up. See server output log for more details. NMProcess: at weblogic.nodemanager.server.ServerManager.start(ServerManager.java:331) NMProcess: at weblogic.nodemanager.server.Handler.handleStart(Handler.java:541) NMProcess: at weblogic.nodemanager.server.Handler.handleCommand(Handler.java:116) NMProcess: at weblogic.nodemanager.server.Handler.run(Handler.java:70) NMProcess: at java.lang.Thread.run(Thread.java:619) NMProcess: NMProcess: Mar 15, 2010 [...]

Continue Reading »
Pages:123»