Step Executing: opmnctl startproc ias-coomponent=ReptSvr_WIN-Q9CMS0Z6OC_asi [message #541800] |
Thu, 02 February 2012 05:48 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/4794131debd98d481c207dcc51f6fb99?s=64&d=mm&r=g) |
procfs
Messages: 7 Registered: February 2012 Location: SRI
|
Junior Member |
|
|
Hi I am trying to install oracle forms and reports on windows 2008 R1 (32) and I am using following
wls1035_win32.exe
ofm_frmrpts_win_11.1.2.0.0_32_disk1_1of1.zip
Half way through to the Forms and Reports installation I am getting following error.
Step Executing: opmnctl startproc ias-coomponent=ReptSvr_WIN-Q9CMS0Z6OC_asinst_failed
Configuration Action 'Executing: opmnctl startproc ias-component=RptSvr_WIN-Q9CMCS0Z6OC_'has failed. Please check log for details
But I am unable to make any sence from the log, it does not give me any details of the error
Can cone one tell me what is going one or any information that I can provide to help me on this
Or is there a step by step guide that I can refer to?
Thanks and Regards
[Updated on: Thu, 02 February 2012 10:09] Report message to a moderator
|
|
|
|
|
|
|
|
Re: Step Executing: opmnctl startproc ias-coomponent=ReptSvr_WIN-Q9CMS0Z6OC_asi [message #547970 is a reply to message #542631] |
Mon, 19 March 2012 05:53 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/4794131debd98d481c207dcc51f6fb99?s=64&d=mm&r=g) |
procfs
Messages: 7 Registered: February 2012 Location: SRI
|
Junior Member |
|
|
Hi All, below are the steps that I took to install Oracle Forms and Reports 11g2 on windows 2008 64bit, hope this will help some one!
1. Disable firewall
2. Disable IPV6
3. install java (for generic only)
4. install weblogic (General installation)
java -jar wlsversion_generic.jar
Note: do not configure or configure nodemanage unless you are trying to do someting els. Domain will be created at the time
of the forms server configuration!
5 Windows security issue
Oracle installation guides
docs.oracle.com/html/E25460_01/r2_fr_requirements.htm#BABGGJGJ
docs.oracle.com/cd/E24269_01/doc.11120/e23960/install.htm
docs.oracle.com/cd/E15523_01/doc.1111/e14142/start.htm#i1077535
2.2.4 Stopping Node Manager Before Installing Oracle Forms and Reports (Windows Only)
If you are installing Oracle Forms and Reports on a Microsoft Windows operating system, you must make sure that the Node Manager utility that was installed with Oracle WebLogic Server is stopped before you begin the installation:
Verify the Oracle WebLogic Server Node Manager utility is stopped. If it is running, kill the process.
Determine if the nodemanager.properties file is present in the WebLogic_Home\common\nodemanager directory.
If the nodemanager.properties file is not present, continue installing Oracle Forms and Reports.
If the nodemanager.properties file does exist, open it and verify that the ListenPort parameter is included and that it is set. If the ListenPort parameter is not included or set, edit the nodemanager.properties file so that it is similar to the following, where NODE_MANAGER_LISTEN_PORT represents the port the Node Manager listens on, such as 5556:
ListenPort=NODE_MANAGER_LISTEN_PORT
6. now run the setup that comes with and select the defaults
7. The OUI will not install all teh servicess this you need to do manaually
you need to create folowing files (only the name is deferent in below script)
You can get the server names from xxx:7001/em
Admin as a Windows serverice, creat the file with below content installAdmServer_Service.cmd
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set USERDOMAIN_HOME=D:\Oracle\Middleware\user_projects\domains\ClassicDomain
set SERVER_NAME=AdminServer
set PRODUCTION_MODE=true
cd %USERDOMAIN_HOME%
call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
call "D:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
ENDLOCAL
Reports as a Windows serverice, creat the file with below content installWLS_REPORTS_Service.cmd
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set USERDOMAIN_HOME=D:\Oracle\Middleware\user_projects\domains\ClassicDomain
set SERVER_NAME=WLS_REPORTS
set PRODUCTION_MODE=true
set ADMIN_URL=URL:7001/
cd %USERDOMAIN_HOME%
call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
call "D:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc_ASA_REports.cmd"
ENDLOCAL
Note: in you cant get the reports server installed as a windows service with an eorro "command is too long.........."
you need to do below walk around to get teh reports server installed as WS
1. I took the CLASSPATH value from the error output which I uploaded to you, see the attached classpath.txt
2. I changed CLASSPATH in D:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd
Before editing set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
After edit - set CLASSPATH=%WEBLOGIC_CLASSPATH%;
I just took out the part %CLASSPATH%
3. Then I ran the cmd to install the report server and the reports server installation was successful
4. Then I went to the registery location
HKEY_LOCAL_MACHINEYSTEM\CurrentControlSet\services\beasvc ClassicDomain_WLS_REPORTS\Parameters
5. Edited the key and replaced the existing classpath with the above
CmdLine= -server -Xms32m -Xmx200m -XX:M..............................................
6. Now the Admin, Forms and Reports comes up at the boot time no issues or error
Further to above now we need to test our forms and reports if what I have done above is correct, appreciate your input? And just a question our forms uses J-initiattor to do file upload can we still do this with 11g2 or do we need to use webutil for this purpose?
Admin as a Windows serverice, creat the file with below content contentinstallWLSFORMS_Service.cmd
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set USERDOMAIN_HOME=D:\Oracle\Middleware\user_projects\domains\ClassicDomain
set SERVER_NAME=WLS_FORMS
set PRODUCTION_MODE=true
set ADMIN_URL=URL:7001/
cd %USERDOMAIN_HOME%
call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
call "D:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
ENDLOCAL
Uinstalling servicess
uninstallAdmServer_Service.cmd
echo off
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set SERVER_NAME=AdminServer
call "D:\Oracle\Middleware\wlserver_10.3\server\bin\uninstallSvc.cmd"
ENDLOCAL
uninstallWLS_REPORTS_Service.cmd
echo off
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set SERVER_NAME=WLS_REPORTS
call "D:\Oracle\Middleware\wlserver_10.3\server\bin\uninstallSvc.cmd"
ENDLOCAL
uninstallWLSFORMS_Service.cmd
echo off
SETLOCAL
set DOMAIN_NAME=ClassicDomain
set SERVER_NAME=WLS_FORMS
call "D:\Oracle\Middleware\wlserver_10.3\server\bin\uninstallSvc.cmd"
ENDLOCAL
8. Configuration
docs.oracle.com/cd/E24269_01/doc.11120/e24477/basics.htm
Configuration files
D:\Oracle\Middleware\user_projects\domains\ClassicDomain\config\fmwconfig\servers\WLS_FORMS\applications\formsapp_11.1.2\config
To edit the configuration files via EM
Home > Forms > Forms
Select Web Configuration - for edithing formsweb.cfg
Home > Forms > Forms
Select environment configurations
To create a avabill.env you have to duplecate file fromt eh em (when you create the env file manually its not getting attached to the URI part and does not show up on the EM **it may require a reboot of the WL**)
TNS_ADMIN=d:\Oracle\Middleware\asinst_1\config
Same wasy you can cnfgure teh Reports server.
for console and em you have to use port 7001 (this information is shared at the end of the installation)
Sorry for any spelling mistakes
Thank you and best regards
|
|
|
|
|
|