Using oracle from linux

Hi I am new to linux.
Do you know any web-site that explains step by step using oracle on linux.
For instance in windows, when I type sqlplus to command prompt, sql screen appears.
But in linux whan I open terminal and type sqlplus nothing happens!
Plz help

Hi Ricardinho, that might be because you did not set up enviroment variables, but it can be for other reasons. Not sure what distro you re on but at the following links you may want to check some tutorials for configuring and installing Oracle on several distros like Centos, Ubuntu, Fedora and others:
http://www.dizwell.com/prod/node/50
http://www.dizwell.com/prod/node/53
http://www.dizwell.com/prod/node/52
http://www.dizwell.com/prod/node/681
check if you missed to implement any of the settings.
enrico

Similar Messages

  • Need list of indian s/w companies using Oracle on Linux

    Hi,
    I am in need of the list of companies in India who use Oracle on Linux, if any one has such an list then please do send it to me at [email protected]
    I am exploring the companies names ,so that I can apply for the post of 'Oracle DBA' on LINUX platform,thus if i could obtain such a list then my job hunt will become much easier.
    So,if any one has got such info then please do pass it on to me .
    Krishna k.
    09819152725

    It's been discussed before,
    Re: Want to use SGA=3gb+  in  RHEL 4.3 (32bit)
    There's some work around with performance penalty

  • Accessing Oracle from Linux

    Hi,
    Can anybody help out in this.....!i shall be very thanx ful..
    My problem is, i have an Oracle database running on WinNT 4.0..it's been
    there for a while,now i need to access this database from a linux
    machine,using an application developed for linux platform developed in C.
    My doubt is :
    (i) How do i connect to the oracle database on WinNT from linux using C ?.
    (ii)Are there any C libraries for oracle connectivity on linux ?
    Thanx in advance
    Shine V
    null

    Say that you will use perl's DBI interface and DBD::Oracle, then
    you will still need to install Oracle on your linux box for the
    seek of compiling and installing DBD::Oracle on linux.
    Once you have DBI and DBD::Oracle installed, you may access any
    other oracle installations whethere local or remote.
    I see this as the simplest way, but I may well be wrong.
    regards,
    shaoping
    R     mi Bastide (guest) wrote:
    : Hello,
    : I have a Netware Oracle server already running, so I do not
    : really need to install a full blown Oracle server on my Linux
    : box. All I want to do is access my Oracle DB from Linux (with
    a
    : Perl interface) to do some web stuff.
    : What are the minimum requirements on the Linux box ? what do I
    : need to install ?
    : Thanks to all
    null

  • Download Oracle from Linux command mode

    Hi,
    Someone could you please explain how to download oracle client (11g R2) from the linux command prompt??. I am using RHEL 5.4 64bit Operating System.
    Is it possible to download using the "wget" command??
    Regards,
    Mugunthan R

    897817 wrote:
    Hi,
    Someone could you please explain how to download oracle client (11g R2) from the linux command prompt??. I am using RHEL 5.4 64bit Operating System.
    Is it possible to download using the "wget" command??we KNOW your web browser works OK since you posted here.
    why not just point & click your way to successful download?

  • Using Oracle from MS SQL 2005

    I am having a strange problem while running an SQL statement in MS SQL 2005 that uses a linked Oracle server. I am getting the following error:
    OLE DB provider "OraOLEDB.Oracle" for linked server "OG" returned message "ORA-01403: no data found".
    Msg 7346, Level 16, State 2, Line 1
    Cannot get the data of the row from the OLE DB provider "OraOLEDB.Oracle" for linked server "OG"
    I am getting the error on the following SQL statement (OG is the Oracle server):
    SELECT Inv.AreaNo, Inv.CatType, Inv.CatNo, Inv.ItemNo, Inv.NumAvail, Inv.NumTotal, Inv.Active,
    IH.AID, IH.NumOut, IH.DateOut, IH.WorkerOut, IH.NumIn, IH.DateIn, IH.WorkerIn,
    CC.CatID, CC.CatName, CC.BinItem, CC.Active, OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    FROM ItemInventory AS Inv
    LEFT JOIN CatCodes AS CC ON Inv.AreaNo = CC.AreaNo AND Inv.CatType = CC.CatType AND Inv.CatNo = CC.CatNo
    LEFT JOIN ItemHistory AS IH ON Inv.AreaNo = IH.AreaNo AND Inv.CatType = IH.CatType AND Inv.CatNo = IH.CatNo AND
    Inv.ItemNo = IH.ItemNo
    LEFT JOIN OGL..D.LE AS OG ON AID = OG.PK
    WHERE Inv.AreaNo = 0 AND Inv.CatType = 0
    What's strange is that the following SQL statement works fine. The only difference between table ItemHistory (above) and ItemsOut (below) is that ItemHistory adds 3 columns that ItemsOut does not have. Other than that table the SQL statements are the same (as you can see).
    SELECT Inv.AreaNo, Inv.CatType, Inv.CatNo, Inv.ItemNo, Inv.NumAvail, Inv.NumTotal, Inv.Active,
    IO.AID, IO.NumOut, IO.DateOut, IO.WorkerOut, '1' AS NumIn, '1/1/1900' AS DateIn, '1' AS WorkerIn,
    CC.CatID, CC.CatName, CC.BinItem, CC.Active, OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    FROM ItemInventory AS Inv
    LEFT JOIN CatCodes AS CC ON Inv.AreaNo = CC.AreaNo AND Inv.CatType = CC.CatType AND Inv.CatNo = CC.CatNo
    LEFT JOIN ItemsOut AS IO ON Inv.AreaNo = IO.AreaNo AND
    Inv.CatType = IO.CatType AND Inv.CatNo = IO.CatNo AND
    Inv.ItemNo = IO.ItemNo
    LEFT JOIN OGL..D.LE AS OG ON AID = OG.PK
    WHERE Inv.AreaNo = 0 AND Inv.CatType = 0
    As a test I tried just running an SQL statement against ItemsHistory and the Oracle table, thinking it might be something with ItemsHistory, but the following command also runs just fine:
    SELECT ItemHistory.*, OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    FROM ItemHISTORY
    LEFT JOIN OGL..D.LE AS OG ON AID = OG.PK
    I'm not sure why the one SQL statement is erroring out with ORA-01403. I see no problems with it, as it is the same as the one that works except using a different table, and another SQL statement using the table in the erroring SQL works also. I'm stumped!
    I am using the 'OraOLEDB.Oracle' provider in SQL 2005.
    Thanks for any help you can give on this...

    I've been testing it, and I've found that if I comment out 4 fields from the field list (all from the same table), it runs. As soon as I add any one of the 4 fields back into the select list, I get the Oracle error. I also found that I had to change the Oracle table from a LEFT JOIN to just a JOIN, or else I also get the Oracle error.
    Here is the SQL (same as the previous post) with the 4 fields commented out, and the modified JOIN. Maybe that will give someone an idea, because it has me puzzled...
    SELECT Inv.AreaNo, Inv.CatType, Inv.CatNo, Inv.ItemNo, Inv.NumAvail, Inv.NumTotal, Inv.Active,
    IO.AID, IO.NumOut, IO.DateOut, IO.WorkerOut, IO.NumIn, IO.DateIn, IO.WorkerIn,
    OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    --, CC.CatID, CC.CatName, CC.BinItem, CC.Active
    FROM ItemInventory AS Inv
    LEFT JOIN CatCodes AS CC ON Inv.AreaNo = CC.AreaNo AND Inv.CatType = CC.CatType AND Inv.CatNo = CC.CatNo
    LEFT JOIN ItemHistory AS IO ON Inv.AreaNo = IO.AreaNo AND Inv.CatType = IO.CatType AND Inv.CatNo = IO.CatNo AND
    Inv.ItemNo = IO.ItemNo
    JOIN OGL..D.LE AS OG ON AID = OG.PK
    WHERE Inv.AreaNo = 0 AND Inv.CatType = 0

  • Abnormal errors after bounce in 12.1.3 using Oracle Enterprise Linux 5.1

    1. After bounce of one of our dev instance and opening forms did'nt see menu for system administrator (like 1. OAM 2. Coucurrent 3. Profile .........)
    and getting error left hand below --- ###FRM - 40735: WHEN-NEW-FORM-INSTANCE triger raised unhandeled exceeption ORA- 06502###
    But as soon as after clicking SWITCH RESPONSIBILITY we are able to see the menu options
    2. In the same terminal if we are submitting any request (e.g active users) getting message like "##FRM 40400: Transaction complete : 1 records applied and saved##')
    But when we click on find tab we are getting below error
    ##FRM-40350: Query caused no records to be retrieved###
    Please help in this.
    Regards,

    1. After bounce of one of our dev instance and opening forms did'nt see menu for system administrator (like 1. OAM 2. Coucurrent 3. Profile .........)
    and getting error left hand below --- ###FRM - 40735: WHEN-NEW-FORM-INSTANCE triger raised unhandeled exceeption ORA- 06502###
    But as soon as after clicking SWITCH RESPONSIBILITY we are able to see the menu optionsWas this working before? If yes, any changes been done recently?
    Can you find any errors in the database log file?
    Any invalid objects?
    Error When Opening Any Forms : ORA-01403: No Data Found, FRM-40735 [ID 1358117.1]
    2. In the same terminal if we are submitting any request (e.g active users) getting message like "##FRM 40400: Transaction complete : 1 records applied and saved##')
    But when we click on find tab we are getting below error
    ##FRM-40350: Query caused no records to be retrieved###Can you find the concurrent request log/output files generated on the server $APPLCSF/$APPLLOG and $APPLCSF/$APPLOUT directories?
    Can you query FND_CONCURRENT_REQUESTS table and view the record for this concurrent request?
    Thanks,
    Hussein

  • Advanced Replication using Oracle 8i and Linux

    Hi,
    My name is Sadhana. I am a software engineer. I have a doubt regarding Oracle and Linux. Well, I am involved in developing a customer care and billing solution with back end as Oracle8i (8.1.5)on Linux RH 6.1. I need your guidance is regarding the reliability of using Oracle on Linux as data file servers for critical applications like customer care and billing systems in telecom. The rating and billing engine will also run on linux servers. Only the client machined will have windows 98/NT. It will be helpful if you can throw some light on the replication features of Oracle particularly in Linux. For e.g. is it possible to keep a database server - Oracle on linux and a replication server on linux. Will it behave similarly like other replication servers (windows NT or Solaris etc.)? Is it reliable?
    Looking forward for your reply
    TIA,
    With Best Regards,
    Sadhana S Kamath

    Christian Seebode (guest) wrote:
    : Hi everybody,
    : will Oracle 8i be available for Linux ?
    : When ?
    : Or will there be a difference in availability for
    : the different options of 8i ?
    : Thanks for any information
    : Christian
    1.) Yes it will.
    2.) Nobody knows. (Oracle points to May/99...)
    3.) Yes, absolutely, since Enterprise Editions are poorly
    supported under Oracle/Linux
    Bye, Robert
    null

  • Oracle Server -Linux Client

    Hi friends,
    i am Oracle developer, im very new to Linux server concepts,
    im in position use 'oracle' in linux client machine and i have to run PLSQL procedure scripts in that PUTTY.
    what all the Pre-requesties and how do i make tnsnames connection in Linux Environment.

    Veekay wrote:
    Hi friends,
    i am Oracle developer, im very new to Linux server concepts,
    im in position use 'oracle' in linux client machine and i have to run PLSQL procedure scripts in that PUTTY.
    what all the Pre-requesties and how do i make tnsnames connection in Linux Environment.It's really not very clear exactly what you are needing to do.
    I'm assuming you have an oracle database installed on a linux server and need to know how to access it from your desktop machine.
    If so you have choices
    - you could install the oracle client software on your desktop. This would allow you to use sqlplus or any number of other apps to access the database.
    - you could use putty or any number of other free or paid ssh clients to establish a terminal session on the server. From there you could also run sqlplus. The difference is that it would be running on the server whereas in the first scenario it would be running on your desktop. The database itself doesn't care - either way sqlplus is just another client.
    using an ssh client to open a session on the server requires you to have an OS account on that server. Using database client tools at your desktop does not require an OS account on the server. As a DBA, I prefer NOT to give you an account on the server.

  • Oracle Enterprise Linux for Peoplesoft.

    Hi,
    Firstly i am new to the Peoplesoft apps and i will be doing an internal implementation for Peoplesoft HRMS.As advised by my manager, he asked me to use oracle Enterprise Linux OS for the Peoplesoft server. Well what i need to you know from the experience people here, which Linux 32 or 64 that is more suitable or better for peoplesoft to run on. Please help me on this. Thanks.

    Sujai wrote:
    {...} So i guess the best solution is to go for the 32-bits.Am i making the right decision??All the discussion above was true till the 3rd of March'09, but not anymore.
    Amusing, Peoplesoft changed the support for 64-bits OEL/RHEL the day after the last reply in this thread (mine of the 2nd of March).
    If it is not too late for you, go for 64-bits, it is required OEL/RHEL 5.2 min and Peopletools 8.49.14 min.
    Please, find out more in the announcement on metalink3 :
    [Oracle PeopleSoft extends certification of OEL and RHEL 5 x86-64|https://metalink3.oracle.com/od/faces/secure/km/DocumentDisplay.jspx?id=787643.1]
    Nicolas.

  • [b]Using Oracle in the network[/b]

    Hi,
    Is anyone can help me how to use oracle sqlplus in a LAN.
    We have 5 pcs in our home network and one of my friend want to use oracle from his pc where i got installed oracle in my computer.Is there anyway he can access to my installed sqlplus from his computer.Please help me for that.
    Thanks
    Hasnain

    Ma -
    You could do any of the following.
    1. Using iSqlplus. Make sure that the service is started on the server. Open a browser window on
    your friend's machine and type the following in the address box.
    http://hostname:port/isqlplus/
    Where hostname is the name of your server. You could also specify the IP address instead of the host name. Coming to the case of port, look for a file 'isqlplus.ini' on your server. In that, you should see an entry like:
    HTTP_PORT=5560
    Copy this port number and replace the port portion of the URL.
    2. Install Sql*Plus client software on your friend's PC. Configure the 'tnsnames.ora' file.
    You should then be all set to use Sql*Plus.

  • Oracle on Linux is free?

    Hi !
    Please let me know can i use oracle on linux free without purchasing any licence for oracle for 25 users.
    Harinder

    It depends what you want to do, and whether you need Enterprise or Standard or Express Edition. It also depends on the number of processors on the server.
    Express Edition is free, but you are limited to 4GB of data.
    Standard Edition One is cheap, but can't be used on a system with more than 2 processors.
    Standard Edition is less cheap and is limited to 4 processors
    Enterprise Edition is expensive (with some more even more expensive options) but has no restrictions.
    For 25 users, DEPENDING ON THE APPLICATION, Express or Standard One may well be enough.
    Check out the pricing here.
    http://oraclestore.oracle.com/

  • Firefox can't open hotmail from Linux ubuntu, but from windows it can

    Today nov 9, trying to access hotmail using firefox from linux ubuntu is not working, it opens the login.live.com, but after entering credentials it just hangs and later it says: Connection reset by remote server.
    3 days ago i just could logged in perfectly, i've spent the whole day trying and testing.
    I've tried to login from a windows machine and it works perfectly, so whats the problem with firefox for linux???. PLZ HELP !!!!!!!!

    When you load a video on YouTube, Firefox starts the Flash plugin with YouTube's SWF player. The SWF player imports and plays the actual MP4 or FLV media. Firefox doesn't associate Flash with these formats directly.
    Can you use a stand-alone player, such as QuickTime or VLC to play the downloaded file outside of the browser?
    If you need to play it in the browser, perhaps someone has posted instructions on how to do it. Because of security restrictions, you probably would need to save a web page file (.html) and a SWF player into the same folder as the media in order to get everything to work together.

  • Is anyone running SAP on Oracle Unbreakable Linux

    Hi all
    Is there any one out there using Oracle Unbreakable Linux as the  operating system for any SAP Installations (ECC/CRM/BI etc) ?
    If yes, can you share your experience in terms of system stability, compatability, support pack issues ?
    Thanks in advance
    Nagesh

    There's even a note for it:
    Note 997990 - Oracle Enterprise Linux / Oracle Unbreakable Linux
    Since it's based on Redhat it should work, however, if there are SAP specific issues with tools and versions it may be difficult to get support, same as with CentOS - which is a "recompiled Redhat Enterprise Linux" - same code as normal $$$ Redhat Advanced Server with a different logo.
    For to-become-productive systems I'd always use a supported operating system, however, I'm sure a SAP system will run on unbreakable Linux too as well as on other distributions; the statement of not supporting it may also be a political one, don't forget that Oracle and SAP are the biggest competitors!
    Markus

  • Oracle on Linux or NT

    I'm new to Oracle, and have been assigned to "get familiar" with
    it. The starting point is to download and install it.
    We are at a crossroads in our decision process as to whether it
    should run on an NT machine, or our RedHat 6 Linux machine. The
    database it will be using will ultimately be quite large and
    have many connections.
    I have read about differences in threading models between Linux
    and NT, as well as file size limitations on Linux.
    Can someone point me to an unbiased list of limitations /
    comparisons between these two platforms as far as a database
    server is concerned? I'm not interested in a "My linux is
    better than your NT" argument, I just need the facts.
    Basically, "Which platform will net us better Oracle performance
    and scalability"
    Regards,
    Mark Williamson
    Verio, Inc.
    Napa, CA
    null

    Hi,
    Oracle on LINUX is largly experimental, in my opinion. You did
    not mention reliable and recoverable and robust (aka, working),
    in your criteria ("performance and scalability"). If you are
    experimenting, then use Oracle on LINUX. If your job depends on
    Oracle working, then use NT (that's not my first choice, but NT
    or LINUX were your two options).
    The facts are simple to find. Search this message board for
    LINUX issues. Then look at Oracle on NT support issues. Compare
    the two and draw a conclusion.
    Good luck, especially if you're starting with Oracle on LINUX.
    Regards,
    Mike Thomas
    Mark Williamson (guest) wrote:
    : I'm new to Oracle, and have been assigned to "get familiar"
    with
    : it. The starting point is to download and install it.
    : We are at a crossroads in our decision process as to whether
    it
    : should run on an NT machine, or our RedHat 6 Linux machine.
    The
    : database it will be using will ultimately be quite large and
    : have many connections.
    : I have read about differences in threading models between
    Linux
    : and NT, as well as file size limitations on Linux.
    : Can someone point me to an unbiased list of limitations /
    : comparisons between these two platforms as far as a database
    : server is concerned? I'm not interested in a "My linux is
    : better than your NT" argument, I just need the facts.
    : Basically, "Which platform will net us better Oracle
    performance
    : and scalability"
    : Regards,
    : Mark Williamson
    : Verio, Inc.
    : Napa, CA
    null

  • Tnsping timed out using dg4odbc from Oracle to MYSQL through ODBC

    Hi,
    I encountered problem when trying to connect from Oracle to MYSQL using dg4odbc, hope you can shed some light
    Oracle database is 11.1.0.7 on SUSE Linux 64-bit.
    Since the application which runs on MYSQL DB only offers ODBC driver on Windows platform, so I installed the 32-bit ODBC driver (from ServiceNow) on a 32-bit windows server (driver download from http://wiki.service-now.com/index.php?title=ODBC_Driver) .
    created system DSN: MYSQLDEV, The DSN connection works fine. I then installed Oracle 11.2.0.1 gateway for ODBC 32-bit on the same windows server, the following configurations were done:
    On 32-bit Windows server:
    in gatewayHome\hs\admin
    initMYSQLDEV.ora:
    # HS init parameters
    HS_FDS_CONNECT_INFO = MYSQLDEV
    HS_FDS_TRACE_LEVEL = DEBUG
    in gatewayHome\network\admin:
    listener.ora
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = abcdes.sda.sdva.com)(PORT = 1521))
    SID_LIST_LISTENER=
    (SID_LIST=
    (SID_DESC=
    (SID_NAME=MYSQLDEV)
    (ORACLE_HOME=C:\product\11.2.0\tg_1)
    (PROGRAM=dg4odbc)
    ADR_BASE_LISTENER = C:\product\11.2.0\tg_1
    stop and started listener on windows server and check listener status
    C:\product\11.2.0\tg_1\bin>lsnrctl status listener
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 29-MAR-2012 21:42:08
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=abcdes.sda.sdva.com)(PORT=1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Produ
    ction
    Start Date 29-MAR-2012 21:11:36
    Uptime 0 days 0 hr. 30 min. 32 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File C:\product\11.2.0\tg_1\network\admin\listener.ora
    Listener Log File c:\product\11.2.0\tg_1\diag\tnslsnr\abcdes\list
    ener\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=abcdes.sda.sdva.com)(PORT=1521)))
    Services Summary...
    Service "MYSQLDEV" has 1 instance(s).
    Instance "MYSQLDEV", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    On Linux server where Oracle DB resides.
    Added the following tns entry "jelly" on the Linux server ORACLE_HOME/network/admin:
    jelly =
    (DESCRIPTION=
    (ADDRESS=(PROTOCOL=TCP)
    (HOST=abcdes.sda.sdva.com)
    (PORT=1521))
    (CONNECT_DATA=(SID=MYSQLDEV))(HS=OK)
    tnsping from Linux server (64-bit) failed with timeout error:
    tnsping jelly
    TNS Ping Utility for Linux: Version 11.1.0.7.0 - Production on 29-MAR-2012 21:12:38
    Copyright (c) 1997, 2008, Oracle. All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION= (ADDRESS=(PROTOCOL=TCP) (HOST=abcdes.sda.sdva.com) (PORT=1521)) (CONNECT_DATA=(SID=MYSQLDEV))(HS=OK))
    TNS-12535: TNS:operation timed out
    tnsping from Windows server works fine: (added same tnsnames entry on windows server for testing purpose only)
    C:\product\11.2.0\tg_1\bin>tnsping jelly
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.1.0 - Production on 29-MAR-2
    012 21:45:20
    Copyright (c) 1997, 2010, Oracle. All rights reserved.
    Used parameter files:
    C:\product\11.2.0\tg_1\network\admin\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=abcdes.sda.sdva.com)(PORT=1521)) (CONNECT_DATA=(SID=MYSQLDEV)) (HS=OK))
    OK (20 msec)
    if listener is not listening to the service, then the tnsping on the windows server should fail as well.
    I don't know why only the tnsping from Linux failed, is it due to the 32-bit ODBC uncompatibility with 64-bit oracle server? or my configuration problem?
    Of course, when I created the DB link from oracle, the connection failed with
    create database link mysqldev connect to xxxx identified by "xxxxx" using 'jelly';
    Database link created.
    select * from tab1;
    ERROR at line 1:
    ORA-28545: error diagnosed by Net8 when connecting to an agent
    Unable to retrieve text of NETWORK/NCR message 65535
    ORA-02063: preceding 2 lines from MYSQLDEV
    Thanks for your help,

    Hi Mike,
    This is part of the tnsping.trc file which contains the error. IP address is in the tnsnames entry with this tnsping.
    nsopen: opening transport...
    nttcon: entry
    nttcon: toc = 1
    nttcnp: entry
    nttcnp: creating a socket.
    nttcnp: exit
    nttcni: entry
    nttcni: Tcp conn timeout = 0 (ms)
    nttcni: trying to connect to socket 5.
    ntt2err: entry
    ntt2err: soc 5 error - operation=1, ntresnt[0]=505, ntresnt[1]=110, ntresnt[2]=0
    ntt2err: exit
    nttcni: exit
    nttcon: exit
    nserror: entry
    nserror: nsres: id=0, op=65, ns=12535, ns2=12560; nt[0]=505, nt[1]=110, nt[2]=0; ora[0]=0, ora[1]=0, ora[2]=0
    nsopen: unable to open transport
    nsiocancel: entry
    nsiofrrg: entry
    nsiofrrg: cur = 53b9f8
    nsbfr: entry
    nsbaddfl: entry
    nsbaddfl: normal exit
    nsbfr: normal exit
    nsiofrrg: exit
    nsiocancel: exit
    nsvntx_dei: entry
    nsvntx_dei: exit
    nsopenfree_nsntx: nlhthdel from mplx_ht_nsgbu, ctx=53a7e0 nsntx=53ade0
    nsiocancel: entry
    nsiofrrg: entry
    nsiofrrg: exit
    nsiocancel: exit
    nsmfr: entry
    nsmfr: 2712 bytes at 0x53ade0
    nsmfr: normal exit
    nsmfr: entry
    nsmfr: 1528 bytes at 0x53a7e0
    nsmfr: normal exit
    nsopen: error exit
    nscall: error exit
    nscall: entry
    nscall: connecting...
    nsclose: entry
    nsclose: normal exit
    nladget: entry
    nladget: exit
    nsmfr: entry
    nsmfr: 264 bytes at 0x528900
    nsmfr: normal exit
    nladtrm: entry
    nladtrm: exit
    nscall: error exit
    nlse_term_audit: entry
    nlse_term_audit: exit
    Thanks,

Maybe you are looking for