We have configured Oracle Hyperion Essbase with OBIEE on 9704 port. Now , we need to implement security using shared services rather than using weblogic.How can we proceed?
You need to actually install Stand Alone Essbase and Foundation suite, the version you just install is quite different for the security administration. You will also need to reconfigure your environment
Related
I have several Karaf-Containers in different environments, each with 50+ services deployed, and I´m looking for an easy way to compare the versions in each environment.
Is it possible to retrieve a list of all deployed services including the specific version via the jmx-Interface?
You can use the BundlesMBean with objectName org.apache.karaf:type=bundle,name=root.
The attribute Bundles returns Tabular data that contains among other details Symbolic Name and Version.
Simply try with jconsole. It is easy to connect to a local karaf installation.
I need to install Oracle SOA Suite 11.1.1.7 on headless server.
This one:
Fusion Middleware Installation Guide for Oracle SOA Suite and Oracle Business Process Management Suite
I managed to install it through responseFile.rsp, which is a standard Oracle Universall installer file.
The second step is to configure a domain through
$SOA_ORACLE_HOME/common/bin/config.sh
This give me only a GUI Configurator like this one described here:
Fusion Middleware Creating Domains Using the Configuration Wizard
There is a console mode, but there is also an option --silent like in installer before, where variables are set in responseFile.rsp.
But I can't find any description of variables or responseFile.rsp which I can set for silent configuration setup I don't really want do it through console mode, because I want to provision domain through ansible role. Is there anybody who has an experience with this kind of instalation?
Thanks for any response.
I have achieved OSB domain setup using WLST and ansible. I have used below as my reference.
http://myofwexperiments.blogspot.in/2016/01/soa-clustered-domain.html
Try and keep me posted for any clarifications
I got in charge to create a website based on Java. Production environment specs include Solaris 11.1, OHS 12.1.3, WebLogic 12.1.3, Java 1.7.0_51 and Oracle Database 11.2.
I want to create a server on some cloud or hosting service as Development environment with the same specs to avoid migration problems to Production. I also think this approach helps to give my team a single server where they can work and have some testers/client to visit the site.
Normally I would use a local Development environment but a lot of people is involved and differences with Production can become a problem at migration.
I checked http://www.polarhome.com/ but I don't know if it will fit all specs needed. I looked at Windows Azure and Google Cloud with no success. AWS maybe? I also checked https://cloud.oracle.com but I don't understand if they already offer what I need.
Do you know any providers to create my Development environment or another approach/suggestion to develop this project??
Thanks!
EDIT.
To clarify, the client's Production environment already exists and is running somewhere. My project will be installed on that environment when development is finished. I personally think that developing on any VM with WebLogic 12.1.X and Oracle Database 11.X should be enough, but I've never done it so I wanted to follow client's advise on having a Development environment similar to Production.
Do you think I can just create a VM on any OS and just install WebLogic 12 with Oracle Database 11?? Any suggestions to avoid migration issues if I take that route?
I think that develop a new website from scratch thinking to use the architecture proposed by you is a nonsense. I think that if you will use cloud services like PaaS you will do something better.
In any case, you can find solaris VMs on Cloudsigma , Entic and Oracle Public Cloud
Is there a guide that can help me install PeopleSoft, PeopleTools, Tuxedo, Weblogic etc. and connect it to an existing Oracle DB configured for CS?
I'm fine with doing the setup from scratch, but how do I skip the DB creation and just configure the rest to connect to a DB called CSSND2.
Can anyone help with some steps?
The guide I followed is:
http://psst0101.digitaleagle.net/step-by-step/
Oracle has official installation guide for every PeopleTools version.
This is the one for the latest version, 8.55: http://docs.oracle.com/cd/E68526_01/psft/acrobat/PeopleTools_855_Installation_for_Oracle_122015.pdf
If your version is lower, google 'PeopleTools Installation guide ', replacing by your version.
Install all the software on your server, add the details of your schema/database to the tnsnames.ora file, then you can add the App server domain, Process Scheduler domain and web domain. See the guide for details on installation and configuration
I am here to get some expert advice on deploying applications to WebLogic Production Server.
Is it a best practice to use Admin Server Console for deploying and redeploying applications in production. Actually I am deploying to a cluster having two managed server instances.
I have encountered this issue while i am redeploying application in the production. When i am deleting existing .ear file and adding updated .ear file will put the updated .ear file into prepared state. I can not make it Active state using Admin Server Console. If i try it will through some exceptions. But after some time it automatically goes in to active state, but i don't know what is happening inside. Sometimes i restart the server to make it active. Could anybody explain me what is the procedure when deploying application and redeploying applications in weblogic
Thanks in advance for any Help...
Generally WLST (WebLogic Scripting Tool) is used to deploy the applications. Administration Console can also be used to deploy/upgrade the applications but if there are many environments that need to be upgraded then WLST (which works like a command line tool) is much better option.
Get an overview of WLST to know how to use it to deploy/undeploy/upgrade applications.
Check out "Understanding WebLogic Server Deployment" and the "Redeploying Applications in a Production Environment". There are different factors that affect redeployment of an application which you might be running into.
http://docs.oracle.com/cd/E23943_01/web.1111/e13702/understanding.htm#i1057116
http://docs.oracle.com/cd/E23943_01/web.1111/e13702/redeploy.htm#g1039635
Additionally, there is a WebLogic Plug-in for Maven in more recent WebLogic releases that you can use for deployments in conjunction with Maven.