Reputation: 29227
We're setting up a development team, where we want each developer to run its copy of Weblogic in their workstations.
Ideally, we would like all these installs to be as similar to the production environment as possible. Things like:
I would like to set the server once and replicate the configuration to everyone on the team.
Is there a way to share this kind of configuration accross the team ? Maybe share some config files ? Some Weblogic jython script that recreates the environment ? How to do it ?
Weblogic version is Weblogic 12c.
Upvotes: 2
Views: 1532
Reputation: 35
Oracle has recommended to use pack/unpack to extend domain. Both the commands are easy to use and can be executed easily
Upvotes: 0
Reputation: 1844
servers/AdminServer/security/boot.properties
for easier server start up and commit it.startWebLogic.cmd
make DOMAIN_HOME
relative:
set DOMAIN_HOME=%~dp0
startWeblogic.cmd
config/
folder and changed files (not new): git add config
and git add -u
lib/
folder and commit.See example repository on github.
Upvotes: 1
Reputation: 1323
This kind of problem is addressed by infrastructure configuration automation tools, such as Ansible, Puppet and Chef.
Having an authoritative environment configuration defined using one of these tools can be not only useful for development environment setup purposes, but also for any other production or non-production environments.
Upvotes: 0
Reputation: 2253
Yes, using biemond/orawls. An example of how to use it is available here.
Upvotes: 0