OBIEE 11g Start all compenents as Windows Services

Hi Attached link to document for OBIEE 11g Start as windows Services.
http://deliverbi.blogspot.com/2010/10/obiee-11g-auto-start-all-with-windows.html
Cheers
Shahed

I have made a change to the scripts so they allow a new rpd to be loaded without errors... Beware Metalink scripts are incorrect for embedding OBIEE 11g windows services..
cheers
shahed

Similar Messages

  • How i can Start OC4J Instance as window service

    hi ,
    How i can Start OC4J Instance as window service ?
    Regards
    Omar

    Omar,
    check
    http://www.taltech.com/TALtech_web/support/sw_tricks/NTService.htm
    Frank

  • Start and Stop a Windows Service From Java

    Is there any way to start and stop a Windows service from Java? The only post I found on it (http://forum.java.sun.com/thread.jspa?threadID=647509) had a link to one of the many aps that allow Java programs to be services, which is not what I am interested in doing.
    I am attempting to get data from performance counters from the Windows Performance Monitor into a Java ap without using JNI. I can get the data from C++ or a .net language pretty easily and was going to create a service that would listen for socket requests and feed back the data. However, I'd like to start and stop that service when my java code starts and stops. Is this possible? Would it make more sense to just use a .exe and Runtime.exec()?

    If it's only to start or stop a service then you could use the net command without any need for JNI.import java.io.*;
    public class MsWinSvc {
        static final String CMD_START = "cmd /c net start \"";
        static final String CMD_STOP = "cmd /c net stop \"";
        public static int startService(String serviceName) throws Exception {
            return execCmd(CMD_START + serviceName + "\"");
        public static int stopService(String serviceName) throws Exception {
            return execCmd(CMD_STOP + serviceName + "\"");
        static int execCmd(String cmdLine) throws Exception {
            Process process = Runtime.getRuntime().exec(cmdLine);
            StreamPumper outPumper = new StreamPumper(process.getInputStream(), System.out);
            StreamPumper errPumper = new StreamPumper(process.getErrorStream(), System.err);
            outPumper.start();
            errPumper.start();
            process.waitFor();
            outPumper.join();
            errPumper.join();
            return process.exitValue();
        static class StreamPumper extends Thread {       
            private InputStream is;
            private PrintStream os;
            public StreamPumper(InputStream is, PrintStream os) {
                this.is = is;
                this.os = os;
            public void run() {
                try {
                    BufferedReader br = new BufferedReader(new InputStreamReader(is));
                    String line;
                    while ((line = br.readLine()) != null)
                        os.println(line);
                catch (Exception e) {
                    e.printStackTrace();
    }Regards

  • OBIEE 11G - Unable to login to presentation services

    Hi All,
    I have done a simple installation of OBIEE 11G on my coloud server with OS windows server 2003, SP2 , 32 bit.
    Installation is 88% completed with,
    Executing : opmnctl start coreapplication_obiccs1 and Executing: opmnctl start coreapplication_obips1 failed. Came to know that this is related to clusters and ignored the error.
    RCU is installed in different database server.
    Now i am trying to login to presentation services with weblogic as userid and password that i had given during installation of obi.
    I am getting error that userid or password is invalid...
    One thing i came to know from the thread OBIEE 11g Cluster Controller Failed to start is,
    i have a bad IP in /etc/hosts... below are the entries in the file... can anyone please tell me what necessary changes i should do?
    # Copyright (c) 1993-1999 Microsoft Corp.
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    # For example:
    # 102.54.94.97 rhino.acme.com # source server
    # 38.25.63.10 x.acme.com # x client host
    127.0.0.1 localhost
    Regards,
    srl

    HI Srini,
    Thanks for the response,
    I can able to logic Obiee Em/Console services with the same user Web logic. Only Presentation services not able to login.
    Please find my  sawlog0:
    [2014-01-08T19:54:52.000+05:30] [OBIPS] [NOTIFICATION:1] [] [saw.securitysubsystem.checkauthentication.runimpl] [ecid: f86ee0615f1822d9:694c3368:14372397042:-8000-00000000000002fd,0:1:1] [tid: 3400] Authentication Failure.
    Odbc driver returned an error (SQLDriverConnectW).
    State: 08004.  Code: 10018.  [NQODBC] [SQL_STATE: 08004] [nQSError: 10018] Access for the requested connection is refused.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43126] Authentication failed: invalid user/password. (08004)[[
    File:checkauthentication.cpp
    Line:1330
    Location:
      saw.securitysubsystem.checkauthentication.runimpl
      saw.threadpool.asynclogon
      saw.threads
    ecid: f86ee0615f1822d9:694c3368:14372397042:-8000-00000000000002fd,0:1:1
    ThreadID: 3400
    Please advice
    Regards,
    Kulkarni

  • OBIEE 11g 64-bit install on Windows 64-bit

    I wanted to solicit any experiences that the user forum is having with installing 11g on a 64-bit Windows platform. I understand that the Admintool/Job Manager will not run with the 64-bit installation package but we can install the newly released Client install to circumvent this. I am seeing many forums out there in which the 64-bit OBIEE install is done as Simple or Enterprise. My understanding is that this is useless as the bundled WebLogic utilizes at 32-bit JVM. There is a Doc ID out on Metalink (ID 1220564.1) that states one can only do a Software Install. So we have proceeded with the following steps of downloading first the Java 64-bit JVM, then a WebLogic instance utilizing the 64-bit JVM (java -D64 -jar xxx.jar) and finally the OBIEE Software Only install.
    The issue we are running into is that the Install fails when attempting to start the OPMN. So during the install the "Executing:opmnctl start coreapplication_obips1
    " fails and references the OPMN not starting. We are unable to start the OPMN service as well. We have a static IP, so this not the known issue with the loopback adapter. The other issue I saw was having to install the VC++ 2005 SP1 libraries per another Metalink Doc ID (1226254.1). This was all done, however, the install continues to fail.
    It seems the lack of knowledge from support as well as the vague/lack of documentation is frustrating. I just wanted to ping the OTN community around this scenario.

    Thanks Paul, really appreciate the update. Spent this morning rebuilding our environment with 64-bit (Win 2008) and starting from scratch. The install has now succeeded. I tell you one thing you pointed out is something we noticed when we proceeded with the second install. That was the WebLogic version. I had initially used .4 and on the second install we used .3. I am guessing that this may have been the issue.
    I will verify with our Oracle resources and I hope this post will assist other when doing the 64-bit install as I think it is very vague in the documentation.
    I will update the post with Oracles response as well.
    Just as an FYI... the reason this issue came up in the first place was we did an Enteprise Install on 64-bit and found that the Gauge Charts weren't working in the SampleAppLite Subject Area. So I will add that to the Tags for this post.
    Hope this post helps others and they don't go through the headaches of a wrong install type.

  • How to start OC4J as a Windows service?

    I installed OC4J standalone version 10.1.3.4.0 so I can configure Apache FOP. The startup/shutdown process is manual and my Windows customers are not liking it at all. Is there a way to make it a Windows service so it starts automatically when the system boots? Otherwise, the system has to stay logged in and the command window that started the process needs to remain open. Windows folks don't like this.
    Thanks,
    Denise

    I had an example here of doing this, way back when I was a young lad:
    [http://radio.weblogs.com/0132383/stories/2004/04/28/oc4jAsAWindowsService.html|http://radio.weblogs.com/0132383/stories/2004/04/28/oc4jAsAWindowsService.html]
    Don't know if the utility even exists any more but there's likely to be something else that has taken its place if not.
    -steve-

  • OBIEE 11g - Download All/Display All of rows in Answers

    Hi All,
    I have created a request in OBIEE 11g and now displaying it on dashboard.
    by default shows 25 rows, can extend it fo 500 rows, next i should keep on clicking to see full data.
    Also download of data is possible for the rows available on page only i.e. 500 rows are only getting exported to excel.
    Any way to view all data on dashboard at once and download as well?
    Please help, thanks.
    Regards,
    srl

    Hi ,
    To implement the solution, please do:
    1. Change instanceconfig.xml file in <biee11g_install>\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1 as following
    <Views>
    <Pivot>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDownload>2500</DefaultRowsDisplayedInDownload>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DisableAutoPreview>false</DisableAutoPreview>
    <MaxVisibleColumns>5000</MaxVisibleColumns>
    <MaxVisiblePages>2500</MaxVisiblePages>
    <MaxVisibleRows>500000</MaxVisibleRows>
    <MaxVisibleSections>5000</MaxVisibleSections>
    </Pivot>
    <Table>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager-->
    <DefaultRowsDisplayedInDownload>2500</DefaultRowsDisplayedInDownload>
    <MaxVisiblePages>2500</MaxVisiblePages>
    <MaxVisibleRows>500000</MaxVisibleRows>
    <MaxVisibleSections>5000</MaxVisibleSections>
    </Table>
    </Views>
    3. Note the new elements added are the following to both <Pivot> and <Table>, the Pivot part controls Pivot view, and Table part controls Table View, my testing was done with Table View.
    <MaxVisiblePages>2500</MaxVisiblePages>
    <MaxVisibleRows>500000</MaxVisibleRows>
    <MaxVisibleSections>5000</MaxVisibleSections>
    4. Restart Presentation Server from EM, then run your request, do excel export to verify.
    Thanks...

  • Start WebLogic Server as windows service !

    hello,
    How can setup WebLogic 8.1 to start as a windows service in win2000?

    Please see this link:
    http://e-docs.bea.com/wls/docs81/adminguide/winservice.html#1190977
    Thanks,
    Vishwas

  • Can we start JavaWebStart Application as Windows service

    Hi,
    Can we have JavaWebStart application as windows service?
    Thanks
    LeoSun

    Hi LeoSun,
    I dont exactly how to start this is as a window service, but if your requirement is just to start your application when the machine boots,
    then you can create a shortcut for ur webstart app, using the jnlp tag <shortcut>
    then add this shortcut to your windows startup folder.

  • Auto start weblogic 11gR1 as windows service?

    I have installed Weblogic Server 11gR1 and created a domain with only one server (Administration Server).
    I wonder if I can configure to run as windows service, in case of windows update and auto restart

    Copy this to a new file called createSvc.cmd and put it in the \wlserver_10.3\server\bin
    echo off
    SETLOCAL
    set DOMAIN_NAME=ADFDomain
    set USERDOMAIN_HOME=C:\Oracle\Middleware\user_projects\domains\ADFDomain
    set SERVER_NAME=AdminServer
    set PRODUCTION_MODE=false
    set JAVA_VENDOR=Sun
    set JAVA_HOME=C:\Oracle\Middleware\jdk160_18
    set MEM_ARGS=-Xms256m -Xmx512m
    call "C:\Oracle\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL
    you will have to edit the DOMAIN_NAME to match yours
    and the USERDOMAIN_HOME as well. This is pretty much a default install of the WLS 10.3 - though I changed the domain name.
    I assume you used the default admin server name.
    Go to the command prompt and set the current directory to the \wlserver_10.3\server\bin directory.
    execute the createsvc.cmd and it should be done.

  • Is there a specific differences doing obiee 11g setup on Linux Vs Windows?

    Hi,
    I did setup obiee 11.1.1.6 on windows 7 64 bit and upgraded RPD and webcat. now I need to do it on Linux environment. Is there a specific differences doing setup on Linux? do I need to update host file and configure loopback adapter in Linuc as well? please provide detail differences or settings I need to follow.
    appreciate for your help.
    Thanks
    Jay.

    I dont think any specific for Linux.
    Make sure you take care these in profile file
    ORACLE_HOME
    TNS_ADMIN
    PATH
    LD_LIBRARY_PATH
    Pls mark correct or helpful if helps

  • Publisher BI Publisher with OBIEE 11g start up

    Hi ,
    Can anyone guide me on logging in to BI Publisher from OBIEE 11g Home .
    I tried login with my OBIEE administrator credentials (weblogic) , but its saying invalid login.
    It seems , somthing needs to be done on the user (roles , policies) .Currently its in BIAdministrators group.
    Thanks

    Hi Sayak,
    Did you perform this step?
    http://bischool.wordpress.com/2012/02/23/obiee-11g-bi-publisher-not-working-showing-blank-screenpage-with-direct-url/
    Regards,
    Dpka

  • OBIEE 11G Start BI Services

    Hi ,
    When I press Start BI Services , it prompts for a username and password.
    I had created boot.properties file and put them into bi_server1 and AdminServer directories.When I started the services I can see that the username and password informations are encrypted.
    But when I press Start BI Services , it also prompts for username and password.
    When I was reading to forums or blogs I guess that I saw something to by pass this prompt screen.
    Can somebody show me how to do this without creating new cmd's.
    Thanks...

    Hi all,
    At last I found the solution.
    First of all I had configured StartStopServices.xml.
    From the <target name="start_all" tag I had removed get.credentials
    my line is like that : <target name="start_all" depends = "wls.admin.start,wls.wait.alive....
    and then from the <!--Start the Admin Server --> and <!--Start the Managed Server --> sections
    I changed the env key values like that.
    <env key ="WLS_USER" value="<my weblogic user name>">
    <env key="WLS_PW" value="<my weblogic user password>">
    After that when I click on StartBIServices icon everything works fine.

  • Installing two OBIEE 11g instances in a single windows machine

    Dear Experts
    As a part of one of the client requirements , I need to install and configure two instances of OBIEE11g in a single windows server 2003.
    Is it possible , and if you could let know how to achieve that. Here I mean would I be able to run two rpd 's and catalogs. Can I use differnt port and differnt weblogic domain for the same.
    Pls. respond..
    Regds

    Hi,
    Yes ofcourse, we can have two instances on the same machine. However, we need to make sure that they do not conflict each other for the ports/node manager etc. Apart from this, I understand that you have to obey to some restrictions too here.
    1. Starting/Stopping BI Components needs to have a variable BI_SERVER_HOME set in the system. Now that you have two homes, I think you cannot set this. However, you can still start/stop BI Services through command line.
    May be others can add in their opinion here.
    Thank you,
    Dhar

  • OBIEE 11g Can it read from Web Services

    Hi All,
    Can Webservices be one of the datasources to OBIEE?
    If yes, Can you please point me to a documentation on how it can be done.
    Thank you for your time and help.

    I think Webservices understand the xml format, so I would suggest to look for the workaround using XML.
    You can import xml using xml odbc drivers.
    If helps pls mark

Maybe you are looking for

  • [iphone app store] releasing "trial" version app

    i'm sure others have this need, but i can't seem to find info on it. we are releasing an app in which we could make two versions one for free and one that costs money. thing is, we would need people with the free version to "upgrade" to the full vers

  • Exit MV45AFZZ is not working as per our requirement

    Hi Friends, In the transaction 'VA02' based on the Sales Order type and the Delivery Block I want to change the Schedule line category in the Sales Order item. We used the exit MV45AFZZ (FORM USEREXIT_SAVE_DOCUMENT_PREPARE) and it changes the Schedul

  • Why doesn't my hp pc recognize my ipod touch 5th gen

    Have a new Ipod Touch 5th gen, that is not being recognized by my hp pc...also have downloaded Itunes and Quickstart, but nothing seems to help...my ipod does seem to charge while being connected there is no indication that it's even connected. Can t

  • Unable to create the bluetooth virtual COM port

    Hi all I install BS from Toshiba and it seems ok. Bt ir desn´t work. I see all the drivers installed, system devices, etc. No Toshiba BT ports can be seen. Local com ports only show modem port. Try to create a virtual port but get a message "unable t

  • Help me tables on Multy page InDesign

    Hi everyone, I want to ask about how to align text in table from word of IndesignEmpaste into Indesign table, the table spans multiple pages, however, whenever anew row into, InDesign automatically to the new page for that row, leaving a gap on the p