Standalone installtion for DR

Dears,
My client planning DR for ECC on Standalone installation,
My question is it possible to go ahead standalone installation for DR as ours ECC System is Distributed landscape with CI, DB and 2Apps.
Is it possible to mapping CI, DB and 2Apps to standalone DR Server?
Kindly give ur suggestion on this.
Regards,
Peter.

Hi,
For DR system, you only need to map database so that your database changes will be replicated to DR. There is nothing to sync from CI or App server.
You have to initially restore db of your PRD to remote DR and then start log shipping so that both the database will be in sync.
You may check DR guides to get more information.
Thanks
Sunny

Similar Messages

  • Difference between OC4J Standalone & IIS for BI Presentation services

    Hi experts,
    i had this question in my mind for last couple of weeks and did not get good answer by self study.
    my understanding with IIS & OC4J server is,
    1.if BI Presentation services is setup to IIS Webserver, It is also using OC4J as application server, because IIS is just an HTTP Server where the presentation services also need an Application server which is OC4J for OBIEE. Is this true.
    2.if the IIS Server is only HTTP Server, what is OC4J and standlone OC4J for OBIEE.
    i think the difference between IIS and OC4J is ( true or false)
    1. oc4j or oc4j Standalone is application server( contains OC4J Instance(J2EE) and HTTP Server)
    2. oc4j itself has a an HTTP server which is used if we dont plan to deploy IIS Webserver.
    3. IIS server is only HTTP which can be used in Production environments and will still use OC4j as application server.
    MY question is how to configure IIS server and configuration files and oc4j if we plan to deploy a environment like this.
    i followed OBIEE installtion documents and did not get a clear picture.
    there is something called PLUG-IN's (iis plugin and j2ee plugin ) which is used if we deploying on IIS and OAS(WEBLOGIC)
    this is is my understanding and Please Correct me if i am wrong
    thanks
    kumar

    Please follow this up on your copy of the thread difference between OC4J Standalone & IIS for BI Presentation services

  • Ipad as standalone monitor for mac mini

    Hi everybody!!!
    How can i use my ipad air as standalone monitor for my mac mini?
    Can i connect them without internet connection???

    There are apps that allow using an iPod as a secondary monitor for a computer. I do not think it can be the only monitor but maybe after you first use a regular monitor to setup the iPad monitor. You will have to look at the description of the apps/go to theri support site

  • Hi, how do I create a standalone installer for Mountain Lion, ie, download once and then no more broadband required, thanks?

    Hi, how do I create a standalone installer for Mountain Lion, ie, download once and then no more broadband required, thanks?
    Context is that my other computers are not mobile and I do not have broadband worth troubling for a 4GB download - so will go to Apple Store with MacBook Pro for first download.

    The easiest way is to download the installer but do not open it.
    Next, make a copy of it and store it where it won't get lost.
    Then take one of the copies and place into the applications directory and open it to begin the installer.
    This has saved me the trouble of ever having to download the installer twice, plus you can mess around with the installer and try different options without having to worry about not having a clean install file if needed.
    Best wishes

  • Where so I find the Apple updater standalone installer for Windows? Thanks!

    I need a standalone installer for the Apple updater for windows, where do I find it?  Thanks!

    Apple Software Update for Windows isn't distributed in a standalone version. It only comes as part of one of the installer bundles for the major applications (such as iTunes, QuickTime, Safari, Bonjour Print Services, and so forth).
    We can rip open one of those installer bundles to get a copy of an AppleSoftwareUpdate.msi, which can be used to do a standalone ASU install. I'll walk you through doing it with an iTunes for Windows installer.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64Setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleSoftwareUpdate.msi to do a standalone ASU install.

  • Standalone driver for DT-4

    Is there any standalone driver for DT-4 stand for Nokia 9500?
    Julian

    You're very welcome.
    I guess that is what you'll have to do unless you can connect your PC to the internet.
    You can also download the standalone update from the Microsoft update catalog to another PC and copy it to the one you have the printer connected to using a usb flash drive or burn to a CD.
    http://catalog.update.microsoft.com/v7/site/Search.aspx?q=HP%20laserjet%204000
    I imagine you want the PCL6 driver.

  • Writing a Standalone Client for EJB 3.0 Bean For Weblogic 10

    Steps for Writing a Standalone Client
    Client Code
    package com.client;
    import java.util.Properties;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.rmi.PortableRemoteObject;
    import com.StatelessService;
    public class StatelessClient {
         public static void main(String [] args){
              Context ctx = null;
              try {
                   ctx = getInitialContext("t3://localhost:7001/protossbservice","weblogic","weblogic");
                   Object ref = ctx.lookup("StatelessService#"+StatelessService.class.getName());
                   StatelessService service = (StatelessService)PortableRemoteObject.narrow(ref,StatelessService.class);     
                   System.out.println("StatelessClient.getMessage() ++");
                   String  message = service.getMessage();
                   System.out.println("StatelessClient.getMessage --");
                        System.out.println("Message from Bean "+message);
         } catch (NamingException e) {
                   e.printStackTrace();
         private static Context getInitialContext(String url, String user, String password) throws NamingException {
            Properties h = new Properties();
            h.put(Context.INITIAL_CONTEXT_FACTORY,
                    "weblogic.jndi.WLInitialContextFactory");
            h.put(Context.PROVIDER_URL, url);
            h.put(Context.SECURITY_PRINCIPAL, user);
            h.put(Context.SECURITY_CREDENTIALS, password);
            return new InitialContext(h);
    Business Interface
    package com;
    public interface StatelessService {
         public String getMessage();
    Stateless Session Bean
    package com;
    import javax.annotation.PostConstruct;
    import javax.ejb.Remote;
    import javax.ejb.Stateless;
    * Test Stateless Session Bean
    @Stateless(mappedName="StatelessService")
    @Remote(StatelessService.class)
    public class StatelessServiceBean implements StatelessService {
         public String getMessage(){
              return "I am invoked";

    emekaco wrote:
    Hi,
    I am a trainee although with a good background in java.
    I'm urgently in need of a free ebook for EJB 3.0 with the latest version of Netbean. Pls, help me with one if you have. my email is [email protected]
    http://www.theserverside.com/tt/books/wiley/masteringEJB3/index.tss
    Here's a good free e-book but without Netbean. It covers everything you would need to know about EJBs.
    >
    Again, is container managed bean good for a big project?
    The question is too vague to be answered. It's a design decision that needs more details.

  • Enterprise or Standalone CA for Windows and linux computers

    Hi
    i plan to deploy a certificate architecture mainly for our internal web server and no more receive the certificate warning pop up
    So first i will install an offline Root CA
    Then i will setup a subordinate CA
    My question is about the type : standalone or Enterprise since i have both Linux and Windows computers ... maybe an enterprise AND a standalone to manage both ?
    Thanks for your help

    The easiest way (but not the most secure of course) is to install IIS on the enterprise sub CA with single website serving static content. Then set CA to publish the CRL in the directory where website is pointing. Add CDP location as follows:
    http://caname.contoso.com/<crl file name> where CRL file name is the name under which CRL is published.
    Keep in mind that since you'll have offline root CA to set CRL expiration time to some long period (you'll need to publish it again before the expiration time occur, so 2 days for an example is not okey.). Also the enterprise CA will publish new CRL on very
    short period and you must ensure it will be accessible by all clients ASAP (Not to mention delta CRL where publishing period is even shorter).
    The type of the CA (standalone or enterprise) has nothing to do with the CRL publishing (except that Enterprise can publish in Active Directory automatically, standalone only on file system). Both can have ldap://, file:// or http:// CDP and AIA endpoints.
    It's up to you to send the CRL file to this point. Also as Zelliptic says, any web server (IIS, Apache, Ngenx, etc) can serve as CRL/AIA endpoint - it's just static files at all.

  • SL server as standalone server for  Windows(XP,7) network

    We have been using an OS X 10.3.9 Server XServe G5 as a mainly Windows ( all XP clients) PDC file server for 6-7 years. What a great machine and super reliable. But of course it is getting long in the tooth and so I am looking at the Mac Mini SL Server bundle.
    Now along comes Windows 7 which won't authenticate against an old style PDC. I am quite confused about whether a standalone SL server can act as a whatever is the equivalent to a PDC in the Windows 7 world. We simply want all our Windows XP and 7 client machines to authenticate against the SL server for consistent file sharing access.
    Thanks

    See:
    http://support.apple.com/kb/ts3235
    OS X cannot act as a PDC for Windows 7 or 2008 Server R2. So if you want to run a directory system for Windows 7, you can't use OS X at this moment in time.
    However, if you are happy for your Windows machines to be stand alone, not part of any domain and have all the users managed locally on each machine, then you can use OS X as a file server.
    You will need to create users on both the Windows machines and on the OS X box in this case.
    If you just have Windows clients and want a directory system, I would be looking at Active Directory.

  • Standalone Proxies for Web Services : Developer Studio 7.0.12 & SAP PI7.1

    Dear Experts,
    We are trying to consume SAP PI 7.1 WebServices using an EAR deployed on SAP NetWeaver 7.0.
    Unfortunately, we face the following issue using the WebService plugin of Developer Studio (based on SP12).
    The idea consists of generating a standalone proxy we can reuse as library in our EAR (we haven't tried the deployed proxy yet) but the generated code looks wrong. No issue neither during build nor during deployment but an HTTP 500 during the execution of the proxy. Actually, the stub inherits from the JAXR stub trying to execute an _init method which doesn't exist (according to the error message).
    It looks like having a generated code which doesn't fit with the NetWeaver Developer Studio librairies. Did someone face this issue in the past? How can we solve it or could someone tell me the version of the JAXR library we must use with the standalone proxy generated with this NetWeaver Studio version? Are my assumptions wrong?
    Thanks for your help and Best Regards,
    Ludovic Fernandez

    Hi,
        "Cannot allocate memory" bit common problem in the installation solution for this is just stop the installation connect to database and stop the database and start the database and restart the installation follow the steps to stop the database
    1. Logon as orasid user
    2. sqlplus/no log
    3. connect / as sysdba
    4. shutdown immediate
       to start startup
    Regards,
    Rakesh

  • Standalone application for data acquisition using NI DAQ card

    I have made a standalone application in labview GUI for data acquisition and signal processing. if i have to run this application in any other computer what all softwares should be installed other than labview runtime engine...NI DEVICE DRIVER CD alone is to be installed or do i have to install any other software for data acquisition using NI daq card??
      thanks and regards
    Solved!
    Go to Solution.

    You should only need the run time engine, The device drivers for the device, maybe need VISA drivers if you are doing serial or something of that nature, You may need the channels or tasks created in NI measurements and automation if you created them there.
    There may be other things that you will need depending on what you include in your code and what tool kits that you have installed.
    Tim
    Johnson Controls
    Holland Michigan

  • Need help : Installing the standalone OEPE for OSB 11g for development

    Hi All,
    It would be greatly appreciated if any one could share the details of installing the standalone OEPE (Eclipse along with the OSB plugin for 11g) for development purpose.
    If possible kindly share the download link for the same.
    Thanks in advance.
    Regards,
    Balaji R

    Hi,
    To have OEPE with the plugins for OSB you actually have to install Weblogic with OEPE and OSB. OEPE will need the libraries in Weblogic and OSB installation...
    The latest version for Weblogic+OEPE (Indigo) for Windows
    http://download.oracle.com/otn/nt/middleware/11g/wls/1211/oepe-indigo-installer-12.1.1.0.1.201203120349-12.1.1-win32.exe
    The latest version for OSB for Windows
    http://download.oracle.com/otn/nt/middleware/11g/111160/ofm_osb_generic_11.1.1.6.0_disk1_1of1.zip
    Weblogic download page...
    http://www.oracle.com/technetwork/middleware/weblogic/downloads/wls-main-097127.html
    OSB download page...
    http://www.oracle.com/technetwork/middleware/service-bus/downloads/index.html
    Cheers,
    Vlad
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts)
    https://forums.oracle.com/forums/ann.jspa?annID=893

  • Flash 9 standalone installer for IE

    We need to have the flash 9 player installed on all systems
    on our network (more than 10K machines). Is a adobe-released
    standalone installer (.exe, .msi etc) available for flash 9 or is
    there any other method of packaging and installing the player on
    all these machines? We want a IE compatible player.
    I gave a google search and found a .exe file on a third-party
    site but am sceptical about using it. Never know what may lie
    inside :)
    Thanks for your help.
    Cheers,
    FF

    I used to have a link to the old site(macromedia) but since
    adobe took over it would not work-for internet explorer I use this
    link:
    http://www.softwarepatch.com/internet/flash.html
    have not had a problem with anything -digital signatures are
    from adobe so it is fine-dont know where on adobes site to downoad
    this but I cant seem to find it,shame as trying to install on XP
    online is darn near impossible!

  • Native/StandAlone OEM  for 9i, 10g, 11g Databases for EBS

    hi hussein/helios,
    How do I install the standalone OEM web, for EBS with 9i, 10g, 11g database? I just can not stall GRID coz
    its so complicated.
    I have seen it here in a forum before , which is done thru a patch, but I can not find that link anymore :(
    Hussein give me that patch link before :), Can you help me find the link again please....
    It is so hard to search key words in the forum.
    Thanks a lot
    MsK

    Hi,
    By the way, If I use OEM GRID... Let's say we have 10 branches having each own distributed database on Linux, with
    different database version (like 8i, 9i, 10g, 11g). And we are located at the Main Office. Is the ff. steps the way
    to manage them?ff steps means?
    1. Install OEM Grid at the Main Office (10.2.0.5). My Main Office version in on Windows XP PC. Is it ok? to manage
    Linux servers using central Grid on Windows?Refer to the certification matrix in My Oracle Support website to find out if OEM is certified on XP or not (most probably not).
    2. Install OEM linux control agent at the 10 branchces which are on Linux.
    3. Each branches connect to Main Office via VPN like once a week, just to get/send updates.The above should be OK.
    Regards,
    Hussein

  • I need the JavaFX 2.2 standalone bundle for Windows. Where can I get it?

    Hi,
    Since JavaFX 2.2 is part of Java 7 now, there's only a JRE download.
    There used to be a standalone JavaFX 2.2 installer for Java 6 on windows. However it is no longer available. Could you please tell me where can I get it?
    Thanks

    alabala_kiril wrote:
    Never mind. I found it! Not sure how I've missed it. SorryPatience is a virtue ;)

Maybe you are looking for