Do we need nodemanager for SOA server installation?

Hi All,
I am installing both Weblogic Server ans SOA suite (SOA Server) in the same machine.
What I red on net and nodemanager is required if managed server is installed on a different machine from the machine where weblogic server is installed.
So in that case,Do I need to use nodemanager?
Actually I already installed both weblogic and SOA suite in the same machine.I am able to start the servers by using startWebLogic.cmd and startManagedWebLogic.cmd.I also got the SOA folder in EM console.
But When I am trying to deploy the application,it is giving "Closing socket as there is no read from 'ipaddress' machine etc " warning.
That is why I want to have info whether nodemanager is the reason for not able to deploy application into server.
Please guide me on this
Thanks in advance

I already replied to this same query. For benefit of others, here is the same reply.
Hi
1. Absolutely NOT. No, you do NOT need any NodeManager at all. Basically NodeManager is to Control all the Servers spread across different machines from One single point. Say you have 4 machines with 4 soa servers running in a cluster. General practice is we go to each machine (physically or using telnet like that) and run command like startManagedWeblogic soa_that_server_xx. We do this to start and stop. To avoid this and have better control, we use Node Manager. Node Manager is a small service that runs on each of these machines. And from one Single machine generally where we have Admin Server, we login into admin console. From Admin Console, we can Start / Stop any Server. Node Manager is more useful for complex cluster in QC or UAT or PROD Env.
For Dev Env, absolutely not required. Use startWeblogic and startManagedWeblogic and good to go.
Thanks
Ravi Jegga

Similar Messages

  • Do I need to set  system env variables for weblogic and SOA server installation?

    Hi All,
       I already have two weblogic application servers on my machine(that were installed by others).
    I observed some environment variables were also set in System variables(ORACLE_HOME,WEB_SERVER_HOME etc) section in Env variables section(Start Menu---> Computer --> properties ---).But why do we need to have system environment variables wherein we already have those variables in files like setDomainEnv.bat or/and setSOADoaminEnv.bat for each server.
    And one more thing system variables will be applicable for all servers(the whole machine) right.It may spoil the installation of new servers and present servers as variables should be unique to each server.
        I want to install weblogic and SOA server installation.
    So Can I remove the existing system variables(as they will applicable for every server) and install weblogic and SOA server installation without setting up the environment variables?
    Especially I have multiple Weblogic servers,In that case how it would be to have environment variables(JAVA_HOME,WL_HOME,ORACLE_HOME etc)?
    Please guide me on this to installl SOA suite .
    Thanks in advance

    Hi All,
       I already have two weblogic application servers on my machine(that were installed by others).
    I observed some environment variables were also set in System variables(ORACLE_HOME,WEB_SERVER_HOME etc) section in Env variables section(Start Menu---> Computer --> properties ---).But why do we need to have system environment variables wherein we already have those variables in files like setDomainEnv.bat or/and setSOADoaminEnv.bat for each server.
    And one more thing system variables will be applicable for all servers(the whole machine) right.It may spoil the installation of new servers and present servers as variables should be unique to each server.
        I want to install weblogic and SOA server installation.
    So Can I remove the existing system variables(as they will applicable for every server) and install weblogic and SOA server installation without setting up the environment variables?
    Especially I have multiple Weblogic servers,In that case how it would be to have environment variables(JAVA_HOME,WL_HOME,ORACLE_HOME etc)?
    Please guide me on this to installl SOA suite .
    Thanks in advance

  • Configuring SSL for SOA Server

    Hi All,
    I wrkin on SOA suite 11g. I am tryin to implement transport level security. Firstly 1-way authentication and than 2-way mutual authentication. For that I need to enable the SSL for SOA server which is managed by the WLS admin server. As per my knowledge the WLS comes with demoidentity and demotrust keystores. If I need to configure the SSL for SOA server do i need to create new keystores and CA,s or I can use the demo keystores.
    Now, in case i need to create new keystores than can i do the same using keytool utility. Additionally, is it possible to make CA using keytool utility? If yes, kindly provide me some links about how to do the same.
    Thanks in advance.

    Hi Shomit,
    If I need to configure the SSL for SOA server do i need to create new keystores and CA,s or I can use the demo keystores.You can use the Demo keystores for dev purpose but it is NOT recommended to use demo keystores for production use.
    in case i need to create new keystores than can i do the same using keytool utilityYes, you can do it using Keytool utility.
    is it possible to make CA using keytool utility?Actually you can generate a self-signed cert and use that as a CA for signing CSR's.
    kindly provide me some links about how to do the sameYou should get everything here -
    http://download.oracle.com/docs/cd/E14571_01/web.1111/e13707/ssl.htm#i1200848
    Regards,
    Anuj

  • Adobe Illustrator in out Terminal Server environment. How is the licensing work for Terminal Server installations?

    Adobe Illustrator in out Terminal Server environment. How is the licensing work for Terminal Server installations?

    You can find all forums here:
    https://forums.adobe.com/welcome

  • Error Handling for SOA Server

    Hi All,
    I converted a java code into a webservice with the help of jdeveloper and deployed it into weblogic server, and it is working fine when I am invoking it through the SOA server. But, when I am passing some wrong input values I should suppose to get error, but I don't see any errors inside em and status is showing as completed. At the same time, I am able to view the complete error stack trace inside soa_server1 command prompt (StartManagedWeblogic soa_server1). How can I catch this errors inside em. I added catchall block but no success. My requirement is to catch this errors inside em and need to email it.
    Thanks,

    Hi,
    Thanks for your reply. Can you let me know, where to modify the code in order to print the error inside em.
    package com.ka;
    import com.agile.api.APIException;
    import com.agile.api.AgileSessionFactory;
    import com.agile.api.IAdmin;
    import com.agile.api.IAgileClass;
    import com.agile.api.IAgileSession;
    import com.agile.api.IServiceRequest;
    import com.agile.api.ServiceRequestConstants;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    import java.util.Calendar;
    import java.util.HashMap;
    import javax.jws.WebService;
    import javax.xml.soap.SOAPException;
    import javax.xml.ws.BindingType;
    import javax.xml.ws.WebFault;
    import javax.xml.ws.soap.SOAPBinding;
    @WebService(portName = "ClassTestSoap12HttpPort")
    @BindingType(SOAPBinding.SOAP12HTTP_BINDING)
    public class ClassTest {
    public String TestAPIMet(String complaintNumber, String description, String disposition, String severity, String workflow ) {
    IAgileSession m_session=null;
    IAdmin admin=null;
    try {
    String error="invalid";
    HashMap params = new HashMap();
    params.put(AgileSessionFactory.USERNAME, "**********");
    params.put(AgileSessionFactory.PASSWORD, "***********************");
    System.out.println(""+params);
    AgileSessionFactory instance = AgileSessionFactory.getInstance("http://*******************************");
    System.out.println(""+instance);
    m_session = instance.createSession(params);
    System.out.println("Session ID:"+m_session);
    admin = m_session.getAdminInstance();
    IAgileClass cls = admin.getAgileClass( "ProblemReport" );
    System.out.println("Class ID:"+cls);
    IServiceRequest psr = (IServiceRequest)m_session.createObject( "ProblemReport", complaintNumber);
    psr.setValue(ServiceRequestConstants.ATT_COVER_PAGE_DESCRIPTION, description);
    psr.setValue(ServiceRequestConstants.ATT_COVER_PAGE_DISPOSITION, disposition);
    psr.setValue(ServiceRequestConstants.ATT_COVER_PAGE_SEVERITY, severity);
    psr.setValue(ServiceRequestConstants.ATT_COVER_PAGE_WORKFLOW, workflow);
    DateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss a z");
    Calendar cal = Calendar.getInstance();
    psr.setValue( ServiceRequestConstants.ATT_COVER_PAGE_EXPECTED_RESOLUTION_DATE, dateFormat.format(cal.getTime()));
    catch (APIException e) {
    e.printStackTrace();
    e.getMessage();
    e.getRootCause();
    finally {
    System.out.println("Session is closing");
    m_session.close();
    System.out.println("Session closed");
    return "Success";
    }

  • Jinitiator 1.3.1.9, need upgrade for 9iAS server?

    Hi, I am trying to setup a 9iAS test server on Windows 2000. The bundled Jinitiator 1.1.8.? Did not work with my test box but did work on the server. I downloaded Jinitiator 1.3.1.9 and it installs and runs on my client box. I have modifed the needed FORMSWEB.CFG & Jinit files and I go get the correctly configured served out page to my client but I get a java exception:
    Oracle.ewtinAWT.lwcomponet'''s signer information does not match signer info...
    I can find the referenced .class file. However, I didnt know that the server side needed to be modifed to run Jinitiator 1.3.1.9. Is there a patch for the server side or more docs somewhere.
    I'm stuck.
    Thanks for any help,
    Scott Peterson

    Firefox 3.0 and 3.5/6 versions require at least Mac OS X 10.4
    http://www.mozilla.com/en-US/firefox/system-requirements.html - Mozilla Firefox 3.6 System Requirements
    Firefox 2.0.0.20 is the last release that runs on Mac OS X 10.2 and 10.3
    See:
    * http://kb.mozillazine.org/Installing_Firefox
    * http://kb.mozillazine.org/Unsupported_operating_systems
    Mac: https://ftp.mozilla.org/pub/mozilla.org/firefox/releases/2.0.0.20/mac/en-US/
    Other browsers that you can look at:
    http://caminobrowser.org/download/releases/ (#os10.3.8)
    [http://en.wikipedia.org/wiki/ICab iCab]: http://www.icab.de/
    http://www.seamonkey-project.org/releases/seamonkey1.1.19

  • Do we need CALS for windows server 2008 R2 and 2012 R2 if 2008 R2 is just a stepping stone?

    We currently have a server on Windows Server 2008 RC SP2 64-bit with approximately 20 clients.
    We want to upgrade to Windows server 2012 R2 but first need to upgrade to Windows 2008 R2 to allow us to do a straight upgrade.
    Is it possible to upgrade to Windows Server 2008 R2 with the 5 CAL's included and then upgradeto 2012 R2 and install 20 new CAL's and keep all users accounts and domain PC's the same? 

    Ok sorry for using the wrong terminology... I was under the impression for each client (Computer) connecting to the server we will need a CAL (Client Activation License) in order for the computer to be a domain PC on the server. Do I need 20 CALS's
    for Windows Server 2008 R2 and then another for Windows Server 2012 R2 if we are only upgrading to 2008 R2 to be able to upgrade to 2012 R2 without having to do a clean install.
    For WindowsServer (Standard edition or Enterprise edition or DataCenter edition), a Client Access License (CAL) is required for each device (if you're using the per-Device CAL licensing method), or, is required for each user (if you're using the per-User
    CAL licensing method).
    (whether you use per-Device, or per-User, is up to you, it comes down to cost).
    CALs are version-specific (to a point) - i.e. if you purchased WS2008 CALs for your 20 devices, for use with your WS2008 server, and you are now upgrading that server to WS2012, you need to upgrade your CALs.
    If you are adding a second server which is WS2012, and you are keeping your WS2008 server, you need to upgrade your CALs (because you only purchased WS2008 CALs which don't grant you the rights to connect to the newer server).
    If you were to install your second server as WS2008, you wouldn't need to purchase additional CALs, because as long as the version is the same, a single CAL grant you access to unlimited server (of the same version).
    CALs can be tricky to correctly license.
    Here's some introductory reading:
    http://www.microsoft.com/licensing/about-licensing/client-access-license.aspx#tab=1
    And, none of this relates to the technical aspects of product installation/configuration at all (e.g. clean install vs. upgrade).
    Windows Server CALs are not license keys/tokens/files which you install/load/download - Windows Server CALs are quite literally paper-based (just like a drivers license or car registration). You are required to have them, to be correctly licensed, but, you
    don't physically do anything with them to own/drive a car.
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • HTTP Proxy setting for SOA server

    Hi,
    my intention is to enable SOA Server to connect through HTTP Proxy to external services. This occurred when I am trying to connect to Yahoo Mail Server, via User Messaging Service but it keep throwing connection time out. One of the possible solution is to make the service to connect via the HTTP Proxy server in our network.
    There are no mention of how to setup HTTP Proxy connection for UMS, as well as SOA Server in any documents.
    Please advice or direct me to the relevant solutions.
    Appreciate any help rendered :)
    yee thian

    I have not worked in SoA server, but since it uses weblogic server underlying (I assume), you can try setting the -Dhttp.proxyHost , -Dhttp.proxyPort system properties ( https for secured URL's) to WLS to specify the proxy details. Also the product might not have the capability to pass user credentials for authentication at the proxy. The version of OSB we are using had this problem. To overcome this you might require to add the URL to the proxy free list in your proxy server. This prevents the proxy from prompting for the user name when you access that URL.

  • Does Server Side Targeting need GPO for WSUS server to start?

    This may be obvious, but for WSUS Server side targeting, I assume that I still need to use GPO (with AD) to point the client machines at the WSUS Server, before they will appear under the Unassigned group?
    Is that true?   Otherwise, i don't understand how the clients will know that they are using that WSUS server.
    What exactly needs to be setup for Server side targeting using GPO.   Is it only the WSUS server that needs to be setup, or does Automatic Updates needs to be configured as well.
    Thanks for your help.

    Hi Gleb:
    That's what I thought.  Thanks, for confirming.   So just to make sure I'm clear on this.  
    For server side targeting:
    I would probably setup the AD GPO at the domain level, so that WUServer and WUStatusServer  values point at the WSUS Server.   Once, those are setup and a sufficient period of time has passed for the policy to be passed to the client workstations,
    I should start seeing the workstations appearing under the Unassigned group.
    I assume that I would also configure some of the following as well using the GPO, since we will be using the AU for updates, after I move the computers manually to groups.   For example, I would probably configure under AU:
    NoAutoRebootWithLoggedOnUsers 
    UseWUServer 
    NoAutoUpdate 
    AUOptions 
    ScheduledInstallDay 
    ScheduledInstallTime 
    I would guess that the above items need to be configured whether I'm doing server side targeting or client side targeting.
    Can someone confirm?:

  • Software Metering for SQL Server installations

    Hello everyone,
    I created a software metering rule for "sqlservr.exe" file. I was able to get information, but this information included SQL Express, which is something I don't need. 
    So, my question is, how do you guys meter the SQL Server 2xxx installations in your environment?
    Thanks!

    I may have done a poor job at explaining what kind of report/metering or inventory that I'm trying to get.
    Something like this:
    SERVER1 MS SQL Server 2008 R2
    SERVER2 MS SQL Server 2012
    SERVER3 MS SQL Server 2008 SP1
    SERVER4 MS SQL Server 2008 R2
    I thought I could achieve this kind of report using metering.

  • How can I specify where to look for the server installation of the Oracle client?

    I assume changing the $ORACLE_HOME variable would get ORE to use 12.1.0.2 instead of 11.2.0.3, but I only want to change which Oracle R uses. How can I override the server's $ORACLE_HOME location when I'm connecting to the database from the client side?
    OS: Linux Mint 17 / Solaris 11.1
    R version: 3.1.2 (both)
    ORE version: 1.4.1 (both)

    On the server, the Oracle R Enterprise installation is tied to an Oracle Database installation.  Have you installed Oracle R Enterprise for both the 11.2.0.3 and 12.1.0.2 databases?
    If so, the client connect will be able to find the ORE server when you connect to the database using ore.connect:
        R> ore.connect(user = "username", sid = "database sid", host = "hostname/database server", password = "user password", all=TRUE).
    During the ORE installation on the server, we lay down software bits on the OS, install a schema into the database, plus add some libraries to $ORACLE_HOME.
    Sherry

  • Need Driver for Window Server 2012 R2

    Hello  I Need driver window server 2012 R2 driver for Hp laserjet MFP M226dn. Please help

    Hi Bappan1, What you could try is the HP universal print driver.I can't promise that it works but please give it a shot. Go to the following link:http://h20564.www2.hp.com/hpsc/swd/public/readIndex?sp4ts.oid=4157320 Choose your O/S Windows Server 2012 R2.It will give your 3 options:PCL6PCL5Post Script You can try either one and check if this works.Please do know that this is not the exact same driver as the original driver.This is also only for printing. Please let me know if it works. Bas Pootjes

  • Need Help for client - server - client question [Sockets]

    Hi
    I have read the http://java.sun.com/docs/books/tutorial/networking/sockets/index.html tutorial and made this Knock Knock Application.
    But now, I want that one client can view all the other clients which are connected to the server, and interract with a selected cleint over the server (client - server - client).
    But I have no idea how to build such a registration concept?
    A concrete hint (or link) how to realise this would be very helpful. I searched all the internet for examples, but I dont found a simple example.
    Thanks in advance
    greeds

    wSam,
    It appears that Sun considers RMI to be simpler, although less efficient than the alternative:
    http://java.sun.com/developer/technicalArticles/ALT/sockets/
    This article also talks about object serialization, which I am a fan of. Suppose that you want to send a data structure containing lots of information (like all connected users). You can actually pass an object (rather than text) across the network using ObjectOutputStream and receive it on the other end with ObjectInputStream. You might create your own Command class for passing objects between the client and server instead of using RMI. The Command class might hold flags that indicate which method should take place on the remote machine (i.e. send chess move command).

  • I need help for network printer installation.

    Hi, I want to install Konica bizhub 7228 network copier in Mac v10.6.2. I have some trouble please advise the mathod of installation.

    The only printer driver I see for that is a Postscript driver at  http://onyxftp.mykonicaminolta.com/download/SearchResults.aspx?productname=7228.
    Are you able to define your printer to the network? Can your MacPro see it? Can you describe what you've done and the nature of the trouble ...
    Also ... you posted in the iMac discussion ... you might post in the MacPro discussion at https://discussions.apple.com/community/desktop_computers/mac_pro

  • OEPE installation for production server

    Does Oracle Enterprise Pack for Eclipse (OEPE) is required for WebLogic server installation (SOA 11g) for production environment ?
    Or this is needed only when you need to develop some some SOA stuff ..

    I got the answer that this is needed for OSB 11g.

Maybe you are looking for

  • Print, pdf, mail from form

    Hello, I want to print, create pdf file on desktop and send external mail of invoice from SAP form (all in one program). I have following question: 1) can we do all from one program? 2) Will it download pdf file on presentation server (c:\filename.pd

  • How to set a default value in Select one choice.

    Hi I'm using ADF BC, in that how to set a default value in select one choice. pls. help on this. regards

  • Performance Tuning "Select All" vs "Select Then Delete"

    Dear Experts, Please tell me which one has better prefromance between SELECT a~vbeln          a~kunnr          a~bukrs_vf          a~vkorg          a~vtweg          a~spart          a~augru          a~vbtyp          a~auart          a~bstnk         

  • Changing the color of a selection to HEX

    Hi guys, i'm new to illustrator scripting (but not to javascript or programming). I have an AI file that has multiple layers. each layer has several items that are supposed to be of same color. I have an array of HEX values. I would like to loop over

  • How to set the number of packets to be send per second to the serial port in labview

    hi.               i have to send data to serial port such that each packet of data should be send at a rate of 4 packets per second?? how can it be done?? thanks and regards Solved! Go to Solution.