Port number - Clustering

          Folks,
          I have 3 UNIX machines with 3 Managed WebLogic servers.If I want to do clustering,
          is it necessary to have the same port number for these 3 managed weblogic servers?
          MachineA:30000, MachineB:30000, MachineB:30000
          what happens if I give different port number for the above managed server instances
          and try to do WL clustering?
          Thanks
          - Robot
          

          "Majic Robot" <[email protected]> wrote:
          >
          >Folks,
          >
          >I have 3 UNIX machines with 3 Managed WebLogic servers.If I want to do
          >clustering,
          >is it necessary to have the same port number for these 3 managed weblogic
          >servers?
          >
          >MachineA:30000, MachineB:30000, MachineB:30000
          >
          >what happens if I give different port number for the above managed server
          >instances
          >and try to do WL clustering?
          >
          >Thanks
          >- Robot
          You can use the same or different port numbers. The key to providing managed server
          listening addresses is to ensure unique IPaddress:port combination for each managed
          server.
          Regards,
          Rob
          

Similar Messages

  • Port Number visible in Siebel URL

    Hi all,
    We have just finished deploying our Siebel Application in Production. It is a standard multi-server environment with Clustering and Load Balancing.
    However, we see that Siebel is automatically appending the Network Port Number (:8000), when accessing from an external Web Server.
    The client has requested this port number (:8000) be removed from the URL. We would really appreciate some help on the issue.

    You may have 2 constraints that are difficult to mix:
    1/ Any Browser consider an URL starting with http://server/path is to be send to port 80 of the "server"
    That is why all Web server (IIS, Apache, etc) use to be reached using port 80 by default.
    2/ Local security constraints
    One of those security guy may have told you that they can not accept to open the firewall or reverse-proxy to the port 80 of your virtual IP representing the web server farm
    Conclusion: Please have a discussion with your local security team and see if this has already been discussed.

  • How to find port number of message server

    Hi All,
       Is anyone there who could tell me how to find out port number of message server (Message Port)?  I am defining new system in my SLD so I need port number of message server of the system that I am connecting to. Thanks in advance.
       Best regards

    Hi,
    Go to the index page of the url,
    type http://hostname:http port in Internet browser.
    for ex : if installation is done on system with IP 172.16.28.90
    and your http port is 50000(depends on Central instance number,JCxx)
    then type http://172.16.28.90:50000.
    1.then go to system information tab in index page.
    for the credentials asked,type,
    user:administrator
    password:master password given during installation.
    then system information page opens,in the left corner top,you can find message server port.
    reward points if helpful.........

  • How to find port number , when there will be different instance number ?

    In case of portal url,
    port number is 50000 for default instance number 00.
    how to find port number , when there will be different instance number , instead of 00?
    Thanks

    Hi
    You can find the port number by your instance number as follows:
    There is a general format for the port number like you have mentioned.
    For 00 instance the port number is 50000.
    The general format for the port number goes like this:
        <b>5<instance_no>00</b>
    If your <b>instance number is 01</b> then the port number would be <b>50100</b>.
    It depends on the installation type which you perform.
    You can also change the instance number during the installation but normally you dont do this.
    If you have many components or units installed on your system you may have more than one instance in that case it may go like this 00, 01, 02....accordingly port number will be 50000, 50100, 50200...resp.
    Hope this solves your doubt.
    If you need some more clarification please lemme know.
    Regards
      Sumit Jain
    **Rewrd with points if useful.

  • Select Listener Port Number from which_table?

    I'm writing a SQL script that, among other things, disconnects from Oracle and then reconnects to the same instance as a different user. I'm able to query v$database and v$instance to get most of the information I need (host, service name, etc) for the reconnect part. The only part I'm missing is the listener port number. I could hard code it to 1521, but that isn't very flexible. Currently, I'm prompting the user (which is normally me) for the listener port number in the SQL script, but that just seems a little bit lame. So my question is this: is there a view or table somewhere in the sys schema that I could use to view the listener configuration? I'm mostly working with 10gR2+ databases.

    cleavitt wrote:
    That is possible, but it needs to be a standard Oracle configuration if the script is to remain generic and portable. The script is actually working fine as-is. I was just trying to go the extra mile and determine the port number automatically. I could also prompt for a TNSNames entry as suggested by others, but I don't always have an entry defined for all of the Oracle instances in my company on every workstation that I work from.
    Here is the script for anyone that is interested. It started out as a script that I found online, but the original did not work with 11g case-sensitive passwords and it only worked for local connections on the server.
    Description:
    Allows a DBA user to impersonate another user (without knowing the user's password).
    Similar in function to using the SU command in Unix/Linux.
    Note:
    This script temporarily changes the impersonated user's password and may cause other
    connection attempts by that user to fail during the moment that the temporary password is in effect.
    WHENEVER SQLERROR EXIT
    SET VERIFY OFF
    ACCEPT username CHAR PROMPT 'Enter the username: '
    ACCEPT listenerport NUMBER DEFAULT 1521 PROMPT 'Enter the listener port [1521]: '
    -- Define substitution variables and column mapping.
    COLUMN username NEW_VALUE username
    COLUMN password_hash NEW_VALUE password_hash
    COLUMN host_name NEW_VALUE hostname
    COLUMN instance_name NEW_VALUE servicename
    -- Populate substitution variables.
    SELECT
    name AS username,
    -- Get the user's password hash(s) and apply appropriate formatting for case-sensitive password if needed (11g+ passwords).
    NVL2(spare4, spare4 || ';' || password /* 11g+ */, password /* pre-11g */) AS password_hash
    FROM sys.user$
    WHERE name = UPPER('&username');
    SELECT host_name, instance_name
    FROM v$instance;
    -- Set the user's password to a temporary value.
    ALTER USER &username IDENTIFIED BY TempPass;
    -- Use the temporary password to connect to the database as the user.
    CONNECT &username/TempPass@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=&hostname)(PORT=&listenerport))(CONNECT_DATA=(UR=A)(SID=&servicename)));
    -- Reset the user's password to the original value using the original password hash(s).
    ALTER USER &username IDENTIFIED BY VALUES '&password_hash';
    SHOW USER
    UNDEFINE username
    UNDEFINE password_hash
    UNDEFINE hostname
    UNDEFINE servicename
    UNDEFINE listenerport
    WHENEVER SQLERROR CONTINUE
    SET VERIFY ONAnd by so doing you just kicked the user's password expiration on down the road, negating the benefit of havng a password expiration.
    Also, you locked out the legitimate user of this account, until such time as you reset it back to the original. And in the mean time, if this happens to be an account used by some automated process, that process doesn't know the new "temporary" password and runs a risk of locking the account from too many invalid connection attempts. Try to become SYSMAN or DBSNMP from this, and you will very quickly kill OEM.
    This has "bad idea" written all over it. What problem is it supposed to be be solving?

  • How to use the same OC4j server with different port number

    How to use the same OC4j server with different port numbers..?
    I have to OC4J installed on my machine on different hard disk drives....
    I want to be able to run both the server simultaneously..?
    is it possible ..it yes then how..?
    for that i have changed the port number of one server...
    but when i am trying to start the other server with different port number..it says that JVM -Bind already...
    Is there any clues...?
    Nilesh G

    In the config directory:
    default-web-site.xml: Change the port the HTTP listener listens on
    jms.xml: Change the port the JMS service listens on
    rmi.xml: Change the port the ORMI listener listens on.
    Or, you can add another web-site.xml file, and deploy your applications to 1 server, and bind the web applications to the different web sites. This way you only have to deploy your applications to 1 place.
    Rob
    Oracle

  • I am unable to access my iCloud e mail account and am still able to access AOL account though. It says something about an IMAP pathway and a port number how do I find this?

    I am unable to access my iCloud e mail account and am still able to access AOL account though. It says something about an IMAP pathway and a port number how do I find this?

    If the old ID is yours, and if your current ID was created by editing the details of this old ID (rather than being an entirely new ID), go to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • What is the ip port number for a 1st generation airport express

    I have recently upgraded my home wireless router from a Linksys EA2700 to a EA6500.  The EA2700 worked fine with my 1st generation Airport Express.  Since I have mavericks on my laptop (Airport Utility 6.x is incompatible with Airport Express/b/g) I used Airport Utility 5.6.1 on my Windows 7 laptop.  When I goto select my home wireless network in the APU drop down menu to select a network, my home wireless network never shows.
    Linksys says it might be a problem with port forwarding and they need to know the ip port number of  1st Generation Appler Express. 
    Thanks. -Rob

    AirPort Utility can be used to configure and change the settings on any of the AirPorts.
    If you have a Mac, AirPort Utility is here:
    Macintosh HD > Applications > Utiltiies > AirPort Utility
    If you have a PC, AirPort Utility for Windows is on the disk that came with the AirPort Express

  • Verizon # Ported number to Comcast, but its not working. Both say, its the other guys fault.

    I had my Verizon number ported to Comcast.  When I call out on Comcast...everyones caller ID shows my ported number correctly.  However, I am not getting incoming calls.  Those are still going to Verizon.  I have disconnected my Verizon incoming line and I'm using the Cocast VOIP...so everyone is calling my number, but its just ringing or them.
    Comcast says its a Verizon issues (have not released the number) Verizon says it's a comcast problem, they have not competed the port.
    Does anyone have any idea how I can resolve this?  It's been almost 2 weeks.

    I had my Verizon number ported to Comcast.  When I call out on Comcast...everyones caller ID shows my ported number correctly.  However, I am not getting incoming calls.  Those are still going to Verizon.  I have disconnected my Verizon incoming line and I'm using the Cocast VOIP...so everyone is calling my number, but its just ringing or them.
    Comcast says its a Verizon issues (have not released the number) Verizon says it's a comcast problem, they have not competed the port.
    Does anyone have any idea how I can resolve this?  It's been almost 2 weeks.

  • Which table show port number of R12 application?

    Hi,
    Which table show R12 application port number ?
    Like FND_NODES shows node details.
    Thanks

    Hi,
    You can get those details from the following tables:
    FND_NODES
    FND_TNS_ALIASES
    FND_TNS_LISTENERS
    FND_TNS_ALIAS_SETS
    FND_TNS_LISTENER_PORTS
    FND_TNS_ALIAS_DESCRIPTIONS
    FND_TNS_ALIAS_ADDRESS_LISTS
    For more details about the tables/columns, please refer to eTRM.
    Regards,
    Hussein

  • Node port number :This port is in use.Select another port number-

    I am trying to insalled Informatica 9.0.1 Hotfix2 on my personal laptop and getting below error and was getting same error for 8.6.1, Si i have uninstalled it
    Node port number :This port is in use.Select another port number
    I have tried passing different no like 6005,6006,6007,6008.... but for all it giving me the same error.
    Can any please answer where i can check that which port system is using and what the available values?
    OS: Windows 7 Professional
    DB:Oracle11g

    Hi,
    Goto start > run > enter netstat -o command and execute it and it will display all the addresses. In Foreign Address column the entire ipaddress:portnumber will be display and along with this process id(pid) will be displayed. Check whether the portnumbers are being used by any other application or it is in blocked state. If it is in blocked state then kill that process id with taskkill /pid /f command at command prompt.
    After doing this you can try to install it one more and let us know whether it got succeeded or not.
    Thanks,
    Navin Kumar Bolla

  • How to know the port number to which the server process is listening

    I have created oracle 10g Release 1 database(orcl) in Windows Xp Professional edition through DBCA . I also created one more database(sample) manually .
    The ORCL server process listens to port no 1521 and
    SAMPLE server process listens to port no 1522
    Once I start the OracleServiceORCL (Service for orcl) from services.msc and check the listener status it displays
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    But when I start OracleServiceSAMPLE (Service for sample) from services.exe and check the listener status there is no change . Only when i start the instance the dynamic registration takes place with port no 1521 .
    There is no entry for listener parameter in init.ora file . My question is how is the service ORCL able to get itself registered with the listener even before the instance is up ?
    And how can i know which port no is linked with which server process?
    Also if we provide a different port number(other than 1521 say 1522) in tnsnames.ora for a service and consider the listener is listening to both 1521 and 1522 . Now consider that port number 1521 is free . In this case to which port number will the service be listening to ?
    The listener file looks like this
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = D:\oracle\product\10.1.0\Db_2)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = irobo)(PORT = 1521))
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = irobo)(PORT = 1522))
    The tnsnames file has the following entry
    ORCL =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = irobo)(PORT = 1522))
    (CONNECT_DATA =
    (SERVICE_NAME = ORCL)
    SAMPLE =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = irobo)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = ORCL)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    )

    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...[coe]
    The status tells you the instance is up. Starting the service often means the instance gets started also, but whatever "often" means, "READY" means "The instance is up, running and taking callers".
    Your statement that "ORCL [is] able to get itself registered with the listener even before the instance is up" is therefore factually incorrect: you started the service, that started the instance. The instance is up and running. Instances that aren't running don't exist. Things which don't exist don't register themselves. Things which HAVE registered themselves therefore do exist.. and if they say they are "ready", it means they are completely, 100% up and running and behaving quite normally.
    I have not set LOCAL_LISTENER initialization parameter.How is this happening ?
    You only need to set LOCAL_LISTENER if (a) you're not using TCP/IP, (b) you're not using port 1521. Otherwise, PMON is hard-coded to register itself with listeners running on port 1521 and using TCP/IP and you don't need to set LOCAL_LISTENER to achieve that.
    Server Processes do not listen. Listeners do (there's a clue in their name). Listeners receive a call to connect to an instance, they spawn a server process to handle your call, and then they connect you to that server process (or send a message back to you telling you how to contact the server process). Each server process of course receives communications from its dedicated client on a specific port (usually in the 50000+ range), and that port is chosen randomly by the listener when it's spawning it. It's a bit blurry and vague to call that server process port a port on which server processes "listen", however.
    If you're talking dedicated server, each client causes one new server process to be spawned, and there is a one-to-one correspondence between server processes and the port that server process happens to accept client communications on.
    If you're going to ask a listener to do listening duty on multiple ports, I'd first question your need to do that and I'd then point out that unless your client tnsnames.ora knows to talk on the second or subsequent port numbers, the listener is never actually going to make use of that second port.
    In either case, the port the listener listens on has nothing whatsoever to do with the port your client-to-server-process communication ends up taking place on.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Change XML DB default HTTP port number from 8080 to ... ?

    Hi !
    I need to change the default port number of XML DB from port 8080 to something else, because the development server also hosts a web service, which is configured to listen on port 8080 for debugging reasons. This WS is provided by our partner and we have no control over the ports it uses.
    I'm not a network prof. so I'd like to ask what other port number would make sense for XML DB instead of 8080. Can I choose any port number I like, e.g. 8088?
    Besides using DBCA is there any other place I need to configure this new port number?
    TIA,
    Stefan

    I've done this on occasion using the OEM attach to the database and click XML Database then configuration, you will see it on the right window pane.

  • How to hide the PORT NUMBER from the URL

    Hi,
    We have Application on Node 1 and Database on Node 2
    Apps Version: 11.5.10.2
    DB: 9.2.0.6
    We recently added a new node to act as web server for iSupport.
    Now we are able to access the url using public Ip-address which looks like
    http://<Internet Ip-Address>:<PORT NUMBER>
    Eg: http://******.com:8000
    But we dont want the *'PORT NUMBER(8000)'* to be displayed.
    How to hide the port number ?..
    Thanks in Advance,
    Mahesh

    Hi Hsawwan,
    Can you plz explain me the steps how to hide the port number from the url as our network administrator is not aware of this.
    Regards,
    Mahesh

  • What is default database listener port number

    Running emca script requested for database listener port number. Where do I get this information from.

    If the port number is not specified in listener.ora,
    you may get different values with 10gR1 such as 1509,
    1525, 1525 or 1531 (on Windows XP SP2).
    I guess this depends also on whether the TCP/IP port
    1521 is really released or notI have seen what you have described above when port 1521 was in use by another process. If the port is not in use, I have not seen any thing other then 1521 assigned when the listener was created either during installation or afterwards using Net Assistant.

Maybe you are looking for

  • :0185660561 after writing the licence code it is impossible to announce myself. So the software,Photoshop El.12 is not working

    I bought Adobe Photoshop Elements 12 to import RAW pictures. Indeed my pictures could have been imported. But I could not convert them in JPG. The extension of my pictures is RW2 it seemed to be a different kind, special from Panansonic camera"s. At

  • I updated iTunes, now it dosen't work

    I updated iTunes now i get this error "iTunes cannot run because some of its required files are missing. Please reinstall iTunes." Is it going to count this computer again as another copy of all my songs. This computer is at least two of the 'copies'

  • How to create Drill through's from BPC to ECC and BEX

    Hi Experts, @Greetings@ Am new to BPC can any one help me on Drill trough's. I want to create a drill through to ECC system and BEX Query. Thanks for support in advance. Regards, Harini.

  • Safari not reloading properly

    I did a brief search and no luck. Whenever I browse on Safari and I click away then go back a few pages, it doesn't load the current page, but seems to load a "saved" version from somewhere. How do I make sure it'll refresh and show me the most up-to

  • SQL LIKE Operator return nothing

    I am working on an intranet application and use Access as the database. There is a query that I have <CFQUERY DATASOURCE="#DSN#" NAME="GET_SEARCH_RESULT"> SELECT * FROM WL_TREES WHERE TREENAME LIKE '3*' </CFQUERY> It returns nothing in ColdFusion, if