Install webLogic 10.3.5.0 as windows Service

Hi there;
Looking for install webLogic as windows service; I found some papers that points me to "WL_HOME\server\bin\installSvc.cmd"
as we can see here in [On-Line Manual References|http://download.oracle.com/docs/cd/E21764_01/web.1111/e13708/winservice.htm#START143]
But; the fact is that in my wl_home\server\bin directory I can't see installSvc.cmd ;
wl_home\server is not there any way;
I have wl_home\serverS instead of it ;
Any tips to configure webLogic 10.3.5.0 as windows service ?
Foward thanks
Marcos Ortega

Hi Marcos,
Since you were looking in your domain directory, note that you can innstall WLS components like node manager, admin server and managed servers as Windows services (which might be what you are trying to achieve).
- For Node Manager you have the cmd file at WL_HOME\server\bin\installNodeMgrSvc.cmd
- To create a Windows service for the Admin Server:
1. Create a text file named %MIDDLEWARE_HOME%\user_projects\domains\<domain name>\servers\AdminServer\security\boot.properties. Add the following lines:
username=weblogic
password=<the weblogic username password>
2. Create a command script called installAdmServer_Service.cmd which you will want to make sure has lines like:
SETLOCAL
set DOMAIN_NAME=<your wls domain>
set USERDOMAIN_HOME=<path to domain> # e.g., C:\middleware\FMW11g\user_projects\domains\ClassicDomain
set SERVER_NAME=AdminServer
set PRODUCTION_MODE=true
cd %USERDOMAIN_HOME%
call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
call "<your middleware home>\wlserver_10.3\server\bin\installSvc.cmd"
ENDLOCAL
3. Then run "installAdmServer_Service.cmd", the Service should be installed. It will have a name like "beasvc %DOMAIN_NAME%_%SERVER_NAME%" (e.g. beasvc ClassicDomain_AdminServer). The Service "Startup Type" shouldl be "Automatic".
- To create a Windows service for the Managed Server:
1. Create a text file named %MIDDLEWARE_HOME%\user_projects\domains\<domain name>\servers\[managed_server_name]\security\boot.properties. Add the following lines:
username=weblogic
password=<the weblogic username password e.g manager11g>
2. Create a command script called installWLSFORMS_Service.cmd which has lines like
SETLOCAL
set DOMAIN_NAME=<your wls domain>
set USERDOMAIN_HOME=<path to domain> # e.g. C:\middleware\FMW11g\user_projects\domains\ClassicDomain
set SERVER_NAME=WLS_FORMS
set PRODUCTION_MODE=true
set ADMIN_URL=http://mymachine.mycompany.com:7001
cd %USERDOMAIN_HOME%
call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd
call "<your middleware home>\wlserver_10.3\server\bin\installSvc.cmd"
ENDLOCAL
3. Then run "installWLSFORMS_Service.cmd", the Service should be installed and it will have a name like "beasvc %DOMAIN_NAME%_%SERVER_NAME%" (e.g. beasvc ClassicDomain_WLS_FORMS). The Service "Startup Type" will be "Automatic".
Some warnings:
- The ADMIN_URL value should reference the AdminServer hostname and listen port.
- The SERVER_NAME value is case sensitive. For example, if you are creating a MS Windows service for a different managed server such as 'wls_ods1' then the value needs to match the case of the server name otherwise the startup of the server via the MS Windows service will fail.
- Be careful that there are no trailing spaces after each line in the command file - trailing spaces will cause the managed server to fail at startup.
Hope this helps.
-Cris

Similar Messages

  • Install Weblogic 12c zip for developement on Windows 7

    I have downloaded wls1211_dev.zip for development purpose (instead of full install using windows installer), for installing on the windows 7 (64 bit). After extracting the zip contents, I set up the environment variables for JAVA_HOME, MW_HOME and JAVA_VENDOR as stated in the readme.txt included in the zip distribution. I also made sure to set the environment variables using 8.3 names (old DOS names) by using dir /x command. Here are the environmental settings:
    E:\WLS12c>echo %JAVA_HOME%
    C:\PROGRA~1\Java\JDK17~1.0_0\bin
    E:\WLS12c>echo %MW_HOME%
    E:\WLS12c
    E:\WLS12c>echo %JAVA_VENDOR%
    Sun
    But every time I run configure.cmd, I get the following error:
    (I checked the permissions on the directory where I have unzipped and it is full control for me (not an administrator user). I tried to run the configure.cmd using administrative user but the same result). I can also navigate to the directories using 8.3 names. I am able to create delete and update files and folder in the target directories as non-administrative user. I have no idea why I should be getting the following errors.
    WebLogic Server 12c (12.1.1.0) Zip Configuration
    MW_HOME: E:\WLS12c
    JAVA_HOME: C:\PROGRA~1\Java\JDK17~1.0_0\bin
    783 jar files are being unpacked.
    Please wait, title bar will show progress ...
    The system cannot find the path specified.
    -- above line repeated I guess 783 times
    "ACLs are being setup for E:\WLS12c Please wait..."
    The system cannot find the path specified.
    The WebLogic Server wasn't found in directory E:\WLS12c\wlserver\server.
    Please edit the setWLSEnv.cmd script so that the WL_HOME
    variable points to the WebLogic installation directory.
    Your environment has not been set.
    The system cannot find the path specified.
    I will appreciate your help in this regard.
    Thanks in advance
    Salman

    Hi,
    This issue usually occurs when you install WebLogic Server using generic jar installer and when launching installation with incorrect JDK version.It may be improper JDK installation or incorrect JAVA HOME setup at OS level.
    To resolve this issue, uninstall current WebLogic installation using generic.jar installer that is referring incorrect JDK and relaunch the installation with correct JDK by setting correct JAVA HOME system variables. Below are steps to be followed to address this issue.
    Un-install WebLogic from your machine.
    If the installer is on a network drive it's recommended to copy the generic installer to your local file system and to a folder with no spaces or strange characters.
    Remove the system variables you've set: JAVA_HOME, JAVA_VENDOR, and remove the %JAVA_HOME%\bin from the path system variable.
    Run the installer as follows:
    Open a command prompt
    Change directory to \JDK_64\bin folder and execute:
    java.exe -jar -Xms1024m server1001_generic.jar
    After the installation is completed you can proceed to safely run the Configuration Wizard (config.cmd)
    Regards,
    Kal

  • Policy Agent on BEA WebLogic when server instance runs as windows service

    hi.
    my environment is: win2k3, bea weblogic server 8.1sp4, access manager 7.1 and policy agent 2.2. installation process of policy agent asks for server startup script (startWebLogic.cmd) which i found under my server instance catalogue. the only issue is that my server instance is installed as a windows service and should not be started in a command window.
    am i safe with just specifying the path to the startup script or is there another way of dealing with this issue?
    might be a dumb question, but it would be nice to be sure that i'm doing the right thing before i go ahead and install policy agent. :)
    thanks,
    tb

    Hi,
    I have not set it up as a window service but can try to help. for one thing, this step is not permanent and if it does not work then you can undo this step by re-editting the script to remove the line you added. This step has you change the bea startup script for that domain to call the agent script setAgentEnv_AdminServer(it ws copied into bea domain directory during installation of agent) which just sets some agent resources in the classpath. If you start bea and those things are not in the classpath etc then agent wont work. So no permanent damage, you can change it if it doesnt work.
    I suggest you try it out and start the bea server as a service and see if it works - if not try again.
    I am not sure what the windows service would use to start the app server, but somehow it must specify some environment properties and things in its classpath, so if this script doesnt work then you can just do the things in the setAgentEnv_AdminServer script like setting those things in classpath.
    Please let us know if it works and if any extra steps required? Would be helpful to others to know how to configure as a windows service.
    hth,
    Sean

  • Help on setting up weblogic 9.1 as windows service

    Hi,
    I want to install weblogic 9.1 to run as windows service.
    Can any body point me to steps?

    Please follow this link, you can get an idea from this link
    http://egeneration.beasys.com/wls/docs81/adminguide/winservice.html
    Thanks
    Togotutor
    <b><a class="jive-link-external" href="http://www.togotutor.com">http://www.togotutor.com</a> (Learn Programming and Administration for Free)</b>

  • Install/configure admin server after installing weblogic

    I have installed weblogic generic 10.3 in my windows 7 professional machine and configured OIM. But I did not configure the Admin server. I tried starting the OIM & SOA server by using
    C:\......\bin>startManagedWebLogic.cmd soa_server1 http://localhost:7001
    but I got this error
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <> <Emergency> <Management> <BEA-141151> <The admin server could not be reached at http://localhost:7001.>
    <> <Info> <Configuration Management> <BEA-150018> <This server is being started in managed server independence mode in the absence of the admin server.>
    SEVERE: Authentication of user weblogic failed because of invalid password
    <> <Critical> <Security> <BEA-090403> <Authentication for user weblogic denied>
    <> <Critical> <WebLogicServer> <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: Authentication for user weblogic denied
    weblogic.security.SecurityInitializationException: Authentication for user weblogic denied
    So how do I install/configure the admin server. I am sure I am missing something simple. Any help would be appreciated. Thanks.

    You are checking at the wrong place.you need to check the same under DOMAIN_HOME which would be by default at $MIDDLEWARE_HOME/user_projects/domains/<<Your DOmain Name>>
    e.g. if WL_HOME=/oracle/Middleware/wlserver_10.3
    then
    MIDDLEWARE_HOME=/oracle/Middleware
    and DOMAIN_HOME=/oracle/Middleware/user_projects/domains/SOA_DOMAIN <---THere should be Domain Name folder existing>>
    Under the domain folder you would be having startWebLogic.sh which is used to start the Admin Server.
    And moreover under DOMAIN_HOME you would have config folder in which you would have config.xml where from you can check which all the server you have in your domain which you have created.

  • Problem: Deployment to WL10.3 Server Instance started as Windows Service

    Hi Everybody,
    I have deployed my J2EE Application to a Standalone WebLogic Server Instance (in development mode) started from the Windows Command Level via startWebLogic.cmd. I also tested the deployment to a Clustered Managed Server Environment(1 AdminServer+2 MS Servers in the cluster; development mode), all servers started from the command line. The application could be tested and everything worked fine.
    But:
    When I set up the WebLogic Server Instance(s) as a Windows Service(s) (following the instructions http://e-docs.bea.com/wls/docs103/server_start/winservice.html) my application can’t be deployed at startup time.
    I get 3 ClassNotFoundExceptions:
    - on startup class "DMS-Startup" (oracle.dms.wls.DMSStartup)
    - on startup class "ODL-Startup" (oracle.core.ojdl.weblogic.ODLConfiguration)
    - on startup class "JPS Startup Class" (oracle.security.jps.wls.JpsWlsStartupClass)
    The Service is started but under Administration Console/Deployments the Enterprise Application is marked as “New” and not as “ Active”. The other Deployments: adf.oracle.domain(1.0, 11.1.1.0.0), jsf(1.2, 1.2.7.1) and jstl(1.2, 1.2.0.1) are shown as “Active”.
    I tried to redeploy the Application directly from the JDeveloper to the running Standalone WLS Instance (Single Server) - as I did before.
    The Deployment failed:
    [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application ... on AdminServer.: .
    weblogic.management.DeploymentException:
    #### Deployment incomplete.
    #### Nov 25, 2008 9:58:53 PM
    Deployment Failed
    Why does the deployment work on the WLS Instance started from command line and why does it fail when started as Windows Service?
    I am Using WLServer 10.3 and the JDeveloper 11g on a Windows Vista OS - both installed via jdevstudio11110install.exe. My Web Application uses BC and ADF Faces.
    The Windows Service is set up by doing the following in a server-specific script placed under the USERDOMAIN_HOME directory:
    set DOMAIN_NAME=mydomain
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\mydomain
    set JAVA_OPTIONS=Dweblogic.Stdout = … Dweblogic.Stderr=…
    set MEM_ARGS=-Xms40m –Xmx250m
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    And there’s one more problem with the Windows Service:
    I’m not able to Uninstall the service from a server-specific script, first setting the DOMAIN_NAME and the SERVER_NAME=AdminServer and than
    using call "C:\Oracle\Middleware\wlserver_10.3\server\bin\uninstallSvc.cmd".
    I must do this directly in the registry.
    Is anything missing? What’s wrong?
    Please help!
    Thanks
    Anita
    Edited by: user586097 on 26.11.2008 11:55
    Edited by: user586097 on 26.11.2008 12:00
    Edited by: user586097 on 26.11.2008 12:02

    This thread was very helpful to get WebLogic 11g running as a Windows service. My problem was that I couldn't get the Enterprise Manager application to deploy correctly on startup, so I had to tweak both the installSvc.cmd and my script that installs the service (by copying important Java Options from the startup script that works as noted above). It was too hard to discern what exactly Enterprise Manager needed, so I copied a whole bunch.
    What I ended up doing was using this as a script to install the Windows service:
    echo off
    SETLOCAL
    set DOMAIN_NAME=base_domain
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\base_domain
    set SERVER_NAME=AdminServer
    set PRODUCTION_MODE=false
    set JAVA_OPTIONS=-client -Xms512m -Xmx1024m -XX:CompileThreshold=8000 -XX:PermSize=128m -XX:MaxPermSize=256m -Dweblogic.Name=AdminServer -Djava.security.policy=C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\weblogic.policy -Xverify:none -da -Dplatform.home=C:\Oracle\MIDDLE~1\WLSERV~1.3 -Dwls.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Dweblogic.home=C:\Oracle\MIDDLE~1\WLSERV~1.3\server -Ddomain.home=C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1 -Doracle.home=C:\Oracle\MIDDLE~1\ORACLE~1 -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrocket_optfile.txt -Doracle.security.jps.config=C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\fmwconfig\jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Dweblogic.alternateTypesDirectory=C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.ossoiap_11.1.1,C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.oamprovider_11.1.1 -Dsso.filter.enable=true -DUSE_JAAS=false -Djps.policystore.hybrid.mode=false -Djps.combiner.optimize.lazyeval=true -Djps.combiner.optimize=true -Djps.auth=ACC -noverify -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -Dtangosol.coherence.log=jdk -Dwc.oracle.home=C:\Oracle\Middleware\Oracle_WC1 -DjiveHome=C:\Oracle\MIDDLE~1\USER_P~1\domains\BASE_D~1\config\fmwconfig\servers\AdminServer\owc_discussions_11.1.1.1.0 -Dtangosol.coherence.log=jdk -Doracle.core.ojdl.logging.usercontextprovider=oracle.core.ojdl.logging.impl.UserContextImpl -Doracle.mds.bypassCustRestrict=true -Djava.awt.headless=true -XX:+UseParallelGC -XX:+DisableExplicitGC -Dem.oracle.home=C:\Oracle\Middleware\Oracle_WC1 -Djava.awt.headless=true -Dweblogic.management.discover=true -Dwlw.iterativeDev= -Dwlw.testConsole= -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\Oracle\MIDDLE~1\patch_wls1031\profiles\default\sysext_manifest_classpath
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    and slightly modifying my installSvc.cmd to:
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\commons-cli-1.1.jar;C:\Oracle\MIDDLE~1\ORACLE~1\soa\modules\oracle.soa.mgmt_11.1.1\soa-infra-mgmt.jar;C:\Oracle\Middleware\Oracle_WC1\webcenter\modules\oracle.portlet.server_11.1.1\oracle-portlet-api.jar;C:\Oracle\MIDDLE~1\ORACLE~1\modules\oracle.jrf_11.1.1\jrf.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\common\eval\pointbase\lib\pbclient57.jar;C:\Oracle\MIDDLE~1\WLSERV~1.3\server\lib\xqrl.jar
    It needed those extra .jars to deploy properly.
    Edited by: user11090163 on Sep 2, 2009 9:04 AM

  • BI windows services causing BI publisher report not to work

    All,
    We have BI windows services installed. When we start BI thru windows services all the analysis and dashboard works but I am not able to open BI publisher reports.
    The page stays on Processing.... only.
    As soon as we start BI services thru command prompt all the publisher reports works.
    Any thoughts.
    Thanks in advance

    By default BI services(BI Server, Presentation server, scheduler, java host) are Windows services, more over there is no relation for BIP with BI unless you configure BI Security.
    If it is OC4J then make sure your configuration.
    If helps pls mark

  • BPEL server as Windows Service

    Hi there,
    Can you tell me how to install the BPEL server (OC4J) as a Windows Service so that it can be started and stopped through the Windows ServiceManager.
    I cant find any documentation about this.....
    thx
    Mark

    Hallo Edwin,
    I´m also trying to install the BPEL Server as a Windows Serivce with Windows XP. Are there any samples, that show how to do that? The solution that is provided here is quite uncomfortable.
    Thanks for any help.
    Kay

  • Financial Reports WIndows Service(s) missing?

    I'm trying to install Oracle EPM version 11.1.2.1, and I'm pretty far along, but this seems weird. Everything is installed and configured, but I have no Windows service(s) for FR on the services tier server.
    Looking at the startup order in the Installation and Configuration Guide, I see Financial Reporting Services listed just before Financial Reporting application server. I assume this is what used to be the 4 services on the services tier server that have been consolidated to 2, but I don't see any.
    I double-checked the installer, and I have no check box under the 'Services' tier heading for FR, and no "Financial Reporting Services" item listed when I go into "choose individually." This seems wrong, but I'm not sure. I re-downloaded all 13 files from e-delivery that are flagged as necessary in the Readme. Still, nothing.
    Print server is installed with the FR client, evidently? Is it not a server-side service anymore? Or is it now OK to install the FR client on the same machine that the server is on, which used to cause problems?
    Thanks for your consideration,
    -- Joe

    Hi Joe,
    Can you provide a link to the documentation you are reviewing and make sure it is for 11.1.2.1 version?
    There are two services for FR - the Financial Reporting Web Service and the Financial Reporting Print Service. That is all that you should need.
    For information on how to configure the print service check here,
    http://epm-errors.blogspot.com/2012/01/configuring-financial-reporting-print.html
    It is a server side component that they decided to bundle with the client installer... It's a bit strange to me.
    Thanks
    Nick

  • Sun App Server 8 as a Windows Service

    Is it possible to install Sun App Server 8 as a Windows Service so I could run it under Windows 2003 Server? If yes, how -- I could not find any information on it.
    Sincerely,
    Sergei Batiuk.

    I received a reply from Paul Ko at Sun Microsystems.
    Paul is the product line manager for Sun's Java application server.
    >
    Sean,
    To run the AppServer as a Windows service, you need to use 3rd party
    software to enable this. The AppServer is designed to run as a
    Windows application, not as a service. You can do a Google search to
    find a suitable 3rd party software to fulfill you needs.
    Unfortunately, we do not publish which 3rd party software can be used
    to do this -- as a policy, we don't endorse any particular vendor.
    Best,
    Paul

  • How to get 'clover.cmd' running as Windows service?

    Right now I have the InDesign instances all running great as services so on a server reboot they start up fine. The clover/lbq part is  just the .cmd script and it's not running as a service. I looked in the documentation but haven't found any info on getting clover to run as a Windows service.
    Anyone know how to set it to do this? I'm on InDesign CS6 (server).
    thanks.

    This information is in the Install Guide that comes with EAS.Running EAS as a Windows service is an option you can select when you install it. If you did not do that, you can set it up to run as service by doing the following: (From the EAS Install Guide)----------------------------------------Adding Administration Server as a Windows ServiceYou can add Administration Server as a Windows service, even if it was not installed as a Windows service.?To add Administration Server to the list of Windows services:1. From a command prompt, navigate to the following directory: EASPATH\eas\server\bin2. Run the following command: install_service.batAdministration Services installs the Windows service as Hyperion-Essbase_Administration_Server Windows service. A message displayed in the command prompt window indicates that the service is installed.3. Start the Hyperion-Essbase_Administration_Server Windows service. See ?Starting the Administration Server Windows Service? on page 49.The Hyperion-Essbase_Administration_Server Windows service is set to start automatically each time you reboot.

  • How to set Essbase Administration Server as Windows service?

    Hi,I have installed the Essbase Admin Services 7.1.0.0 Build 261 under Tomcat application server. Now from Start menu I have to select "Start Administration Server". Is there any way to set this option as Windows Service.My system:Windows 2003 SP1,Essbase 7.1.0,Essbase Admin Services 7.1.0.0 Build 261Thanks,Grofaty

    This information is in the Install Guide that comes with EAS.Running EAS as a Windows service is an option you can select when you install it. If you did not do that, you can set it up to run as service by doing the following: (From the EAS Install Guide)----------------------------------------Adding Administration Server as a Windows ServiceYou can add Administration Server as a Windows service, even if it was not installed as a Windows service.?To add Administration Server to the list of Windows services:1. From a command prompt, navigate to the following directory: EASPATH\eas\server\bin2. Run the following command: install_service.batAdministration Services installs the Windows service as Hyperion-Essbase_Administration_Server Windows service. A message displayed in the command prompt window indicates that the service is installed.3. Start the Hyperion-Essbase_Administration_Server Windows service. See ?Starting the Administration Server Windows Service? on page 49.The Hyperion-Essbase_Administration_Server Windows service is set to start automatically each time you reboot.

  • Scritps to configure the managed instances as windows service in v9.1

    Hi,
    Can someone help me in the scripts/instructions to configure the weblogic v9.1 managed instances as windows service?
    Kindly help me on this.
    Best Regards,
    Vasu

    Hi Vasu,
    Please refer to the following link for detailed steps : http://weblogic-wonders.com/weblogic/2010/03/13/managed-server-as-windows-service/
    Thanks
    Jay SenSharma

  • Oracle Management Server - Windows Service

    Dear all ...
    I've just installed (for test) Oracle 9i Server in a machine with Windows XP and have created a database for test too. Also I've installed Oracle Management Service using EM Assistant and created a repository to use the Oracle Enterprise Manager with a OMS login but I have been finding some troubles that I can't understand.
    Firts is: I have installed the OMS and I went to Windows Services Management to check with the service was running but it wasn't. When I try to start manually it shows me a message saying the service could not be started because the dependencies are not started or the service no longer exists. I can't understand why if I've just installed it. And I did check the properties and it has no dependencies.
    Second: I've checked everything, Listener, TNSnames, Sqlora and also Hosts (Windows Parameters) and are all working fine. However, when I try to connect OEM by OMS I type user: Sysman (the first one) password: oem_temp and in Management Server I type "my_machine's_name" and it shows me a messagem saying it wasn't possible to resolve the name of the host.
    I'd like two helps if it's ok. How can I sort out the problem with the service? Is it necessary to be running if I want to use OEM by OMS? How can I connect by OMS if OEM isn't recognising the host?
    Thanks a lot
    Bruno Palma

    Hi ...
    So I rebooted the machine and I saw the service wasn't running and its status was Manual. Even setting it up to be Automatically and restaring again it didn't go up. Here I use a broad band which I receive a fixed IP and it doesn't change. I tryed in the TNSNames.ora to change the name of the host "name_of_my_machine" to the IP and didn't work too.
    Thanks.

  • Oralce EPM Fails to install Weblogic on Windows Server 2008 R2 x64

    I've run the installer on Windows Server 2008 R2 x64 and it fails to install Weblogic. I don't have MIDDLEWARE_HOME/oracle_common. Config tool log says missing jars. When I go back to install and choose products individually, Weblogic Server is gray. When I click on Weblogic Server, the message at the bottom says can not be installed.
    I have checked that I have extracted the following assemblies:
    Oracle Hyperion Enterprise Performance Management System Installer, Fusion Edition Release 11.1.2.0.0
    Hyperion Enterprise Performance Management System Foundation Services Release 11.1.2.0.0 - Parts 1 - 4
    Oracle Hyperion Enterprise Performance Management System Additional Content Release 11.1.2.0.0
    I have run this same set of files on another server and Weblogic was installed. Am I missing something?

    I am not sure if it is your problem but I don't think R2 is officially supported, I did have problems with it when I first installed 11.1.2 so I installed with R1 SP2.
    Cheers
    John
    http://john-goodwin.blogspot.com/

Maybe you are looking for