Posts

Showing posts from February, 2020

Create OHS Domain (Standalone) using WLST

Image
Hello, Oracle Fusion product fans!! In this series of Oracle Fusion technical learning, I would like to share the latest experiment on OHS domain creation using WLST. It's a situation where I've installed OHS Standalone on a Vagrant based CentOS VirtualBox and need to run the OHS instance. I've searched on Google and also in Oracle but there is no such simple code or step that will work without X11 forwarding. Got a thought, There could be similar requirements may be there in a docker container as well. Searched in Github about OHS image creation code there I've learnt how does this WLST help us to create the OHS domain and creates ohs1 component instance within it. Create OHS Domain standalone mode using WLST script The magical WLST script looks like this... #!/usr/bin/python # Create OHS Domain standalone mode with 'ohs1' as system Component # Created date : 12-02-2020 import os, sys def read_ohsdomain_template(): """ Select a...