Find the port of the portal

hello:
1. I Know the http port for portal is 5NN00,but i want to know which file it is stored! i found a same port in   /config/usagetypes.properties, the para J2EE_HTTP_PORT=50400,is it the http port for portal?
2 is there any tool i can use to find any the ports through which the frontenduser can acess the portal?
3 in my url i type http://10.20.11.10:50400/index.html, and click the system information
   there are
   HTTP Port:        50400
   HTTPS Port:      50401
   P4 Port:      50404
   Telnet Port:      50408
are the ports is used for frontenduser? can  this method finish the second question?
thanks!
Edited by: zhangshi1986002 on Dec 10, 2009 6:03 AM
Edited by: zhangshi1986002 on Dec 10, 2009 6:38 AM

thanks for your reply:
    i have anther question relative with this, so i do not open a new thread.
i know how to use the http port 50400, http://10.20.11.10:50400/irj/portal
but about the https port 50401,i type https://10.20.11.10:50401/irj/portal,but i got a wrong message. did i use 50401 in the right way?

Similar Messages

  • FIND THE PORT OF THE ECC  BI

    Hello:
       Our company has installed a portal through which we can access ECC,BW,SRM and XI,  now I have to find all the ports that enable the frontenduser to access the portal ,ECC,BW,SRM and XI, no matter though the SAPGUI,webgui,or thought the protal.
    additional we have installed the web dispather.
    here is my solution: for ECC -->   i can find the port though the LOGON DATA (SM51->SERVER NAME->INFORMATION-LOGON DATA). the same method can be used for the BW SRM AND XI.  can i finish my job by doing this?  if yes, is there some easy method? if no ,please give me some advice.
    and about the portal, please give me some advice!!!!
    THANKS A LOT!

    thanks for your reply!
         as you said,the port is relative to my instance num,is that mean if my instance is 00, the Dispatcher port of that instance must be 3200,it can not be modified?  i just to want to make sure, they are not changed.
         and i use transaction smms->logon data->display,there are a list of logon types,
      logon type      hostname     port
    dialog xxx.xxx.xxx 3200
    rfc xxx.xxx.xxx 3301
    http xxx.xxx.xxx 8001
    does that mean i can only assess the system though those ports?
    thanks a lot!

  • How to find which port on the switch that it connected with Mac address?

    Hi,
    I am trying to find which port of the switches it connected to thru mac-address?
    I am able to get the mac-address from the ip address when i do
    "show ip dhcp binding snooping" at the core switch.
    But when I move on to the Edge switch to check which PC with this Mac address connected to the port,i returned with no result.(onli trunk port result)
    I use sh ip arp | inc 000d.60cb.445d
    but didn't give me which port it connected to.
    How to solve this problem?
    thanks!
    KL

    Hi KL,
    If you are already on the edge switch you can run a command "sh mac-address-table address " and it will give you the port number.
    Incase you get a port which is a trunk port that means the end device does not exist on this switch and exist on some downstream switch. So you can just find out the ip address of the downstream switch with "sh cdp neigh detail" command and connect to that downstream switch and then again issue the command "sh mac-address-table address " and check the port number and follow the above steps till the time you get the switch on whcih end host is connected.
    HTH, if yes please rate the post.
    Ankur

  • How to change the port in the URL of a BSP Iview

    Hello,
    we have several appraisal templates released in our R/3 system and we can access them by the portal.
    We are changing our systems and we are implementing a load balanced in order to improve the connections with the portal. So we need to know how can we change the port of the server that appears in the URL when we go to MSS ->teamviewer and select one appraisal to see the information of the template.
    We need to change it and indicate the port of the load balanced http://emsapl404pre.endesa.es:8000/sap/bc/bsp/sap/hap_document...) not the port of one of the WAS server as we have now http://emsapl404pre.endesa.es:8302/sap/bc/bsp/sap/hap_document...)
    Thanks in advanced.
    Best regards.
    Seshen

    Hi,
    Just view any BSP Application in SE80 and the click on Utilities(M)->Settings.
    This will fgive you option to change URL and port number of the URL..
    It will be under the Business server Pages tab in the settings window.
    Hope this helps.
    <b><i>Do reward each useful answer..!</i></b>
    Thanks,
    Tatvagna.

  • How can I open the ports with the Airport Extreme?

    I have an Airport Extreme Base Station connected to a cable modem and I want to open the ports for the two Playstation 3's I connected to the Airport Extreme via Cat 6 ethernet cable. The first Playstation 3 will be used to play Call of Duty Modern Warfare 2 and the other Playstation 3 will be used to watch streaming movie from Netflix. Does anyone know if this can be done?

    It is documented on Page 54 of Apple's "Designing
    AirPort Networks Using AirPort Utility Mac OS X v10.5 + Windows" (direct PDF download link).
    The public port and private port would be set the same value.

  • A barcode scanner that was connected directly to the Mac's USB port stopped working as the "USB had too much power drawn", even though it has worked for over a year in that port.  WHen we plugged it into the port on the keyboard, the device works. Why?

    A barcode scanner that was connected directly to the Mac's USB port stopped working as the "USB had too much power drawn", even though it has worked for over a year in that port.  When we plugged it into the port on the keyboard, the device works. Why?  Obviously the device is operational.  Could the USB port have burned out from having too much power drawn?  If so, is it reparable?

    It can't draw "too much" power, it can only draw as much as the USB port is able to provide and no more. IIRC, the keyboard port has a lower power output than the iMac's port.
    That being said, yea, it's possible that the port has failed and it can be replaced or if another port works you can use that one. Although if it is still under warranty or covered by Apple Care, then I would take it to an Apple Store or service provider to get the port repaired.

  • Specify the port in the client in a TCP connection

    Hi,
    I am programming an application using TCP sockets. I have programmed a server whith a SocketServer(port) and is waiting for client's requests (the server is a public host in the Internet). The client connect to the server by means of the method:
    Socket s = new Socket(host, port);
    That works correctly, but now I want to specify the port in the client. The client's PC in a machine on the Internet and it has a public IP. I tried to use the method:
    Socket(String host, int port, InetAddress localAddr, int localPort)
    where localAddr is the local IP of the client' PC (because I cannot know the public IP).
    However, it doesn't work this method and the client cannot connect to the server. The problem is that I want to specify the port in the client in the socket TCP connection when I try to connect to the host.
    How can I resolve this problem?
    Thaks

    I want to specify the port in the clientWhy?

  • What is the port on the very front of my Macbook Pro and also right next to DVD slot?

    For some reason the description of external I/O ports on this website only details the ports on the left side of the Macbook?

    1. If you have two small round ports at location 1, one is audio out, indicated by the headphone Icon.
    The other is audio in/out, indicated by the two speakers superimposed on a circle icon.
    2. If you have two ports at location 2, one is the Sleep/Wake indicator
    The other is the IR receiver port.
    3. In addition to the obvious huge DVD reader slot
    The Security slot, compatible with the Kensington locking system.
    These are all pictured and described in your Manual.

  • Where can I find the port of the adminServer,soa_server1,bam_server1?

    Dears
    I installed the SOA suite in default. I just remembered that I configued 7001 for the admin server. When i started the soa_server1, i passed two parameters: soa_server1 http://localhost:7001 and bam_server1 http://localhost:7001 for the bam_server1. But i didn't configue the port for those two servers. Is the default port for soa_server1 8001? In which configuration file i can find that?
    Please help me out, thanks very much for your help.
    帖子经 AllenLi编辑过
    帖子经 AllenLi编辑过

    Hi, friends, now i find the way to config the port, you can view the information at:
    http://download.oracle.com/docs/cd/E12839_01/doc.1111/e13925/configure.htm

  • How to find which Port has the highest traffic (both in/out) in switch

    Hello,
    I have a 3550 switch with 48 port having 12.1 code.
    Need to know which port is causing the highest traffic , i mean to track which user is downloading/uploading the most.
    I was able to track this in CATOS with the command sh top and that will tell the port, but in IOS based switches i was not able to find
    Can some one help.

    You can try with the following command:
    show interfaces summary
    Output shows the traffic for all ports instead of the top one only, but you can find the top from this output. Or you can install an MRTG or Cacti for monitor the used bandwith.
    bye
    FCS
    Please rate me if I helped.

  • Error the port of the service registry

    Dear everyone,
    please help me, i got the error message as below:
    Information for this WSDL portType has not been obtained successfully. Some errors have occured.
    (E.g. some of the parent entities might be corrupted or unpublished.)
    Error message:
    WSDLException: faultCode=INVALID_WSDL: java.io.IOException: Connection to localhost:7201 refused
    Actually, my registry is run on port: 7301: http://localhost:7301/registry/uddi/web
    but I don't know why when I log to oracle enterprise manager, registry control and click on find_tmodel, then click to obtain the list of service in this tmodel; i get the error message above.
    Can anyone tell me how can I change the port value?
    Many thanks in advance,
    sophea

    Now it is ok, i can use registry console to change the port.
    registry console -> manage ->registry management - > replace url

  • Why have the ports on the left of my macbook pro and the wifi and bluetooth stopped working?

    Hey All,
    About a week ago the two usb ports on the left of my 17" macbook pro, soundcard, wifi, and bluetooth stopped working. The power port, ethernet, remaining usb on the right are still functional. I've tried repairing the permissions and other software based solutions but to no avail. I'm worried that this might be a motherboard issue but am apprehensive about taking the ol' girl into a genius because it will probably cost more to repair than the remaining value of the system. Anyone have any ideas, can confirm my suspicion?
    Thanks!

    Well I'm using Google Chrome browser on Lion and when I type in that URL nothing happens. Except for the "This webpage is not available" banner.
    So it looks like your website is down and what you are getting on your devices are cache.
    Oh just deleted the www and now I see the page. Yup all the info looks intact. home about us products Q&A and so on.

  • OEM Can't get to database after changing the port on the database

    Hello OEM Gurus!
    I had to change the port on a database(11g) from 1521 to 1526. I adjusted the listeners to include the SID (finapp1t) in the listener listening on port 1526. I removed the SID from OEM (10g btw) and rediscovered it. It successfully rediscovered.
    Now I receive the following when I attempt to go into "tablespaces" or "tables" on the FINAPP1T database page:
    Listener refused the connection with the following error: ORA-12505, TNS:listener does not currently know of SID given in connect descriptor The Connection descriptor used by the client was: (description=(address=(host=urora2t.unioncentral.com)(protocol=tcp)(port=1521))(connect_data=(sid=finapp1t)(server=dedicated)))
    I then clean started the Agent on the server but I get the same results.
    OEM seems to think that that database FINAPP1T is still using port 1521. I can connect to the database on port 1526 from my Desktop so I know the listener sees this database.
    How do I tell OEM to update the port ?
    Thanks for you help!
    Edited by: sawright on Mar 29, 2012 10:33 AM

    Success
    The connection test was successful.
    =============
    Information from Review Screen:
    Name Value
    Oracle home path /u01/app/oracle/product/11.2.0/dbhome_1
    Monitor Username dbsnmp
    Monitor Password ******
    Role NORMAL
    Listener Machine Name urora2t.unioncentral.com
    Port 1526
    Database SID finapp1t
    Preferred Connect String
    Edited by: sawright on Mar 29, 2012 11:24 AM

  • Configuring the port of the syslog destination address

    Hello,
    Is there a way to configure not just the internet address, but also the port number, to which the AEBS sends logging information?
    The "Syslog Destination Address" field doesn't accept the ":port"-style address syntax. But I was wondering if there is a hidden workaround, like doing Option-click to expose a larger number frequencies selections.
    Why do I care? For diagnostic purposes, I would like to enable the logging feature on my AEBS 802.11n and receive the logs on an OS X box. The app LogMaster can act as a syslogd daemon. The problem is it can't listen at the default port 514, since OS X's built-in syslogd daemon uses that port. This is despite the fact the built-in syslogd doesn't listen for log messages from the network and cannot be configured to do so without hacking inside the /System directory.
    Any thoughts?

    The configurations for extend the CoS value to teh ip phone port looks rigth. The fact that you have to unplug the phone for it to work seems to suggest that this is an issue with the phone. Is it running the latest phone load? What kind of switch is this?

  • Can i extend the range of an airport extreme with another airport extreme and use the ports on the airport extreme i used to extend the network?

    That seems like a complicated question. 
    I have a Time Capsule (which the HD *****, but that is matter for another discussion) and want to extend the range with an Airport Extreme because I have 2 devices in one room that do not do wireless but have Ethernet ports.
    The room has iffy WiFy connectivity too.
    I want to know if the 3 ports on the Airport Extreme still work after configuring it as an extender rather than a router.

    The thing is that I want to know if I can put the Airport Extreme at the edge of the room where the existing Base does not reach.
    This will not work.
    Remember, an "extending" AirPort can only extend the quality of wireless signal that it receives. For that reason, it must be located where it can receive a strong wireless signal in order to work effectively.
    For example, let's say that your "main" router was on one end of the house and you want to extend the signal to reach the other end of the house.  In this case, you would locate the "extending" AirPort about half way between the main router and the other side of the house.

Maybe you are looking for