Skip to main content

Apache’s open source Derby database to create a database instance For Weblogic Testing sample applications


Step:1 Go To below location for starting network server
E:\Middleware\Oracle_Home\wlserver\common\derby\bin>startNetworkServer



Step:2 To start the interactive shell for derby Database go to below path and start the interactive shell and execute below commands
E:\Middleware\Oracle_Home\wlserver\common\derby\lib>java -jar derbyrun.jar ij
ij version 10.11
ij> CONNECT 'jdbc:derby://localhost:1527/demodb;create=true';
ij> exit;


step:3 We need to use derby database drivers for connecting weblogic servers. So manually we need to copy the derbyclient.jar file into domain home lib directory like below screenshots.


step:4 We need to restart the weblogic admin server and check derby driver loaded (or) not check like below screenshot.


Step:5 for creating and testing derby database on weblogic admin console olease find below attached screenshots for reference.

Note: For creating derby database no need to user username and password

Comments

Popular posts from this blog

Oracle WebLogic Server Version Finding Ways

1. We can determine weblogic server version using registry.xml file: Location in WLS 12.2.1.3: $ORACLE_HOME/inventory/registry.xml <distribution status="installed" name="WebLogic Server" version="12.2.1.3.0"> e.g. /u02/oracle12213/oracle_home/middleware/inventory/registry.xml <?xml version = '1.0' encoding = 'UTF-8' standalone = 'yes'?> <registry home="/u02/oracle12213/oracle_home/middleware" platform="226" sessions="5" xmlns:ns2="http://xmlns.oracle.com/cie/gdr/dei" xmlns:ns3="http://xmlns.oracle.com/ cie/gdr/nfo" xmlns="http://xmlns.oracle.com/cie/gdr/rgy">    <distributions>       <distribution status="installed" name="WebLogic Server" version="12.2.1.3.0">          <sessions>             <session id="1" date="2017-10-21T17:53:51.433+05:30" action="install"/>          ...

Oracle Http Server 12 C Configuration File's

In Ohs 12c Oracle changed the complete structure by introducing the domain & instances just like Weblogic There are Two Configuration files for Ohs 12C 1.Staging F:\OHS\user_projects\domains\base_domain\config\fmwconfig\components\OHS\ohs1 2.Runtime F:\OHS\user_projects\domains\base_domain\config\fmwconfig\components\OHS\instances\ohs1 You need to make changes in Staging configuration files and these changes automatically replicated to the configuration files of the run time environment.

Node Manager Username and Password for Oracle HTTP Server 12c in a Standalone Domain

Start the Ohs Instance for 12C F:\OHS\user_projects\domains\base_domain\bin>stopComponent.cmd ohs1 Step:1 Stop the OHS component F:\OHS\user_projects\domains\base_domain\bin>stopComponent.cmd ohs1 Stopping System Component ohs1 ... Initializing WebLogic Scripting Tool (WLST) ... Welcome to WebLogic Server Administration Scripting Shell Type help() for help on available commands Reading domain from F:/OHS/user_projects/domains/base_domain Please enter Node Manager password: Connecting to Node Manager ... Successfully Connected to Node Manager. Killing server ohs1 ... Successfully killed server ohs1 Successfully disconnected from Node Manager. Exiting WebLogic Scripting Tool. Done Step:2   Invoke WLST offline F:\OHS\oracle_common\common\bin>wlst.cmd Initializing WebLogic Scripting Tool (WLST) ... Welcome to WebLogic Server Administration Scripting Shell Type help() for help on available commands wls:/offline> Step:3 Conne...