May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Categories

May 2024
M T W T F S S
 12345
6789101112
13141516171819
20212223242526
2728293031  

Installation procedure for SSL Certificate in WebLogic

Installation procedure for SSL Certificate in WebLogic

 

 

BEA System’s WebLogic is one of the best e-commerce online transaction processing (OLTP) platforms. It’s a server software application which is efficiently developed to connect users in a distributed computing environment to assist the integration of mainframe applications, distributed corporate data and applications.

WebLogic server’s main […]

Configure SSL on Weblogic

WebLogic Server 11g and 12c : Configure SSL for a Managed Server

By default WebLogic managed servers are configured with demo identity and trust information. This should be reconfigured to use real, or self-signed certificates. This article describes how this is done.

Create Keystores and Certificates Clustered Environments Configure SSL for Managed Server Configure Node […]

WebLogic Server SSL

One-way SSL

One-way SSL simply means that only the server certificate passes from the server to the client but not the other way around. Thus, only the server is authenticated. If we trust the server certificate’s issuer, we can establish an SSL link between our browser and the server [3].

Two-way SSL

When both client […]

The WebLogic Admin Server 11g just hangs upon startup

Problem:

Due to our disk space having filled up, I shutdown the Oracle WebLogic AdminServer 11g (11.1.1.3), cleared some logs, and restarted it.

However, when I start it up, it just stops at the entry below. No movement in the log whatsoever, and nothing is happening on the server.

oracle@oradev:/u01/app/oracle/middleware/user_projects/domains/soa_domain/bin> ./startWebLogic.sh ***************************************************** ** Setting up […]

2012 server weblogic 12C

very important sometimes to set up a software application as an window service on Window Platform.Window service enable a software application to start working

as soon as Machine is turned on so that no manual or human interaction is required to start that application whenever machine is turned on.In this article i will show how

[…]

Weblogic Monitoring Dashboard to monitor the resources

Monitoring dashboard is the new feature of latest weblogic server to view diagnostic data without doing additional setup.

This is the extension of the WLDF framework. The Monitoring Dashboard provides views and tools for graphically presenting diagnostic data about servers and applications running on them. The underlying functionality for generating, retrieving, and persisting diagnostic data […]

Weblogic Managed server status struck in STARTING

We faced the issue while starting the weblogic managed server the status of the server struck in STARTING.

W could not able to find a valid error messages in the log files

Managed Server Log File:

<30-Oct-2013 11:13:29 o’clock GMT> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>

No logs are getting printed after […]

Wildcard SSL HostnameVerifier in Weblogic Server

Before WLS release 10.3.5, weblogic servers’s hostname verification code did not supports the wildcard certificate by default we have to create a custom hostname verification code to handle this scenario but from WLS release 10.3.5, weblogic servers hostname verification code by default supports the wildcard certificates.

Wildcard SSL Certificates work the same way as a […]

Updating the Graceful Shutdown parameters through WLST script.

The script will help us to update the Graceful Shutdown parameter for the servers in the weblogic domain.

UpdateGracefulShutdownParameters.py

def conn():

try: adminURL=’t3://’+domainProps.get(‘domain1.AdminIP’)+’:’+domainProps.get(‘domain1.AdminPort’) adminUserName=’weblogic’ adminPassword=domainProps.get(“domain1.AdminPasswd”) connect(adminUserName, adminPassword, adminURL) except ConnectionException,e: print ‘Unable to find admin server…’ exit()

def updateGraceFulShutdownTimings(): edit() startEdit() print print ‘##############’ print ‘# Update Graceful Shutdown to 300 Seconds and […]

Configuring the DefaultFileStore for TLOGS through WLST script

The below script will help us to set the shared location to the tlogs for the weblogic servers in a domain.

import sys

print “@@@ Starting the script …”

from java.util import * from javax.management import * from java.io import FileInputStream

print “@@@ Starting the script …” global props #The directory of the domain configuration […]