TNS-12638 when shutting down the server

Everytime when we shut down the database server (Win2K, Ora 9.2.0.1.0) we
get the following entries in the log files:
ora.log:
Fatal NI connect error 12638, connecting to:
(DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracletest2)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=test2)(CID=(PROGRAM=c:\oracle\ora92\bin\ORACLE.EXE)(HOST=CAESAR)(USER=SYSTEM))))
VERSION INFORMATION:
TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
Oracle Bequeath NT Protocol Adapter for 32-bit Everytime when we shut down the database server (Win 2k) we receive the following entry in the file ora.log:
Windows: Version 9.2.0.1.0 - Production
Time: 19-MÃ??R-2003 18:58:00
Tracing not turned on.
Tns error struct:
nr err code: 0
ns main err code: 12638
TNS-12638: Abrufen der ID-Daten nicht erfolgreich
ns secondary err code: 0
nt main err code: 0
nt secondary err code: 0
nt OS err code: 0
sqlnet.log
Fatal NI connect error 12638 ns secondary err code: 0
N=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
Fatal NI connect error 12638, connecting to:
(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))
VERSION INFORMATION:
nt main err code: 0
Version 9.2.0.1.0 - Production
Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 9.2.0.1.0 - Production
VERSION INFORMATION:
TNS for 32-bit Windows: Version 9.2.0.1.0 - Production
Oracle Bequeath NT Protocol Adapter for 32-bit Windows: Version 9.2.0.1.0 - Production
Time: 19-MÃ??R-2003 18:58:00
Time: 19-MÃ??R-2003 18:58:00
Tracing not turned on Tracing not turned on.
Tns error struct:
nr err code: 0
ns main err code: 12638
TNS-12638: Abrufen der ID-Daten nicht erfolgreich
ns secondary err code: 0
nt main err code: 0
nt secondary err code: 0
nt OS err code: 0
Tns error struct:
nr err code: 0
ns main err code: 12638
TNS-12638: Abrufen der ID-Daten nicht erfolgreich
ns secondary err code: 0
nt main err code: 0
nt secondary err code: 0
nt OS err code: 0
We use SQLNET.AUTHENTICATION_SERVICES= (NTS).
We get the error only when we shut down the server. The database was created with the database configuration assistant. Thanks

check the file sqlnet.ora (ORACLE_HOME\NETWORK\ADMIN)where the database is installed for an entry like SQLNET.AUTHENTICATION_SERVICES= (NTS). If so, disable it.
-PK

Similar Messages

  • Firefox exe application error the instruction at 0x60177757 referenced memory at "0x00000004" the memory could not be read- happens when shutting down the system

    This happens every time when shutting down the system?

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Database doesn't shutdown during shutting down the server

    Dear Friends ,
    I have to use the following dcript to use Auto startup and shutdown my Oracle Database in RHEL 4 .
    step 1:
    #!/bin/bash
    # chkconfig: 345 99 10
    # description: Oracle auto start-stop script.
    # Set ORACLE_HOME to be equivalent to the $ORACLE_HOME
    # from which you wish to execute dbstart and dbshut;
    # Set ORACLE_OWNER to the user id of the owner of the
    # Oracle database in ORACLE_HOME.
    ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
    ORACLE_OWNER=oracle
    if [ ! -f $ORACLE_HOME/bin/dbstart ]
    then
    echo "Oracle startup: cannot start"
    exit
    fi
    case "$1" in
    'start')
    # Start the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/lsnrctl start"
    su - $ORACLE_OWNER -c $ORACLE_HOME/bin/dbstart
    'stop')
    # Stop the Oracle databases:
    # The following command assumes that the oracle login
    # will not prompt the user for any values
    su - $ORACLE_OWNER -c $ORACLE_HOME/bin/dbshut
    su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/lsnrctl stop"
    esac
    step 2:
    cat /etc/inittab
    *:/u01/app/oracle/product/10.2.0/db_1:N
    orcl:/u01/app/oracle/product/10.2.0/db_1:Y
    step 3:
    Keep "dbora" in following path :
    /etc/rc.d/rc3.d/dbora
    /etc/rc.d/rc5.d/dbora
    /etc/rc.d/init.d/dbora
    And also ,
    chmod 750 /etc/init.d/dbora
    chkconfig --level 345 dbora on
    Now ,The script works fine and ORacle Database and Listener service starts automatically during startup the server .But during shutdown the server, I cannot understand or can't recognize that the Oracle Database & listener service are shutdown auto . I think it does not work properly..... So i need to know that Oracle Database & listener service are stop automatically during shutting down the server . Using the above scripts , How can I do it ? Is there any wrong then plz advice me .......Thx ...

    step 3:
    Keep "dbora" in following path :
    /etc/rc.d/rc3.d/dbora
    /etc/rc.d/rc5.d/dbora
    /etc/rc.d/init.d/dbora
    And also ,
    chmod 750 /etc/init.d/dbora
    chkconfig --level 345 dbora on
    Check following links are there
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    Script/link start with "K" , is responsible for shutdown database.
    Check following Oracle Documentation link , it explain all in details
    Starting and Stopping Oracle Software
    - Virag Sharma
    http://viragsharma.blogspot.com
    http://virag.sharma.googlepages.com

  • Shutting Down the server using Xyplex ?- Root passwd not known for Decomiss

    Hi All,
    I am on run level 3 and need to get to run level 0 through xyplex console.The server is on run level 3 .I know there are controls for xyplex to get to run level 0 - ctrl a + ctrl b.But these are not working.I dont have the access to the server rite now.Only access to console but I cannot login to the server.( it was decommisnned).Does anybody know how to get to run level 0 or shutting down the server through xyplex.

    step 3:
    Keep "dbora" in following path :
    /etc/rc.d/rc3.d/dbora
    /etc/rc.d/rc5.d/dbora
    /etc/rc.d/init.d/dbora
    And also ,
    chmod 750 /etc/init.d/dbora
    chkconfig --level 345 dbora on
    Check following links are there
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc3.d/S99dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/K01dbora
    # ln -s /etc/init.d/dbora /etc/rc.d/rc5.d/S99dbora
    Script/link start with "K" , is responsible for shutdown database.
    Check following Oracle Documentation link , it explain all in details
    Starting and Stopping Oracle Software
    - Virag Sharma
    http://viragsharma.blogspot.com
    http://virag.sharma.googlepages.com

  • Things to consider before shutting down the Server

    Hi,
    What are all the things to consider before shutting down the Essbase Server?
    Just we need to close the applications and Agent process or do we need to take care any other things also.
    Thanks in Advance

    In order to make sure of a soft shut down, I normally would
    - Disconnect all users
    - Prevent connections
    - Unlock all objects
    - Shut down all databases and applications
    - Shut down the Server Agent
    Brian Chow

  • Crash report application what is that ? When shut down the computer this Message appeared The application crash repórter Dont Let shut down the computer

    Crash report aplication what is that ? When shut the computer this Message appeared The application crash repórter Dont Let shut down the computer

    Command-Option-Escape does the same as
    Apple Menu > Force Quit...
    It opens a floating box that lists current major Applications and their status (e.g., Not responding) and allows you to force quit any single Application or re-launch the Finder.

  • How can i prevent checkboxes from resetting when shutting down the app?

    Hi, i'm trying to make an app for a coin database.
    Below a photo of the coin i put a checkbox or a switch to indicate what i have.
    When closing and reopening the app, all the checkboxes or switches are unchecked.
    Is there any way to let the app remember what was checked or unchecked.
    Thnx.

    Are you using a gallery to display your coins?  If so, this is what you'll need to do:
    Part 1
    1. Use a Collect function when the Checkbox is checked (and a RemoveIf function when the checkbox is unchecked.)
    2. SaveData function to save the data.  This can be done when the checkbox is checked.  Use a semi-colon to string functions together.
    Example (in the OnChecked):
    Collect (myCoins, {ID: CountRows(myCoins) +1, CoinName: txtMyCoin!Text, IsChecked: "true"}); SaveData(myCoins, "MyCoins")
    --> This code may not be 100% correct as I'm not on a computer with Siena while I'm writing this but it should be enough to get you started I hope.
    Part 2
    1. Use the LoadData function when you need the information to be loaded - usually in the OnVisible of a page.
    2. In the Default of the checkbox (in your Gallery) add this code: If(ThisItem!IsChecked = "true", true)
    --> Again, I'm not in front of my computer with Siena so I may be off here.  I'll edit this post if I'm way off.
    I hope this gives you a good start.  I can provide better examples if this isn't working for you.
    FYI - The code will look different if you're not using a gallery.  Hopefully you are as it sounds like the way to go in what you have in your example.
    Thor

  • Do I have to shutdown 9i before shutting down the server?

    Hi, probably a stupid question but I just curious because there are some error when I chkdsk /F my HD. I am using restart.vbs to do an unattended shutdown on w2k server. I wonder whether Oracle cause this or Oracle take care of this automatically?
    Thanks for your info.

    You definitely want to make sure you stop your Oracle database before you shutdown your server.
    One way of doing this in an automated script like you have is to stop the W2K service for Oracle as in "net stop " and then the name of the Oracle service running on your server. You should also add the "/y" flag after the name of the service to automatically stop dependent services.

  • Firefox exe application error the instruction at 0x60177757 referen ced memory at "0x00000004" the memory could not be read- happens when shutting down the system

    this happens everytime I shut the system down

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Beeps when Shutting down

    Hi,
    Can somebody help me with this questions:
    Problem no 1. (But I don´t know if it´s a problem.) Is there enybody who have a sound of short beeps when shutting down the computer.
    Problem no 2. Small (white light) flickering lines across the screen when the harddisk is working
    I have following system:
    K7N2G-L
    Athlon XP 1900+
    Kingston ValueRam 2 * 256 mb (slot1 and slot 3)
    PSU 350W (qtec)
    bios versin 3.4
    Nforce drivers 2.41
    FSB ratio Dram 1:1
    Hopefully
    carljo

    carljo,
    Three things.
    First, Kingston ValueRam is hit or miss with nForce. That could be your problem.
    Second, your Power Supply could be the problem if it is not giving out enough juice.
    Third, are the beeps more like a siren as if it is warning you your CPU is too hot and the comp shuts down.
    Take Care,
    Richard

  • White screen flash when shutting down after a suspend

    If I have suspended my laptop at any time during its uptime, when shutting down the screen flashes white, but it turns off as usual. This only happens if I have suspened.
    There are no issues as far as I can tell, I see nothing much in journalctl when comparing a suspeded shutdown vs no suspend.
    Im using nouveau, and I'm up-to-date as of now.
    Google hasnt returned much,
    Anyone else seeing this?

    Create a new account, name it "test" and see how your apps work in that User acct? (That will tell if your problem is systemwide or limited to your User acct.) This account is just for test, do nothing further with it.
    Open System Preferences >> Accounts >> "+" make it an admin account.
    If the problem is present in the test account also, then it is systemwide. In this case try repairing this with the 10.5.2 Combo Update This is a fuller install, as opposed to an incremental "delta" update so it should overwrite any files that are damaged or missing. It does not matter if you have applied it before.
    Remember to Verify Disk before update and repair permissions after update from /Applications/Utilities/Disk Utility.
    If the problem does not appear in the test account try starting in "Safe Mode" (It will take a bit more time to startup because it runs a directory check first).
    If that works go to System Preferences >> Accounts >> Login Items and remove them. Boot normally and test. If there are still problems, go to ~(yourHome)/Library/Contextual Menu Items and move whatever is there to the desktop. Then do the same with /Library/Contextual Menu Items. Lastly, try moving /Users/Home)/Library/Fonts to your desktop and restarting.
    Log out/in or restart, if that sorts it start putting items back one at a time until you find the culprit.
    Let us know.
    -mj

  • When shutting down, FF does not save tabs or ask if I want to save them.

    Several times recently, when shutting down, the small window asking if I want Firefox to save tabs does not appear, and the tabs are lost.

    One of the changes in Firefox 4: '''''by default''''' Firefox 4 does not display the "Save Tabs and Exit" warning message when closing multiple tabs, but it can be turned back on by changing some preferences.
    *<u>Saving tabs was not removed from Firefox 4</u>, but it works a bit differently.
    **By default, Firefox 4 will not ask to save tabs, but instead it will always save your tabs on exit. You can restore them next time by choosing "Restore Previous Session" from the History menu, or pressing the restore button on Firefox's default home page.
    **''<u>Note: This was a decision by the developers. On this forum, we are all '''uncompensated volunteers''' here to help other users. The developes/employees of Mozilla/Firefox rarely, if ever visit here.</u>''
    To display the "Save Tabs and Exit" message when closing multiple tabs, you can do the following:
    #Type '''''about:config''''' in the URL/Location/Address bar and press the Enter key
    #Accept the warning message (promise to be careful)
    #The preferences page/list will open
    #Filter = '''''browser.tabs.warnOnClose'''''
    #If its value is set to false, double-click on it (in the lower panel) to toggle its value to true
    #Repeat steps 4 and 5 for these following 3 preferences also:
    #*'''''browser.warnOnQuit'''''
    #*'''''browser.warnOnRestart'''''
    #*'''''browser.showQuitWarning'''''
    #**Note: last pref is new in Firefox 4b12, may need to add (boolean)
    #**Info/Instruction for using '''''about:config''''': http://kb.mozillazine.org/About:config
    #See:
    #*https://support.mozilla.com/en-US/questions/785169
    #*http://forums.mozillazine.org/viewtopic.php?f=23&t=2105039&p=10434467&sid=fd2a35945bb2c633687f7b50d8c53989
    #*http://blog.zpao.com/post/3174360617/about-that-quit-dialog

  • REP-0178 When Shutting Down a Single Report Server

    Reports 9.0.4.2 Dev Suite
    Win XP
    I constanly receive a REP-0178 when shutting down my Report Server. I have read other posts that indicate this happens on systems with multiple Report Servers running. I have only a single Rep Server in use.
    Any ideas?

    this might indicate that there is something wrong with your OSAGENT process. usually that happens with mutliple servers, but since all those servers bind to the same OSAGENT, shutting down the first server will shut down the OSAGENT and all subsequent shutdowns will fail
    are you sure you are not runnig an in-process server (set up by default) that you are not aware of. check the rwservlet.properties and see if IN_PROCESS is set to YES or NO.
    thanks,
    ph.

  • How to avoid shut down BPELPM Server when creating a user?

    Hi,
    How to avoid shut down BPELPM Server when creating a JAZN user and after doing changes to user-properties.xml?
    Thanks,
    Jorge

    this configuration is only supported on a midtier - there is a work around for a standalone install, nevertheless I would not recommend this for production ..
    if this is NOT a production enviroment - I can try to get you the information .
    /clemens

  • What happens in background when we shut down Glassfish Server.

    Hi,
    I would like to know the process happens in background when we shut down the Glass fish server either from Command Line or from All Programs option.
    Thanks,
    Ajay Sharma

    Hi;
    The document u provided doesnt exists on metalink.You right i cant even open note (I know note from one other note's references)
    Please check below Notes:
    How To Relink and Bounce the Receiving Executables? [ID 552702.1]
    NOTE:131321.1 - How to Relink Oracle Database Software on UNIX
    NOTE:141118.1 - How To Relink Forms Library Files Using Adadmin
    Hope it helps
    Regard
    Helios

Maybe you are looking for

  • IBooks for Mac Doesn't Reopen Books

    iBooks isn't reopening windows after I close it. Here's what I do in sequence: 1. Open iBooks. 2. Double-click a book. 3. Click the fullscreen button in the upper-right corner. 4. Quit iBooks with CMD + Q. 5. Open iBooks. No windows pop up, not even

  • No sound in imovie events but there is in projects

    I recently imported a lot of video to an external hard drive.  When I try and play the video in events, there is no sound.  When I drag it up to a project, there is sound.  What's up with that?!

  • Print Configuration Dialog Box

    Hello all,     I want to enable the print configuration dialog box pop up when a button is clicked in vi. This is standard windows printer configuration dialog box which pops up when any file (xls,txt etc.) is tried printing.Any suggestions please ?

  • How to reset all the icon spacing etc in Finder back to default?

    I have tried to set back to the default values but it's still isn't quite the same as before -- the horizontal spacing is correct but not the vertical one. Is there a way to reset the icon spacing as default? Thank you.

  • Help creating an action

    I have a number of images that I want to use an action on but one of the last action steps is save for web.  I don't want to overwrite a file but I'd like the action to pause at that point asking me for the name of the file and then continue on.  I c