To know which application is actually using the listner port 1521

hello every one,
i have a small problem out here.
i have a test server(solaris)..have already installed development suite 10g on it as well as installed weblogic on it.
right now according to requirement i have to install application server 10g on it for load balancing.
but while installing i got an error that states as follows "install has detected that port 1521 on your host is currentlybeing used by other product....."
i have not installed any database in this server..
Tried to find out whether 1521 port is actually listening using the below command
netstat -an|grep 1521
*.1521 *.* 0 0 49152 0 LISTEN
now i want answer for few questions
a)does weblogic has metadata repository like oracle 10g AS and does it listen 2 1521 port..(according to my knowledge it listens to 5556 port)are there any file like portlink.ini in weblogic as 10gAs??(these questions might be sounding lame but i m new to web logic)
b)i just wanted to know which application in my current scenario is using the port 1521 so that i can stop the services n den install oracle AS and once the installation is done i can restart the other application by changin its port no,so dat it can listen to other port..
c)Consider this scenario "If i dont stop any oracle application ie d2k and weblogic" and start installation..during installation itself can i make my application listen to some other port like 1522"..i have heard about staticport.ini but have not practically used so can u'all help me in this..
if there are any other solution about how to go about installation with out stoppin any oracle services then please let me know..
thanking you,
Regards
fabian dsouza
Edited by: Fabian on Dec 2, 2010 6:20 AM

Hello Fabian,
You can use lsof to find out which process has allocated port 1521 :
lsof -i TCP:1521
Most likely it is a TNS listener process.
Thanks,
EJ

Similar Messages

  • How to know which transformation code is using the data target..

    Hi,
    Say I have a DSO ZXXX. Now there are transformations for other data targets, where the ABAP code is doing a select on this DSO ZXXX and reading and using that data for the result package.
    Typically if we wany to know if a DSO is used where where we try to do a 'display data flow' on that and find out. But that does not capture if that DSO is being read in the code.
    So is there any way I can find it ?
    Or do I have to manually go to each routines, start, end, mapping related routines etc and try to figure out ?
    thnks

    Dear sdnuser1,
    The following link has a program to solve your problem.
    [http://wiki.sdn.sap.com/wiki/display/Snippets/ABAPprogramtofindBIlookupsandcodePatterns]
    Hope this helps.
    Rgds,
    Guru

  • Can I use the Ethernet Port for a computer when it is also used as a wireless network with an Airport Extreme as the access point for the wireless network

    Can I use the Ethernet Port  of the A1264 Airport Express to connect to the Ethernet port of a computer that does not have wireless capability when the Airport Express is also used on a wireless network with an Airport Extreme 5th generation as the access point for the network?
    I have AE 5th gen
    looking to buy (from ebay) the AEX A1264
    Various computers, printers and hubs for the network
    Is this possible to do?

    Bob, Thanks for the info. I have read different articles that said yes, but I wanted to make sure before I commit to buy. I have an older A1084 which I could not use the Ethernet port. I know at one point I was able to when I was on 10.4. Now that I am on an Intel processor and 10.8 I am going to have to upgrade some of my Apple wireless hardware.
    Thanks Again.

  • E63 - knowing which application is using WiFi

    Hi folks, I have a question, is there a way to know which application is using WiFi?
    I have the Wifi icon on the right upper corner but have no clue as to which app is using it. 
    Any ideas?
    Also, can you recomend a good task manager? 

    If you "long-press" the Home key you get a list of apps running in the background. Turn them off one by one and you'll get to it.
    mc13

  • I am trying to burn a music cd on iTunes, but I am getting an error that reads that the cd burner is being used by another application.  I know that I am not using the cd burner for anything else.  I have restarted the Mac and nothing.  Any ideas?

    I am trying to burn a music cd on iTunes, but I am getting an error that reads that the cd burner is being used by another application.  I know that I am not using the cd burner for anything else.  I have restarted the Mac and nothing.  Any ideas?

    One other thread said it was fixed by waiting till prompted by iTunes to insert the blank disk, instead of putting it in first. Does that work? Found a number of hits on this Googling.

  • How can i know which index will be used when executing the query ?

    1 ) I have query in which i have 3-4 tables but there multiple index on one column .
    so how can i know which index will be used when executing the query ?
    2) I have a query which ia taking too much time . how can i know which table is taking too much time ?
    3) Please Provide me some document of EXplain plan ?

    Hi Jimmy,
    Consider the below example
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    CREATE TABLE FIRST AS
    SELECT * FROM all_objects;
    UPDATE FIRST
    SET object_name = 'TEST'
    WHERE owner != 'SCOTT';
    CREATE INDEX idx_first ON FIRST(object_name);
    SELECT *
    FROM FIRST
    WHERE object_name = 'TEST';
    It has not used index
    Execution Plan
    Plan hash value: 2265626682
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 58678 | 7334K| 163 (4)| 00:00:02 |
    |* 1 | TABLE ACCESS FULL| FIRST | 58678 | 7334K| 163 (4)| 00:00:02 |
    /* Formatted on 2011/02/04 21:59 (Formatter Plus v4.8.8) */
    SELECT *
    FROM FIRST
    WHERE object_name = 'emp';
    This has used the index
    Execution Plan
    Plan hash value: 1184810458
    | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
    | 0 | SELECT STATEMENT | | 1 | 128 | 1 (0)| 00:00:01 |
    | 1 | TABLE ACCESS BY INDEX ROWID| FIRST | 1 | 128 | 1 (0)| 00:00:01 |
    |* 2 | INDEX RANGE SCAN | IDX_FIRST | 1 | | 1 (0)| 00:00:01 |
    From this we can come to the conclusion that, whether to use one index or not by oracle
    would also depend on the data which is present in the table. This has to be this way as
    we see in the bind peeking, if oracle sticks to only one plan, say only use the full table
    scan, it would be a performance hit when it searches for the second query ie where object_name
    ='emp';
    2.
    If we have a query like below.
    select * from emp
    where upper(ename) = upper(:p_ename);
    Evenif we have the index on ename column, oracle wouldn't be able to use the index, as there is a function in the predicate column. If you need oracle to use the index, we need to create a function based index as below.
    Create index idx_ename on emp(upper(ename));
    Regards,
    Cool

  • How to know which compression scheme is used in a TIFF file

    I have an application which processes multipart tiff files. How can I extract the header of TIFF file to know which compression scheme is used in it.

    Post Author: V361
    CA Forum: Integrated Solutions
    What are you using CR XI ? or ???

  • Difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    difference between photoshop cc and photoshop cc 2014   how do i know which one I am using?

    Hi Petereas,
    Both are different version of Photoshop application.
    In Photoshop CC 2014 there are several new feature introduced than CC.
    Please refer the following page on whats new in Photoshop 2014.
    Photoshop Help | New features summary
    When you go to Help>About Photoshop then Photoshop 2014 shows version 2014.0.0 Release.
    Hope this helps.
    Thanks and Regards,
    Sumit Singh

  • How do I know which Location is being used when set to Automatic

    I have two Locations set up called Home and Music Room. I've selected Automatic in Network Prefernces so my Mac picks the appropriate one.
    Home location - Wi-Fi (1st in the Service order), Ethernet (2nd in the Service order although I'll only be using Wi-Fi with this location)
    Music Room location - Ethernet (1st in the Service order), Wi-Fi (2nd in the Service order)
    So right now, for example, I'm in my music room so I want it to be using the Music Room location and Ethernet but I don't know what it's actually using. In Network preferences, Automatic is shown as the Location, Wi-Fi is at the top, and both Wi-Fi and Ethernet say 'Connected'. If I click on Ethernet to see the details, it does say in the Status area, "Ethernet is currently active and has the IP address 192.168.1.74" so does this mean Ethernet is the one being used?
    Thanks.

    There is no need to have 2 personal keychains. To make your life simpler combine them.
    the login keychain is standard so it is best to keep that. Open the keychain access application, select your named keychain click on any of the keychain entries in the main window then press command +a to select them all then drag them onto your login keychain. You will be prompted to enter the password for your named keychain.
    Then when you have successfully moved them to your login keychain make sure that is set as the default keychain and then you can delete the other keychain. Please not do not delete any of the system keychains.

  • I have two apple id accounts ,when i used to update application it used to prompt a default id and if the application was downloaded using the other id i would cancel and it would prompt the other id but not any more .

    i have two apple id accounts ,when i used to update application it used to prompt a default id (the old one) and if the application was downloaded using the other id i would cancel and it would prompt the other id but not any more .
    it just prompt the old id which im not signed in with im signed in using the new id and when i cancel nothing happens and when i try to update applications separately  i have the same problem .
    im signed in using the new id
    the old one is my wife's so i can't delete it
    the problem happens  when i update all or  each application by its own
    using ios 5.0.1 on a iphone 3gs
    the applications are downloaded using both the new and old id's
    any help will be greatly appreciatedِ

    These are user-to-user forums, you are not talking to Apple here and they don't monitor these forums - I've asked the hosts to remove yout account ids from your post.
    In terms of combining accounts it's not currently possible to do so, nor to copy/transfer content from account to another.

  • I don't know which Apple ID I used to register my Ipod Nano. I had to restore my Computer and now I can't connect my iPod to iTunes again. I have my serial number and ECID

    Hi, I don't know which Apple ID I used to register my Ipod Nano. I had to restore my Computer and now I can't connect my iPod to iTunes again. I have my serial number and ECID. I'm using Windows, BTW, sorry!

    Search your email for the word Logic (and set the search to All) and you should find the receipt (so long as you didn't delete it)
    Other than that.. simply contact Apple directly and ask.. Make sure you have your transaction details ready for them as they will need it...
    http://www.apple.com/contact/

  • [svn:fx-trunk] 16929: Add a [Mixin] class that will register the required class aliases in the event the mxml compiler generation   [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework .

    Revision: 16929
    Revision: 16929
    Author:   [email protected]
    Date:     2010-07-15 07:38:44 -0700 (Thu, 15 Jul 2010)
    Log Message:
    Add a class that will register the required class aliases in the event the mxml compiler generation  [RemoteClass(alias="")] code is not called because an application does not use the Flex UI framework.
    Add a reference to this class in the RPCClasses file so it always gets loaded.
    QE notes: Need a remoting and messaging regression test that doesn't use Flex UI.
    Bugs: Watson bug 2638788
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/RPCClasses.as
    Added Paths:
        flex/sdk/trunk/frameworks/projects/rpc/src/mx/utils/RpcClassAliasInitializer.as

    Great exercise to document the problem like this.  It got me thinking about how an app with modules would be different from an app that does not use modules.  Solution: I moved the dummy reference of PersonPhotoView out to the main application file (as opposed to being inside the module) and it worked.  I've probably been lucky not to have experienced this problem earlier, because for most other entities I have an instance attached to my model which is linked / compiled with the main application.

  • How to know which BAPi is being used for creation of PO in classic scenario

    Hello Experts,
    We are in SRM 7.0 classic scenario.
    How can we know which BAPI is being used in the calssic scenario i.e. How can we know if we are usind BAPI_PO_CREATE or BAPI_PO_CREATE1 for creation of PO?
    Any pointers will be highly appreciated.
    Thank you in advance,
    Thanks & Regards,
    RKS

    Hi RKS
    yesterday BLOG by our SUMMER WANG helps every SRM consultant to debug the PO error
    /people/summer.wang/blog/2010/05/11/trouble-shooting-of-srm-po-transfer-error
    Good work Summer wang !!
    Muthu

  • Which application does one use to down load Facetime ?

    Which application does one use to download Facetime?

    Hi ,
    The Mac App Sore one. 
    9:37 PM      Sunday; July 31, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • I have synced two devices in FF. Is it possible to know which computers are synced using? I am worried about someone figuring out my email address and password.

    I have synced two devices in FF. Is it possible to know which computers are synced using? I am worried about someone figuring out my email address and password.

    HI nilhanw,
    No currently there is not manage devices, only manage device. However changing the password will change the certificates on all the devices within less of an hour.
    I hope this helps.

Maybe you are looking for

  • Sharepoint excel data not refreshed

    Hi All, I have SharePoint foundation 2010, add one excel document after that trying to open that excel document it is showing error message. Error message:- Unable to referesh data for a data connection in the workbook. try again or contact your sha

  • Looking for a random image extension

    Does anybody know of a good FREE extension that will put a random image inside a cell of a table? I'm actually looking to do two different things. The first: I want a random image from about 10 images to change every time the user reloads the page. T

  • JMS destination key used for message ordering not working

    Hi there, i'm using Weblogic 10.3. I've been trying to implement ordering of messages using a destination key assigned to a JMS message queue. The default ordering is FIFO (it uses the JMSMessageID in ascending order for this). According to documenta

  • UNIX lmhash in Java

    Hello, Currently I'm developing an extension for a database management program that was done in Perl. My component is done using Java. Now I have a problem because the passwords for the users that are stored in the database are all encrypted using th

  • Will ACR 6.7 download work with CS5 Student and Teacher Edition?

    I still have the student and teacher's edition of CS5 and LR3.  (Waiting for CS6 to take off the training wheels and get the grown up version.)  I've downloaded the trial of LR4.1 and ACR 6.7 in hopes that I can convert and import RAW files from a 5D