Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

windows services to start forms

lakeApr 16 2019 — edited Apr 19 2019

https://docs.oracle.com/en/middleware/lifecycle/12.2.1.3/asadm/starting-and-stopping.html#GUID-0A1802DC-DD3C-46B2-B91B-5…

"However, that chapter describes the process for a standalone Oracle WebLogic Server installation. When Oracle WebLogic Server is part of an Oracle Fusion Middleware environment, you must set the environment to include references to ORACLE_COMMON."  That script has no reference to ORACLE_COMMON in there, mysteriously.

I do not understand what we are trying to do here. If I use startWebLogic.cmd I end up with

http://machine:7001/console and em

and http://machine:9001  (forms)

and Ohs1 at 777,4443,and 7779

using this script below I ended up with nothing working right although it did install as a service.

For one thing, is the admin server a "managed server"?  The terminology really escapes me. If this is starting the

admin server then why are we telling it where the admin server is, if this is the admin server?  BTW I checked that the boot.properties file has been

set and encrypted.

echo off

SETLOCAL

set DOMAIN_NAME=base_domain

set USERDOMAIN_HOME=c:\Oracle\Middleware\Oracle_Home\user_projects\domains\base_domain

set SERVER_NAME=WeblogicAdmin

set PRODUCTION_MODE=false

set JAVA_OPTIONS=-Dweblogic.Stdout="%USERDOMAIN_HOME%\weblogicstdout.txt" -Dweblogic.Stderr="%USERDOMAIN_HOME%\weblogicstderr.txt"

set ADMIN_URL=http://<ipnumber>:7001

set MEM_ARGS=-Xms1024m -Xmx1024m

call "%USERDOMAIN_HOME%\bin\setDomainEnv.cmd"

call "c:\Oracle\Middleware\Oracle_Home\wlserver\server\bin\installSvc.cmd"

ENDLOCAL

Comments
Post Details
Added on Apr 16 2019
4 comments
1,071 views