TPM password not found in MBAM database

There are other threads I have read through and did some troubleshooting, but still I´m stuck with this, how to get TPM password in MBAM database. Another question is, do I really need it? Isn´t recovery key enough?
My situation is this:
1. Computers are encrypted during Task Sequence and MBAM client is installed.
2. During first logon MBAM client promts for PIN and encryption is complete.
3. Bitlocker recovery key is found in MBAM Admin Web page, but not TPM password.
What I tried to do:
- There is no Group Policy for controling TPM password.
- I´m member of MBAM Admin group and Helpdesk groups.
- If I clear and initialize TPM from its mgmt console, there will not be any activity from MBAM client, and TPM password still does not go to DB
- I have checked from SQL mgmt studio, that TPM hash is NULL
- I tried to use TPM-EK vbs script before and after encryption, there is no effect.
So how to get TPM password to DP? Specially I´m intresting in scenario where Computer is already encrypted.

MBAM has to own the TPM to store the password. During a task sequence, follow the steps below. The steps assume pre-provisioning, but the concept is the same even if you don't use it.  If the machine is already encrypted and you want MBAM to store the
password, you will have to clear the TPM and reboot. Note that this requires physical presence - someone will have to hit F1 in the preboot screen. See below for info on how to clear it via PowerShell.  The reason you want the TPM OwnerAuth password is
that if a user types their PIN too many times in preboot, the TPM may put the machine into BitLocker Recovery and lock itself for some period of time (depends on manufacturer).  To unlock it faster after you have supplied the BitLocker Recovery Password
and are in the OS, you have to go to tpm.msc and choose Reset TPM Lockout, supplying the TPM Owner Auth password.  If MBAM stores it, you can get this info from the Helpdesk portal.
To configure MBAM to own the TPM and store OwnerAuth passwords
On the client computer, open an elevated Windows PowerShell command prompt.
Type the following Windows PowerShell commands:
Command
Description
$tpm=get-wmiobject -class Win32_Tpm -namespace root\cimv2\security\microsofttpm
Gets an instance of the TPM WMI class.
$tpm.DisableAutoProvisioning()
Disables TPM auto-provisioning.
$tpm. SetPhysicalPresenceRequest(22)
Clears the TPM.
Restart the computer, and then confirm that you want to clear the TPM.
For the task sequence to get MBAM to own it out of the box, do the following:
Capture and      sysprep a WIM as you normally would.
Mount the      captured WIM using
dism /mount-wim /wimfile:C:\WimImages\Win7.wim
/index:1 /mountdir:C:\AIKMount
Load the WIM      registry -
reg load
HKLM\WimRegistry
c:\AIKMount\windows\system32\config\system
Open regedit      and browse to hklm\WimRegistry\system\controlset001\services\TPM\WMI and      add the two reg keys that
Jim mentioned
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tpm\WMI: NoAutoProvision [REG_DWORD]
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tpm\WMI: NoDisableOwnerClear [REG_DWORD]
Close regedit
Unload the WIM      registry -
reg unload HKLM\WimRegistry
Commit changes      to the WIM and unmount -
dism /unmount-wim /mountdir:C:\AIKMount
     /commit
Went to MDT      2012 Update 1 and my deployment share.
Edited the      ZTIBDE.wsf script in MDT to tell it not to take ownership of the TPM. 
In that script, replace the TPMValidate      function with what I have below (I just commented out the SetTPMOwner      lines)
Function TpmValidate ()
Dim iRetVal, sCmd, sTpmOwnerPassword
iRetVal = Success
'// Set oTpm to valid instance
iRetVal = GetTpmInstance()
TestAndFail iRetVal, 6734, "Get TPM Instance"
'// Set global booleans for TPM state. Error bubble handled by subs
iRetVal    = GetTpmEnabled()
TestAndFail iRetVal, 6735, "Check to see if TPM is enabled"
iRetVal = GetTpmActivated()
TestAndFail iRetVal, 6736, "Check to see if TPM is activated"
iRetVal = GetTpmOwner()
TestAndFail iRetVal, 6737, "Check to see if TPM is owned"
iRetVal = GetTpmOwnershipAllowed()
TestAndFail iRetVal, 6738, "Check to see if TPM Ownership is allowed"
iRetVal = GetEndorsementKeyPairPresent()
oLogging.CreateEntry "TpmEnabled: " & bTpmEnabled, LogTypeInfo
oLogging.CreateEntry "TpmActivated: " & bTpmActivated, LogTypeInfo
oLogging.CreateEntry "TpmOwned: " & bTpmOwned, LogTypeInfo
oLogging.CreateEntry "TpmOwnershipAllowed: " & bTpmOwnershipAllowed, LogTypeInfo
oLogging.CreateEntry "EndorsementKeyPairPresent: " & bEndorsementKeyPairPresent, LogTypeInfo
'// Single instance check to allow future corrective action branching.
TestAndFail bTPMEnabled, 6739, "Check to see if TPM is enabled"
TestAndFail bTPMActivated, 6740, "Check to see if TPM is activated"
TestAndFail bTpmOwned or bTpmOwnershipAllowed , 6741, "Check to see if TPM is owned and ownership is allowed"
If bTpmOwned <> True AND bTpmOwnershipAllowed = True Then
If oEnvironment.Item("TpmOwnerPassword") <> "" Then
oLogging.CreateEntry "TPM Ownership being intiated.", LogTypeInfo
'iRetVal = SetTpmOwner(oEnvironment.Item("TpmOwnerPassword"))
TestAndFail iRetVal, 6741, "TPM Owner Password set"
ElseIf oEnvironment.Item("AdminPassword") <> "" Then
oLogging.CreateEntry "TPM Ownership being intiated with AdminP@ssword (not TPMOwnerP@ssword).", LogTypeInfo
'iRetVal = SetTpmOwner(oEnvironment.Item("AdminPassword"))
TestAndFail iRetVal, 6742, "TPM Owner P@ssword set to AdminP@ssword"
Else
oLogging.CreateEntry "TPM Ownership being intiated with Default p@ssword (not TPMOwnerP@ssword).", LogTypeInfo
'iRetVal = SetTpmOwner("M0nksH00d!4T3al")
TestAndFail iRetVal, 6743, "Set TPM Owner P@ssword to value"
End If
End If
TpmValidate = Success
End Function
Grab the      StartMBAMEncryption.wsf script from
here
and edit out those same lines as above.
Added the      following files to an MDT application.      
Set the app to run cscript.exe startmbamencryption.wsf      /MBAMServiceEndPoint:http://<yourmbamserver>/MBAMRecoveryAndHardwareService/CoreService.svc
Added the MBAM      agent installer as an application
Added the MBAM      agent to the task sequence
Added the Start      MBAM Encryption app to the task sequence
Set      OSDBitLockerMode=TPM and IsBDE=True in customsettings.ini
Made sure this was a bare metal machine where the TPM was clear (for testing, you can clear it from the BIOS, just make sure it is activated).
Ran the TS on      the box.
Result:
BitLocker was pre-provisioned and activated, and MBAM took ownership of the TPM which escrowed the OwnerAuth info to MBAM.

Similar Messages

  • SCCM OSD for Windows 8.1 - TPM Owner Password not found

    Hello,
    I have been actively using these forums and the TechNet Guidance for the MBAM 2.5 client deployment, however I am still seeing some issues and looking for appropriate steps to troubleshoot.
    I have a MDT Integrated Task Sequence to deploy Windows 8.1 to various machines. The Windows 8.1 Image has been created via a MDT 2013 Build & Capture Task Sequence on a VM and then imported into SCCM 2012 R2. In the MDT Image creation I am disabling
    TPM Auto Provisioning by adding the Registry Key as per link below.
    http://msdn.microsoft.com/en-us/library/windows/hardware/dn260276.aspx
    The MDT Task Sequence has had the built-in Pre-Provision Bitlocker and Enable Bitlocker Steps disabled. I have included a step that runs the Clear-TPM powershell command before the Setup Windows and ConfigMgr and I have to confirm the TPM clearance at the
    first reboot.
    To begin the MBAM encryption I have scripts as supplied from the blog, firstly prepares the drive, reboots, installs MBAM 2.0 SP1, then encrypts.
    http://blogs.technet.com/b/deploymentguys/archive/2012/02/20/using-mbam-to-start-bitlocker-encryption-in-a-task-sequence.aspx
    The machine encrypts every time and the Recovery Key is escrowed, however I have not been able to get the TPM Owner Password
    Any troubleshooting steps for the TPM Owner Password would be greatly appreciated
    Regards
    LeeB
    Lee Bowman MCITP MCTS

    Hello, Hope this helps get you a bit further. And would love any updates for suggestions to more logging etc
    Image
    Use MDT to generate Image and apply the following registry keys. Must be done in Image via MDT or DISM
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tpm\WMI: NoAutoProvision      dword:1
    HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Tpm\WMI: NoDisableOwnerClear    dword:1
    Task Sequence Steps
    Set TS Variables
    IsBDE - True
    OSDBitlockerMode - TPM
    Pre-provision Bitlocker (Standard TS Step)
    Clear TPM - Create Powershell Script and use "Run Powershell Script" with Bypass.
                $tpm=get-wmiobject -class Win32_Tpm -namespace root\cimv2\security\microsofttpm
                $tpm. SetPhysicalPresenceRequest(22)
    Check TPM Endorsement Key Pair Status
    http://myitforum.com/myitforumwp/2011/11/14/bitlockermbamendorsement-keys-and-tpm-ownership/
    Install MBAM 2.0 SP1 Agent - Standard MSI Install
    Start MBAM Encryption
    cscript.exe Win8StartMBAMEncryption.wsf /MBAMServiceEndPoint:https://*****************
    Many versions of this script, but I used this one.
    http://blog.coretech.dk/hra/deploying-windows-8-with-mbam-used-space-only-encryption/
    Follow the Steps from LanceCr to comment out the TPM Owner Password.
    https://social.technet.microsoft.com/Forums/en-US/95e1a7af-d273-44e1-92de-fd9915cc0e50/tpm-password-not-found-in-mbam-database?forum=mdopmbamGood
    Luck :)
    Lee Bowman MCITP MCTS

  • SSO : krb_error 6 Client not found in Kerberos Database

    Hi All,
    We are trying to configure SSO for Win AD user to login to infoView
    OS - Windows 2003 SP2
    Machine - 64 Bit
    BOE - XI 3.1 + SP2 + FP2.4 (32 Bit)
    CMS Database - SQL 2005 Server
    Domain Controller - Not sure if is 2003 or 2008 (awaiting information from client)
    While executing the kinit
    kinit BOSSO/<service accont name with FQDN> <password>
    its throwing a "krb_error 6 Client not found in kerberos Database."
    However Manual AD is working fine.
    What could be the issue here.
    Thanks and Regards
    Ranjit Krishnan
    Edited by: Ranjit Krishnan on Mar 24, 2010 2:56 PM

    client not found in kerberos DB means the KDC was located but the username was not found. There are many reasons for this
    1) typo in the username or when ktpass was run
    2) duplicate UPN (caused by running ktpass on 2 or more accounts)
    3) ktpass was not run on the account or not successfully so the username was never changed
    4) there is a bug in AD with 2008 DC's when the UPN does not = the samaccountname which will throw this message (search SAP KB's for 2008 client not found in kerberos database and you'll find the link to the Microsoft article to patch it)
    Regards,
    Tim

  • Kinit: Client not found in Kerberos database while getting initial credentials

    Hi all,
    I am trying to configure application which uses Kerberos authentication.
    Error message: 
    kinit: Client not found in Kerberos database while getting initial credentials
    I use Windows Server 2003 domain controller as LDAP server, Tomcat application (on Linux) and IIS application as client, and apache load balancer.
    There is multidomain environment:  russia.domain.net, europa.domain.net, asia.domain.net;
    Tomcat and IIS servers works behind a proxy server (Apache on Linux). 
    For applications created two DNS  records type A. all DNS use IP address of Apache proxy server:
    application-sandbox.russia.domain.net
    applicationweb-sandbox.russia.domain.net
    To confiure kerberos authentication i have performed the following steps:
    1. Create user account in EUROPA domain and configure delegation for this:
    EUROPE\application_sandbox
    2. Register SPN for this account:
    setspn -A HTTP/application-sandbox.russia.domain.net EUROPE\application_sandbox
    setspn -A HTTP/application-sandbox EUROPE\application_sandbox
    3. After i verified registered SPN for this account:
    setspn.exe -L EUROPE\application_sandbox
    Registered ServicePrincipalNames for CN=kxxb999,OU=Users,DC=europe,DC=domain,DC=net:
            HTTP/application-sandbox
            HTTP/application-sandbox.russia.domain.net
    3. After i generate a keytab file:
    ktpass /princ HTTP/application-sandbox.russia.domain.net:@RUSSIA.DOMAIN.NET /ptype krb5_nt_principal /crypto rc4-hmac-nt /mapuser EUROPE\application_sandbox /out application_sandbox.keytab -kvno 0 /pass Pa$$w0rd
    4. Properties of account looks like the following:
    Get-ADUser -Identity appication_sandbox -Properties CN, ServicePrincipalNames, UserPrincipalName
    CN : kxxb999
    DistinguishedName : CN=kxxb999,OU=Users,DC=europe,DC=domain,DC=net
    Enabled : True
    GivenName :
    Name : kxxb999
    ObjectClass : user
    SamAccountName : application_sandbox
    ServicePrincipalNames : {HTTP/application-sandbox, HTTP/application-sandbox.russia.domain.net}
    Surname : application_sandbox
    UserPrincipalName : HTTP/[email protected]
    4.Note that CN and User logon name are different. SPN registered for DNS record.
    There are no computer in domain with name application-sandbox.russia.domain.net. this is a DNS record for application.
    5. Then i copy keytab file to Linux machine, configure krb5.conf file and trying to get TGT for registered principal name.
    krb5.conf file:
    [libdefaults]
    default_realm = EUROPE.DOMAIN.NET
    dns_lookup_realm = false
    dns_lookup_kdc = false
    default_tkt_enctypes = rc4-hmac
    default_tgs_enctypes = rc4-hmac
    [realms]
    RUSSIA.DOMAIN.NET = {
    kdc = dc01.russia.domain.net
    admin_server = dc01.russia.domain.net
    default_domain = russia.domain.net
    EUROPE.DOMAIN.NET = {
    kdc = dc01.europe.domain.net
    admin_server = dc01.europe.domain.net
    default_domain = europe.domain.net
    [domain_realm]
    europe.domain.net = EUROPE.DOMAIN.NET
    .europe.domain.net = EUROPE.DOMAIN.NET
    russia.domain.net = RUSSIA.DOMAIN.NET
    .russia.domain.net = RUSSIA.DOMAIN.NET
    [appdefaults]
    autologin = true
    forward = true
    forwardable = true
    encrypt = true
    Then i verified created keytab file:
    klist -e -k -t application_sandbox.keytab
    Keytab name: FILE:application_sandbox.keytab
    KVNO Timestamp Principal
    0 01/01/70 01:00:00 HTTP/[email protected] (arcfour-hmac)
    And trying to get TGT ticket:
    kinit -V -k -t application_sandbox.keytab HTTP/[email protected]
    Using default cache: /tmp/krb5cc_0
    Using principal: HTTP/[email protected]
    Using keytab: application_sandbox.keytab
    kinit: Client not found in Kerberos database while getting initial credentials
    But if i use SamAccountName name with kinit commant then i can aquire TGT ticket:
    [root@localhost security]# kinit application_sandbox
    Password for [email protected]:
    [root@localhost security]# klist
    Ticket cache: FILE:/tmp/krb5cc_0
    Default principal: [email protected]
    Valid starting Expires Service principal
    06/30/14 16:37:41 07/01/14 02:37:38 krbtgt/[email protected]
    renew until 07/01/14 16:37:41
    I'm in trouble. can anyone faced this problem?
    Thank you

    Hi all,
    according to Amy answer I thought, how user principal could  not be found in Kerberos database, e.g AD domain.
    My HTTP service works in RUSSIA domain, but user principal created in EUROPE domain.
    Next, i have checked my ktpass command:
    ktpass /princ HTTP/[email protected] /ptype krb5_nt_principal /crypto rc4-hmac-nt /mapuser EUROPE\application_sandbox /out application_sandbox.keytab -kvno 0 /pass
    Pa$$w0rd
    especially  the following parameters:
    /princ HTTP/[email protected]
    /mapuser EUROPE\application_sandbox
    When generating keytab it changes userlogon name to HTTP/application-sandbox.russia.domain.net and set domain domain to RUSSIA.DOMAIN.NET
    But no user principal with name application_sandbox in RUSSIA.DOMAIN.NET domain (e.g. Kerberos realm)
    So solution is change RUSSIA.DOMAIN.NET to EUROPE.DOMAIN.NAME in ktpass command.
    After that i am able to get TGT and authenticate in domain.

  • GSSAPI Error: Server not found in Kerberos database

    Hi all
    For about 3 days I'm now seeing this error message in system.log every 3 minutes:
    DirectoryService: GSSAPI Error: Miscellaneous failure (Server not found in Kerberos database)
    This happens on a fileserver which is connected to an OD server.
    I did a search in this forum and found one thread about it. The advice there was to look in kdc.log to see which principal is failing - but I don't have a kdc.log. The other tip was to use kadmin to get a list of the principals by using
    kadmin.local -q listprincs
    but what I get instead of this list is:
    Authenticating as principal xyz/[email protected] with password.
    kadmin.local: No such file or directory while initializing kadmin.local interface
    It seems that some file is missing, which would explain why DirectoryService can't find the server in the database... I have to confess that I have no idea as to how Kerberos works or how to configure it.
    Authentication against the OD server is working fine, it's just that the errors in the log are getting on my nerves, and they make it difficult to find other, more important messages in system.log.
    Thankas, Tina

    Ah, I see, the kdc.log is on the OD server, not on
    the file server where I was looking for it.
    OK, in the kdc logfile I have a lot of entries like
    these ones:
    Kerberos is an auth system where the user authenticates to the kdc and is issued a TGT (Ticket Granting Ticket). The user then presents their TGT and a service principal (Kerberos name of a server) to the kdc to get a service ticket. The user then sends the service ticket to the server who lets the user in.
    Some interpretation:
    Mar 22 09:18:35 zool09.abc.xy krb5kdc[218](info):
    TGS_REQ (7 etypes {18 17 16 23 1 3 2}) 130.60.23.23:
    UNKNOWN_SERVER: authtime 1143003387,
    [email protected] for krbtgt/[email protected],
    Server not found in Kerberos database
    This (TGS_REQ) is request for a service ticket from 130.60.23.23 using the
    TGT owned by [email protected], to get a service ticket for
    krbtgt/[email protected]. It looks like krbtgt/[email protected] is not in your kdc's database. This looks like a cross realm request.
    If you are also connected to an active directory system you might see something like this.
    Mar 22 09:19:20 zool09.abc.xy krb5kdc[218](info):
    AS_REQ (7 etypes {18 17 16 23 1 3 2}) 130.60.23.11:
    NEEDED_PREAUTH: [email protected] for
    krbtgt/[email protected], Additional
    pre-authentication required
    Mar 22 09:19:20 zool09.abc.xy krb5kdc[218](info):
    AS_REQ (7 etypes {18 17 16 23 1 3 2}) 130.60.23.11:
    ISSUE: authtime 1143015560, etypes {rep=16 tkt=16
    ses=16}, [email protected] for
    krbtgt/[email protected]
    The AS_REQ's above are the two step authentication process for user [email protected] from 130.60.23.11.
    Mar 22 09:19:20 zool09.abc.xy krb5kdc[218](info):
    TGS_REQ (7 etypes {18 17 16 23 1 3 2}) 130.60.23.11:
    UNKNOWN_SERVER: authtime 1143001370,
    [email protected] for
    krbtgt/[email protected], Server not
    found in Kerberos database
    This is another service ticket request. Though the requested service principal looks malformed, I would look for something misconfigured on 130.60.23.11.
    Possibly watch what user zds01 is doing during login to get some idea of what's going on.
    Mar 22 09:19:20 zool09.abc.xy krb5kdc[218](info):
    TGS_REQ (7 etypes {18 17 16 23 1 3 2}) 130.60.23.11:
    UNKNOWN_SERVER: authtime 1143001370,
    [email protected] for
    krbtgt/[email protected], Server not found
    in Kerberos database
    Same as above.
    What do they mean? I didn't set up Kerberos
    authentication, I think I don't need it, is there any
    way to disable it? Or am I using it without knowing
    it??
    When you set up the OD Master, a kdc & the needed files were set up to allow single sign on to all the kerberized services in the system.
    - see if you have an
    /Library/Preferences/edu.mit.Kerberos file
    - Also look for an /etc/krb5.keytab file
    Yes, I have both of them.
    kadmin.local -q listprincs on the OD server gives me
    a long list of computers, users and services like
    this:
    I don't know what these all mean... could you give me
    a brief explanation?
    [email protected]
    When you create a computer record in Workgroup Manager a generic principal name is added to the kdc for that computer. It is related to the host/computer_name@REALM service principal for servers.
    [email protected]
    This is a user principal (this is the account name for the user in the Kerberos system) Sometimes you will see user/admin@REALM.
    afpserver/[email protected]
    This is a service principal. They usually are in the form servicetype/server_dnsname@REALM
    One of the things that Kerberos is very sensitive to is correct DNS configuration. You need to have both forward (name -> IP) and reverse (IP -> name) DNS set up for all the servers in your realm.
    Hope this helps
    - Leland
    DP G4   Mac OS X (10.4.5)  

  • Server not found in Kerberos database (7)

    Hi!
    Running the examples from
    http://java.sun.com/javase/6/docs/technotes/guides/security/jgss/lab
    works fine for me as long as I use the Kerberos test realm I have set up on a unix machine. But when I run the same classes against our Active Directory, the client spills a stacktrace, indicating that AD can not find the server in its database. But it actually is in that database, as the sample server can perfectly authenticate as exactly that principal!
    Enabling all security related debug info i could find, this is the client dump:
    $ java -Djava.security.auth.login.config=jaas-krb5.conf
         -Djava.security.krb5.kdc=##KDC##
         -Djava.security.krb5.realm=##REALM##
         -Dsun.security.jgss.debug=true
         -Dsun.security.krb5.debug=true
         -Djava.security.debug="logincontext,policy,scl,gssloginconfig"
         GssClient host ##SERVER##
    scl:  getPermissions ProtectionDomain  (file:/xxxxx/ <no signer certificates>)
    sun.misc.Launcher$AppClassLoader@11b86e7
    <no principals>
    java.security.Permissions@1a46e30 (
    (java.io.FilePermission \xxxxx\- read)
    (java.lang.RuntimePermission exitVM)
    scl:
    Debug is  true storeKey false useTicketCache true useKeyTab true doNotPrompt false ticketCache is nu
    ll isInitiator true KeyTab is null refreshKrb5Config is false principal is xxxxx tryFirstPass is tru
    e useFirstPass is false storePass is false clearPass is false
    Acquire TGT from Cache
    KinitOptions cache name is C:\xxxxxAcquire default native Credentials
    Obtained TGT from LSA: Credentials:
    client=##USER##@##REALM##
    server=krbtgt/##REALM##@##REALM##
    authTime=20070705103930Z
    startTime=20070705103930Z
    endTime=20070705203930Z
    renewTill=20070712103930Z
    flags: FORWARDABLE;RENEWABLE;INITIAL;PRE-AUTHENT
    EType (int): 23
    Principal is ##USER##@##REALM##
                    [Krb5LoginModule] authentication succeeded
            [LoginContext]: login success
    Commit Succeeded
            [LoginContext]: commit success
    Authenticated principal: [##USER##@##REALM##]
    Connected to address ##SERVER##/xxxxx
    xxxxx
    create server name with host@##SERVER##
    Search Subject for Kerberos V5 INIT cred (<<DEF>>, sun.security.jgss.krb5.Krb5InitCredential)
    Found ticket for ##USER##@##REALM## to go to krbtgt/##REALM##@##REALM## expiring on Thu Jul
    05 20:39:30 GMT 2007
    Entered Krb5Context.initSecContext with state=STATE_NEW
    Found ticket for ##USER##@##REALM## to go to krbtgt/##REALM##@##REALM## expiring on Thu Jul
    05 20:39:30 GMT 2007
    Service ticket not found in the subject
    Credentials acquireServiceCreds: same realmUsing builtin default etypes for default_tgs_enctypes
    default etypes for default_tgs_enctypes: 3 1 23 16 17.
    CksumType: sun.security.krb5.internal.crypto.RsaMd5CksumType
    EType: sun.security.krb5.internal.crypto.ArcFourHmacEType
    KrbKdcReq send: kdc=##KDC## UDP:88, timeout=30000, number of retries =3, #bytes=1328
    KDCCommunication: kdc=##KDC## UDP:88, timeout=30000,Attempt =1, #bytes=1328
    KrbKdcReq send: #bytes read=101
    KrbKdcReq send: #bytes read=101
    KDCRep: init() encoding tag is 126 req type is 13
    KRBError:         sTime is Thu Jul 05 14:43:05 GMT 2007 1183646585000
             suSec is 487997
             error code is 7
             error Message is Server not found in Kerberos database
             realm is ##REALM##
             sname is host/##SERVER##
             msgType is 30
    KrbException: Server not found in Kerberos database (7)
            at sun.security.krb5.KrbTgsRep.<init>(Unknown Source)
            at sun.security.krb5.KrbTgsReq.getReply(Unknown Source)
            at sun.security.krb5.internal.CredentialsUtil.serviceCreds(Unknown Source)
            at sun.security.krb5.internal.CredentialsUtil.acquireServiceCreds(Unknown Source)
            at sun.security.krb5.Credentials.acquireServiceCreds(Unknown Source)
            at sun.security.jgss.krb5.Krb5Context.initSecContext(Unknown Source)
            at sun.security.jgss.GSSContextImpl.initSecContext(Unknown Source)
            at sun.security.jgss.GSSContextImpl.initSecContext(Unknown Source)
            at GssClient$GssClientAction.run(GssClient.java:171)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAs(Unknown Source)
            at Jaas.loginAndAction(Jaas.java:94)
            at GssClient.main(GssClient.java:97)
    Caused by: KrbException: Identifier doesn't match expected value (906)
            at sun.security.krb5.internal.KDCRep.init(Unknown Source)
            at sun.security.krb5.internal.TGSRep.init(Unknown Source)
            at sun.security.krb5.internal.TGSRep.<init>(Unknown Source)
            ... 13 more
    Exception in thread "main" java.security.PrivilegedActionException: GSSException: No valid credentia
    ls provided (Mechanism level: Server not found in Kerberos database (7))
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAs(Unknown Source)
            at Jaas.loginAndAction(Jaas.java:94)
            at GssClient.main(GssClient.java:97)
    Caused by: GSSException: No valid credentials provided (Mechanism level: Server not found in Kerbero
    s database (7))
            at sun.security.jgss.krb5.Krb5Context.initSecContext(Unknown Source)
            at sun.security.jgss.GSSContextImpl.initSecContext(Unknown Source)
            at sun.security.jgss.GSSContextImpl.initSecContext(Unknown Source)
            at GssClient$GssClientAction.run(GssClient.java:171)
            ... 4 more
    Caused by: KrbException: Server not found in Kerberos database (7)
            at sun.security.krb5.KrbTgsRep.<init>(Unknown Source)
            at sun.security.krb5.KrbTgsReq.getReply(Unknown Source)
            at sun.security.krb5.internal.CredentialsUtil.serviceCreds(Unknown Source)
            at sun.security.krb5.internal.CredentialsUtil.acquireServiceCreds(Unknown Source)
            at sun.security.krb5.Credentials.acquireServiceCreds(Unknown Source)
            ... 8 more
    Caused by: KrbException: Identifier doesn't match expected value (906)
            at sun.security.krb5.internal.KDCRep.init(Unknown Source)
            at sun.security.krb5.internal.TGSRep.init(Unknown Source)
            at sun.security.krb5.internal.TGSRep.<init>(Unknown Source)
            ... 13 moreWhy's AD claiming in the KRBError that it can't find a sname/realm which exactly matches the principal it accepted for the server? This totally confuses me! Can please anyone bring some light?
    Regards

    It works now!!!
    The exact procedure is:
    - Create a new user in AD with an arbitrary name <username>. Use the same name in "User Logon Name", "User Logon Name (pre Win2K)" and "First Name" (odd, isn't it).
    - Set the password, deactivate "User has to change the password at first logon", and activate "Password never expires"
    - Create a mapping for the service name by entering into the command line: ktpass -princ "<protocol>/<fqdn>@<realm>" -mapuser "<username>@<realm>" -pass "*" -out dummy.keytab
    - Check that the mapping is set and unique; use adsiedit.msc (Windows Support Tools).
    - Now you can use the Java tool ktab to create your own keytab as usual and go.
    But it is a science in its own right to correctly configure an Active Directory , especially for use with Kerberos. In particular error messages are hardly useful (as it is generally the case in the Kerberos world). It may help to read:
    http://www.microsoft.com/downloads/details.aspx?FamilyID=99b0f94f-e28a-4726-bffe-2f64ae2f59a2&DisplayLang=en
    and
    http://www.microsoft.com/downloads/details.aspx?FamilyID=7dfeb015-6043-47db-8238-dc7af89c93f1&displaylang=en
    Have fun!

  • Drive not found in library database

    Greetings.
    I'm new to OSB and am having tape drive, volume problems.
    File system backups only complete successfully when drive (IBM4_0_0_1_1) is used. When OSB attempts to use other drives in the library it logs the following errors listed in "Transcript".
    I'm running OSB (10.4.0.3.0) on a Linux server (Oracle Linux Server release 6.0) with a SL500 library controller by a ACSLS(8.3.0) server.
    Please advise.
    Transcript:
    2014/04/23.11:44:01 ______________________________________________________________________
      2014/04/23.11:44:01
      2014/04/23.11:44:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:44:01
      2014/04/23.11:44:01 ---
      2014/04/23.11:44:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.11:44:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.11:44:01 drive not found in library database (library manager)
      2014/04/23.11:45:01 ______________________________________________________________________
      2014/04/23.11:45:01
      2014/04/23.11:45:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:45:01
      2014/04/23.11:45:01 ---
      2014/04/23.11:45:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.11:45:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.11:45:01 drive not found in library database (library manager)
      2014/04/23.11:46:01 ______________________________________________________________________
      2014/04/23.11:46:01
      2014/04/23.11:46:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:46:01
      2014/04/23.11:46:01 ---
      2014/04/23.11:46:01 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.11:46:01 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.11:46:01 drive not found in library database (library manager)
      2014/04/23.11:48:01 ______________________________________________________________________
      2014/04/23.11:48:01
      2014/04/23.11:48:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:48:01
      2014/04/23.11:48:01 ---
      2014/04/23.11:48:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.11:48:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.11:48:01 drive not found in library database (library manager)
      2014/04/23.11:49:01 ______________________________________________________________________
      2014/04/23.11:49:01
      2014/04/23.11:49:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:49:01
      2014/04/23.11:49:01 ---
      2014/04/23.11:49:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.11:49:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.11:49:01 drive not found in library database (library manager)
      2014/04/23.11:50:01 ______________________________________________________________________
      2014/04/23.11:50:01
      2014/04/23.11:50:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.11:50:01
      2014/04/23.11:50:01 ---
      2014/04/23.11:50:01 No volume could be found in SL500 (for drive HP5_0_0_2_3) to use for job admin/83.1.
      2014/04/23.11:50:01 The problem using HP5_0_0_2_3 and the volume it contains, if any, is
      2014/04/23.11:50:01 drive not found in library database (library manager)
      2014/04/23.12:00:01 ______________________________________________________________________
      2014/04/23.12:00:01
      2014/04/23.12:00:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:00:01
      2014/04/23.12:00:01 ---
      2014/04/23.12:00:01 No volume could be found in SL500 (for drive HP6_0_0_3_1) to use for job admin/83.1.
      2014/04/23.12:00:01 The problem using HP6_0_0_3_1 and the volume it contains, if any, is
      2014/04/23.12:00:01 drive not found in library database (library manager)
      2014/04/23.12:01:01 ______________________________________________________________________
      2014/04/23.12:01:01
      2014/04/23.12:01:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:01
      2014/04/23.12:01:01 ---
      2014/04/23.12:01:01 No volume could be found in SL500 (for drive HP5_0_0_2_4) to use for job admin/83.1.
      2014/04/23.12:01:01 The problem using HP5_0_0_2_4 and the volume it contains, if any, is
      2014/04/23.12:01:01 drive not found in library database (library manager)
      2014/04/23.12:01:24 ______________________________________________________________________
      2014/04/23.12:01:24
      2014/04/23.12:01:24 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:01:24
      2014/04/23.12:01:25 ---
      2014/04/23.12:01:25 No volume could be found in SL500 (for drive IBM5_0_0_1_2) to use for job admin/83.1.
      2014/04/23.12:01:25 The problem using IBM5_0_0_1_2 and the volume it contains, if any, is
      2014/04/23.12:01:25 drive not found in library database (library manager)
      2014/04/23.12:04:01 ______________________________________________________________________
      2014/04/23.12:04:01
      2014/04/23.12:04:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:04:01
      2014/04/23.12:04:01 ---
      2014/04/23.12:04:01 No volume could be found in SL500 (for drive HP4_0_0_2_2) to use for job admin/83.1.
      2014/04/23.12:04:01 The problem using HP4_0_0_2_2 and the volume it contains, if any, is
      2014/04/23.12:04:01 drive not found in library database (library manager)
      2014/04/23.12:05:01 ______________________________________________________________________
      2014/04/23.12:05:01
      2014/04/23.12:05:01 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:01
      2014/04/23.12:05:01 ---
      2014/04/23.12:05:01 No volume could be found in SL500 (for drive IBM5_0_0_2_1) to use for job admin/83.1.
      2014/04/23.12:05:01 The problem using IBM5_0_0_2_1 and the volume it contains, if any, is
      2014/04/23.12:05:01 drive not found in library database (library manager)
      2014/04/23.12:05:21 ______________________________________________________________________
      2014/04/23.12:05:21
      2014/04/23.12:05:21 Transcript for job admin/83.1 running on x4440a
      2014/04/23.12:05:21
      Backup started on Wed Apr 23 2014 at 12:05:51
      Volume label:
      Volume tag: LEV018
      Volume UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Volume ID: mf_2min-000025
      Volume sequence: 1
      Volume set owner: root
      Volume set created: Wed Apr 23 12:05:51 2014
      Volume set expires: Wed Apr 23 12:07:51 2014
      Media family: mf_2min
      Original UUID: 203f144a-ad72-1031-9e4c-002128001bbe
      Archive label:
      File number: 1
      File section: 1
      Owner: root
      Client host: x4440a
      Backup level: 0
      S/w compression: no
      Archive created: Wed Apr 23 12:05:51 2014
      Encryption: off
      Dumping all files in /etc
      Backup complete on Wed Apr 23 2014 at 12:06:03
      Backup statistics:
      status 0
      devices IBM4_0_0_1_1
      devices 1
      volumes mf_2min-000025
      voltags LEV018
      file 1
      host x4440a
      encryption off
      start_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      end_time Wed Apr 23 2014 at 12:06:06 (1398276366)
      backup_time Wed Apr 23 2014 at 12:05:51 (1398276351)
      entries_scanned 3373
      kbytes_scanned 40556
      entries_excluded 0
      entries_skipped 0
      mount_points_skipped 0
      files 2047
      directories 315
      hardlinks 0
      symlinks 1011
      sparse_files 0
      filesys_errors 0
      unknown_type 0
      file_kbytes 39264
      dev_kbytes 35977
      dev_iosecs 2
      dev_iorate 18.4 MB/S
      wrt_iosecs 15
      wrt_iorate 2.5 MB/S
      physical_blks_written 1102
      write_errors 0
      physical_blks_read 2
      read_errors 0
      error_rate 0%
      path /etc completed, status 0
    [root@x4440a backup]# obtool lsdev -lvg
    SL500:
         Device type:            library (ACSLS)
         In service:             yes
         Debug mode:             no
         Barcode reader:         yes
         Barcodes required:      yes
         Unload required:        yes
         Ejection type:          auto
         Min writable volumes:   0
         UUID:                   e0b58224-a1a4-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             ACSLS server:       v215f
             ACSLS port:         0
             ACS id:             0
             ACSLS access id:    acsss
         Reservation 1:
             Component:          obacslibd
             Host:               x4440a
             Process:            32195
         Element counts / addresses:
            10 mte: 1 - 10
           281 se : 1 - 281
             1 iee: 1
             1 dte: 1
         Moves:
            From mte, to: mte 0   se 0   iee 0   dte 0
            From  se, to: mte 0   se 0   iee 1   dte 1
            From iee, to: mte 0   se 0   iee 0   dte 0
            From dte, to: mte 0   se 1   iee 0   dte 0
         Ok_ops: move=1, reserve=1 sense_dev=1, sense_ele=0, unload_any=1, sense_dev_range=0
         State of barcode reader: enabled
    IBM4_0_0_1_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            14 minutes, 58 seconds
         UUID:                   179eb954-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg18
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD4
             Firmware:           C7Q0
             Serial number:      1310127325
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_2_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   7498ff66-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg16
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1168002114
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP6_0_0_3_1:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  3
         Drive:                  1
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   cd20d3fc-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg21
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 6-SCSI
             Firmware:           J39S
             Serial number:      HU1233PPNN
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    IBM5_0_0_1_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  1
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   5b6cf420-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg15
         Connection type:        SCSI
         Inquiry data:
             Vendor:             IBM
             Product:            ULTRIUM-TD5
             Firmware:           D8D4
             Serial number:      1068002447
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    HP4_0_0_2_2:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  2
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   8bd3659a-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg13
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 4-SCSI
             Firmware:           H64S
             Serial number:      HU1803168E
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_3:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  3
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   9ee7dbd4-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg23
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NFE
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    not available
         Maximum block size:     2097152
    HP5_0_0_2_4:
         Device type:            tape (ACSLS)
         In service:             yes
         Library:                SL500
         LSM:                    0
         Panel:                  2
         Drive:                  4
         Automount:              yes
         Error rate:             8
         Query frequency:        131072KB (134217728 bytes) (from driver)
         Debug mode:             no
         Blocking factor:        (default)
         Max blocking factor:    (default)
         Current tape:           [unknown]
         Drive usage:            [not set]
         UUID:                   b45b889e-a1a5-1031-8c0f-002128001bbe
         Attachment 1:
             Host:               x4440a
             Raw device:         /dev/sg24
         Connection type:        SCSI
         Inquiry data:
             Vendor:             HP
             Product:            Ultrium 5-SCSI
             Firmware:           I67S
             Serial number:      HU19477NBF
         Tape state:             offline
         Hardware compression:   on
         Last read was:          uncompressed
         Hardware encryption:    available
         Maximum block size:     2097152
    [root@x4440a backup]#
    [root@x4440a backup]# obtool lsvol -L SL500 -l
    Inventory of library SL500:
         in    1:             barcode F50216, oid 100
         in    2:             barcode I50116, oid 101
         in    3:             barcode LEV008, oid 102, mediainfo hw encryptable
         in    4:             barcode LEV010, oid 103, mediainfo hw encryptable
         in    5:             barcode LEV017, oid 104, mediainfo hw encryptable
         in    6:             volume mf_2min-000025, barcode LEV018, oid 155, 781232128 kb remaining, expired, mediainfo hw encryptable
         in    7:             barcode LEV049, oid 106
         in    8:             barcode LEV058, oid 107
         in    9:             barcode PQ4196, oid 108
         in    10:            barcode PQ4883, oid 109
         in    11:            barcode S50282, oid 110
         in    12:            barcode S50290, oid 111
         in    13:            barcode S50291, oid 112
         in    14:            barcode S50292, oid 113
         in    15:            barcode S50300, oid 114
         in    16:            barcode S60111, oid 115
         in    17:            barcode S60113, oid 116
         in    18:            barcode SF6410, oid 117
         in    19:            barcode SF6411, oid 118
         in    20:            barcode SF6412, oid 119
         in    21:            barcode SF6413, oid 120
         in    22:            barcode SF6414, oid 121
         in    23:            barcode SF6416, oid 122
         in    24:            barcode SF6417, oid 123
         in    25:            barcode SF6418, oid 124
         in    26:            barcode SF6419, oid 125
         in    27:            vacant
         in    28:            vacant
         in    29:            vacant
         in    30:            vacant
         in    31:            vacant
         in    274:           vacant
         in    275:           vacant
         in    276:           vacant
         in    277:           vacant
         in    278:           vacant
         in    279:           vacant
         in    280:           vacant
         in    281:           vacant
         in    iee:           vacant
         in    dte:           vacant
    [root@x4440a backup]#

    Rich
    Thanks for your response.
    ACSLS is part of the configuration requirements I need to have in this OBS environment.
    I'm going to re install OBS just to see if anything changes.
    Thanks again.
    Update:
    When configuring devices in OSB that are ACSLS in nature it is a requirement to restart the obacslibd after mkdev or certain chdev commands are preformed.
    After the daemon was restarted I was able to use the attached tape drives.

  • This procedure name is not found in the database: wwv_flow.show

    I created an interactive report, which works fine in the APEX developer, using the Application Express Authentication scheme.
    To add it to our Self-Service web system, I change the authentication scheme to a custom scheme that has been working fine for other applications, although I don't know of any other interactive reports using this scheme in Self-Service.
    Anyway, the interactive report is displayed in our Self-Service system using the custom authentication scheme, but if I display the Action menu and click on one of the options (Filter, Sort, Compute...), a pop-up window is displayed saying:
    This procedure name is not found in the database:
    wwv_flow.show
    That error is also displayed when I try to edit the displayed filters.
    Does anyone know why I might be getting that error or have suggestions on things to try to track it down?
    Thanks,
    Laura

    Laura,
    To add it to our Self-Service web systemWhat does that mean? What did it entail?
    I'm thinking maybe you embedded some relative links into a menu system in which the base href was not appropriate, ... or something.
    Scott

  • Client not found in Kerberos database

    Hi All,
    I am getting Client not found in Kerberos database* when i try to a create new connection from SQL Developer 2.1.1.64 to Oracle 10G database.
    I am sure that login credentials provided in connection properties are correct. pls respond, if you know the solution.
    Regards,
    Manoj N.

    Your "being sure" is overwhelmed by the evidence. The chance that you are correct and database/Kerberos is incorrect is a very small number approaching zero.
    So back to basics ...
    1. What is your actual database version (it is not 10g)?
    2. What version of Kerberos?
    3. What platform and operating system?
    4. Does it work for anyone else?
    5. Did it ever work before and stopped working or is this a first attempt by anyone to log on?
    6. Have you turned on connection logging? If not do so. If you have post the relevant section of the log file.
    7. Do you have a DBA or system or network administrator on-site?
    8. Please also post the full and complete error message not your interpretation of it.
    We can not help you without a thorough understanding of what is actually happening which you have not provided.

  • File not found error after database migration

    Hi experts
    I recently decided to create a test environment for SharePoint 2010 production server but after
     attach the content database  using power shell successfully I get “ file not found “ error when I try to login the top site collection
    I think it’s because of customized master page in production site which I don’t know how to apply them to my new environment.I even tried to copy the master pages from cataloge throught  SPD but it didnt work.
    Any assistance would be greatly appreciated

    HI Shahin,please try to access the site by below and let me know the result.please check the below link that gives more idea on the issue
    _/_layouts/settings.aspx
    /_layouts/viewlsts.aspx
    /default.aspx
    http://expertsharepoint.blogspot.de/2014/01/sharepoint-default-page-not-loading-by.html
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Dump : Table not found in oracle database

    Hi,
    I am doing a program regarding analysis of tables belonging to archiving objects.In my program i am calling a RFC function module . 'DB02_ORA_TABLE_INDEX_ANALYSIS . But it is giving the dump for native sql statement .
    --- Oracle block size ----------------------------------------------
      exec sql.
        select value from v$parameter where name like 'db_block_size%'
               into :block_size
      endexec.
    Dump is table not found in database.
    Could please let me know what setting i am missing...
    Thanks in advance.....
    Sudhakar

    Hi,
    the view V$PARAMETER must be accessed through  SAP/Oracle Database Monitor lets you view the active Oracle database parameters and the contents of the init.ora file.
    Alternatively, you can use transaction st04.  You need to apply SAP Note 706927 before using the database monitor.
    Hope this information is help to you.
    Regards,
    José

  • My ID and password not found

    It is really driving crazy to sign in with my ID and password.
    I don't understand why i can't log in using my exsisting ID and password.
    i always got my ID not found or wrong password. is it crazy or something?

    This is happening to me too. I'm using the right apple id and password.

  • Host Configuration not found error in database control

    I have freshly installed Oracle DB 11g and a starter database.
    Then i went to emctl (database control), at the home tab, I noticed the status is up (Green up arrow icon) but the "Instance Name", "Version", "Up Until" entries have the value "unknown"
    And then when i Click on the "view all properties link", I noticed that the ORACLE_HOME entry has a warning icon after the entry. Then when you click on the ORACLE_HOME entry link, I get a page saying
    Host Configuration not found. Check to see if the target exists.Whats happening? Did I miss something in my installation?
    regards,
    Anton

    What is the OS?. Have you seen the Metalink note: 353681.1
    Subject: Problem: Click on ORACLE_HOME gets "Host Configuration not found. Check to see if the target exists"
    Doc ID: 353681.1 Type: PROBLEM
    Modified Date : 30-JUL-2007 Status: PUBLISHED

  • Saids username an password not found or incorrect on itunes stuff an it's correct

    I'm trying to buy life's in pet rescue an when I sign in it saids my username an password was not found or incorrect, an it's right. Please help

    I've already tried the DVD drive with the same results. iTunes also will not burn from the library or an inserted disc. Other programs allow me to burn CD's, but not DVD's. (That's a whole other problem...) Since other programs will rip and burn, that would mean the problem is with iTunes, not the drives, no? I've also tried to uninstall and reinstall iTunes to no avail. Quite frustrating.

  • Table "StoredProcedure" not found when changing Database location in VS 2005.

    <p>I&#39;m having a problem changing the datasource location when generating a report using the report viewer in VS2005.  If the table is a stored procedure, I get the message "Table (StoredProcedureName) not found", but if the report references tables rather than a stored procedure the location is changed and the report runs successfully.  The same problem was reported in earlier versions of Crystal Reports and was fixed in a service pack, but I couldn&#39;t find any documentation on the VS2005 version. </p><p>Does anybody know how to fix this problem?  I am using CrystalDecisions.CrystalReports.Engine.dll version 10.2.3600.0 and SQL Server 2000.</p>

    Peggy, I wonder if getting the latest SP for CR 10.2 will be better for now. SP 1 can be downloaded from here:
    https://smpdl.sap-ag.de/~sapidp/012002523100006007872008E/crvs05sp1.exe
    I\Let us know if that does not resolve the issue and we'll take a closer look before going all the way to CR XI.
    With regards,
    Ludek

Maybe you are looking for