How to detect the Port Number of apex : localhost:????

Dear firends,
I install APEX 3.0 on oracle 10g release 2.
How to detect the Port Number of apex to acces it ? (localhost:????)
regards
siyavuş

Have you installed the Oracle HTTP(OHS) server yet ? If you have then the HTTP config file should specify what port the HTTP server listens at. This port is the port number you use to access APEX

Similar Messages

  • 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

  • How to change the port number for deployment in JAVA Studio Enterprise 8?

    Hi!
    Yesterday i downloaded this new sun java studio enterprise and found it mind blowing.
    Now i find that all my previous applications which were running on port 8080 can't be run on sun java studio enterprise(sjse) 8.
    Can anyone tell me how to change the port number on this software so i won't have to edit all my applications?

    http://docs.sun.com/source/819-0080/install.html
    In the Admin Configuration page (or at the command line), enter the following:
    Admin User Name�Name of the user who administers the server
    Password�Admin user�s password to access the Admin Server (8-character minimum)
    Admin Port�Administration port number for initial server instance
    HTTP Port�Port number to access the default server instance
    HTTPS Port�Secure port number to access the default server instance

  • How do you change the port number for Apex Listener V2?

    I'm running Apex listener V2 in standalone mode on Linux.  I want to change the port number of the apex listener V2 (e.g 80 to 8080).  How do I do that without re-installing the whole listener again?
    thanks in advance
    PaulP

    Hi PPlatt,
    You can modify your_listener_home_directory/apex/apex.properties
    http.port=8080
    Stop & restart listener.
    HTH
    Zack

  • How to modify the port number and use subdomains

    Couple of things ...
    1 - default port for installation is on 7777 and 7778. Would it be possible to run everything on port 80? I would like to hide the port number and not have people type in http://domain.com:7778
    2 - how can we use subdomains for certain services? For example, webmail should be http://webmail.domain.com and the RTC should be http://conference.biztech.com
    thx

    we're using OCS both inside and outside our network.
    I had my dba modify the port so now everything runs on port 80. However, I dont know how to get virtualhost to work correctly.
    conference.domain.com -> RTC piece
    webmail.domain.com -> webmail piece
    i.e....

  • 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.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • How to modify the port number of j2ee reference?

    hello
    i install the j2ee1.3 on my windows2000 server,after i setup the environment,i iuput the "j2ee -verbose" within the dos window,the following exception is throwed:
    Logging for J2EE Server Version: 1.3.1-b17 started at: Wed Aug 07 19:23:22 CST 2002..
    Using the Java HotSpot(TM) Client VM and the version number 1.3.1 from Sun Microsystems Inc..
    VM is using the classpath: E:\j2sdkee1.3.1\lib\system\cloudscape.jar;E:\j2sdkee1.3.1\lib\system\tools.jar;E:\j2sdkee1.3.1\lib\cloudscape\RmiJdbc.jar;E:\j2sdkee1.3.1\lib\cloudscape\cloudclient.jar;E:\j2sdkee1.3.1\lib\classes;E:\j2sdkee1.3.1\classes;E:\j2sdkee1.3.1\lib\j2ee.jar;E:\j2sdkee1.3.1\lib\toolclasses;E:\j2sdkee1.3.1\lib\j2eetools.jar;E:\j2sdkee1.3.1\lib\locale;;E:\JBuilder6\jdk1.3.1\lib\tools.jar;E:\j2sdkee1.3.1\lib\jhall.jar .
    J2EE Home Directory has been set to: E:\j2sdkee1.3.1.
    java.lang.RuntimeException: Could not initialize j2ee server. Possible cause could be another instance of the server already running.
    at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMgr.java:119)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    java.lang.RuntimeException: Could not initialize j2ee server. Possible cause could be another instance of the server already running.
    at com.sun.enterprise.iiop.POAProtocolMgr.initializeNaming(POAProtocolMgr.java:119)
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:226)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    java.lang.RuntimeException: Could not initialize j2ee server. Possible cause could be another instance of the server already running.
    at com.sun.enterprise.server.J2EEServer.run(J2EEServer.java:346)
    at com.sun.enterprise.server.J2EEServer.main(J2EEServer.java:972)
    J2EE server reported the following error: Could not initialize j2ee server. Possible cause could be another instance of the server already running.
    Error executing J2EE server ...
    it seem like that the "1050" port is in using by other program,but i don't know which one,i think i should modify the j2ee reference to use other port,how can i do that?
    thank you very much!

    This certainly fixed the problem I was having when all of a sudden my j2ee server would no longer open. However, this raised a new question for me which is somewhat of an off-shoot to this problem - how does one select a new port#? Is there some rule of thumb? Just wondering.
    Thanks! Janet

  • How to enter the port number in Laserjet P1606dn to use with ip number

    I need to enter the print server port number along with the ip found the ip but no the port number

    for which operating system?
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • How to check the port number of a particular ip?

    One usaer askingme this question see below please
    I need to know what port is being used from for IP 130.52.8.3.How to check please suggest me gurus

    You need to ask the user that which port he is looking for and for what program.Netstat can be used to see the ports used at the moment in your pc.See here for example on a Winxp box running 11gr1(11106)
    c:\>netstat
    Active Connections
    Proto  Local Address          Foreign Address        State
    TCP    Oracle:1025            localhost:1742         TIME_WAIT
    TCP    Oracle:1025            localhost:1744         TIME_WAIT
    TCP    Oracle:1025            localhost:1746         TIME_WAIT
    TCP    Oracle:1025            localhost:1748         ESTABLISHED
    TCP    Oracle:1025            localhost:1750         TIME_WAIT
    TCP    Oracle:1025            localhost:1752         TIME_WAIT
    TCP    Oracle:1025            localhost:1754         TIME_WAIT
    TCP    Oracle:1025            localhost:1755         TIME_WAIT
    TCP    Oracle:1025            localhost:1757         TIME_WAIT
    TCP    Oracle:1025            localhost:1760         TIME_WAIT
    TCP    Oracle:1025            localhost:1762         TIME_WAIT
    TCP    Oracle:1025            localhost:1763         TIME_WAIT
    TCP    Oracle:1025            localhost:1765         TIME_WAIT
    Aman....

  • IAS6.0 SP4: How to find the port number of the JVM

    I want to check the jvm to know whether the startup class is excecuted in kjs or cxs.
    I want that certain operations in the startup class are not excecuted in every kjs or are excecuted only once.
    Thanks for your help

    There is a better way. Use kiva API to cover all OSs:
    knowledgebase FAQ 4008 (
    http://knowledgebase.iplanet.com/NASApp/ikb/index.jsp):
    ServletContext ctx = ...
    com.netscape.server.IServerContext sc =
    (com.netscape.server.IServerContext)ctx;
    com.kivasoft.IContext gxContext = sc.getContext();
    String host = com.kivasoft.util.GX.GDSCurrentEngineGetString
    (gxContext, null, "Host", "defaulthost");
    int port = com.kivasoft.util.GX.GDSCurrentEngineGetLong (gxContext,
    null, "Port", 0);
    But I also want to get the kjs's name which used in the log file's name:
    kjs_1.log. How to?
    Stefan Herz wrote:
    I want to check the jvm to know whether the startup class is excecuted
    in kjs or cxs.
    I want that certain operations in the startup class are not excecuted
    in every kjs or are excecuted only once.
    Thanks for your help
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • How to change the port number

    Hi all,
    Weblogic Application server by default uses port 7001
    for access to console and enterprise manager
    can any one tell how to chage it.
    Please help me to resolve this..
    Regards
    cnu

    Hi,
    Please login to Admin Console "http://localhost:7001/console" then ...
    press Lock And Edit Button
    Now From Left panel Environment--->Servers--->AdminServer--->Configuration (TAB)--->ListenPort
    Change the value of Text Field to some other Port and then Restart your Server
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com (WebLogic Wonders Are Here)

  • How do I set the port number on my Ipad

    I need to find out how to set the port number on my IPad to use Telus Email which will receive but not send

    You will not be able to send any mail until you tell it the outgoing mail server.
    How did you learn about the port number?  If you google your isp and the words mail settings, you will likely find a page with all of the needed settings, including the outgoing server name, and a confimation of the port needed.
    Once you know those two answers, go to the setting screen, and touch the outgoing server field, and you will be able to enter the name.  Spell it right. Then touch the advance tab, then, the port number, and enter the proper port number.
    If you get those entries right, you should be all set. 

  • Change the port number

    can i install Oracle server and tomcat server on same machine ?
    how to change the port number in OracleXE 10g. so that i can install oracle Data base and tomcat on same machine.

    can i install Oracle server and tomcat server
    on same machine ?Yes.
    >
    how to change the port number in OracleXE 10g.
    so that i can install oracle Data base and tomcat on
    same machine.Just make sure Tomcat is running while you install Oracle, and it should find the port in use.
    Otherwise, turn tomcat off, install using port 8080, and use the sqlplus command 'exec dbms_xdb.sethttpport(8090); to change the port to 8090 after the fact.
    Before installing:
    1) On WIndows, use a LOCAL machine administrator, not a domain administrator or non-admin user;
    2) On Windows, turn off all firewalls before installing; on Fedora, turn off SELinux;
    3) If there was a previous Oracle on the machine, on windows make sure the registry is clean.

  • How to detect the sign of a number?

    I have output which gives either negative number or positive number. My problems is how to detect the sign of the number and output boolean value? For example if input number is negative like -23.11 I want to output false and if the number is positive like 17.99 I want to output true.
    T H A N K S!
    Solved!
    Go to Solution.

    Message Edited by Phillip Brooks on 07-16-2009 11:08 AM
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • How can I  change the port number generated in the returned url?

    We have a hardware load balancer listening on port 80 and forwarding requests to weblogic 6.1 sp2 servers on port 8090. The web servers generate urls containing the port number (and ip address of the load balancer). The browser tries to acces the load balancer at port 8090 and fails. So, how can I tell weblogic not to put a port number in the url?
    TIA, Reinier

    Generated WSDL will use the URL of the incoming
    HTTP GET request (request to retrieve wsdl) to create:
    service->port->location->address
    attribute inside the WSDL.
    This attribute is used by the client to send the SOAP
    request.
    So the HTTP GET request to retrieve the WSDL
    should use the address of the load balancer (ie 80).
    Then the generated WSDL will also have a url with
    port 80.
    http://manojc.com
    "reinier" <[email protected]> wrote in message
    news:3ea95116$[email protected]..
    We have a hardware load balancer listening on port 80 and forwardingrequests to weblogic 6.1 sp2 servers on port 8090. The web servers generate
    urls containing the port number (and ip address of the load balancer). The
    browser tries to acces the load balancer at port 8090 and fails. So, how can
    I tell weblogic not to put a port number in the url?
    TIA, Reinier

Maybe you are looking for