Book Image

Oracle WebLogic Server 12c Advanced Administration Cookbook

By : Dalton Iwazaki
Book Image

Oracle WebLogic Server 12c Advanced Administration Cookbook

By: Dalton Iwazaki

Overview of this book

Table of Contents (15 chapters)
Oracle WebLogic Server 12c Advanced Administration Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating the file stores


Oracle WebLogic Server 12c makes use of its own storage solution, known as the Persistent Store. The persistent store can be used by the JMS subsystem to persist the JMS messages of a JMS destination. It can also be used by the transaction log (TLOG) for keeping information of committed transactions on course or to store WLDF diagnostic information, among other functionalities.

The persistent store can be file-based or JDBC-based. All WebLogic Server instances include a default file-based persistent store. The default persistent store is located at $DOMAIN_HOME/servers/<instance_name>/data/store/default.

In this recipe a new custom file store will be created in all Managed Servers of the PROD_Cluster cluster.

Getting ready

For the cluster PROD_Cluster, we will consider the file stores FileStore01, FileStore02, FileStore03, and FileStore04 for the instances PROD_Server01, PROD_Server02, PROD_Server03, and PROD_Server04 respectively.

Managed Server

Persistent store...