Question about "(authAuthority) index_param failed (18)" error LDAP Log

After a couple months of working through many 10.5 OD problems (now 10.5.2 on Mac Pro) I've worked out most and only have the following error in LDAP Log
Apr 23 18:31:29 crashdummy slapd[102]: <= bdbsubstringcandidates: (authAuthority) index_param failed (18)
I know its not a critical issue and everything finally seems stable but I'd like to check know what's going on.
I tried indexing authAthority in slapd_macosxserver.conf with equality, substring, and presence directives with no change. (using slapindex after unloading )
One issue might be that the authAuthority attribute on computers and users in LDAP has 2 entries, ApplePasswordServer and Kerberosv5.
I'm new to Apple environment, so I'm not sure if this is normal.
Should there be only one entry?
I can delete ApplePasswordServer and still everything works OK including Home folders on an AFP share.
So I'd like to know if anyone who doesn't get this error has only one entry in authAuthority attribute..

I think you need to keep ApplePasswordServer in there if you want to be able to support authentication without Kerberos, like when ticket has expired.
I currently have the same issue. As I understand this is not a serious warning but I'd still like to resolve it and stop cluttering my logs. I've tried changing LDAP mappings between "From Server" and "Opend Directory" and adding the value to conf and indexing, as did you, but this doesn't seem to have any effect. I'm also seeing occasional ipHostNumber failures.
It very well might be a bug in the software because indexing doesn't resolve it. I've looked around but there doesn't seem to be a definitive answer.

Similar Messages

  • Unknown error  LDAP Log

    Getting this error every few seconds in the LDAP log.
    fileserver slapd[55]: SASL [conn=4713] Failure: GSSAPI Error: Unspecified GSS failure. Minor code may provide more information (Key table entry not found)
    Any ideas on how to solve it?
    TIa
    Mitch

    Been there done that have the t-shirt.
    Here is how I fixed it.
    Go into Server Manager app.
    Click on Open Directory on the left hand side.
    Click on Settings at the top
    Click on LDAP
    I am assuming you are using SSL for your LDAP connections.
    Uncheck "Enable SSL" and click Save
    Wait 30 seconds
    Check "Enable SSL" and make sure you reselect your SSL cert.
    Click Save
    Your GSSAPI error will be cured until the next time you reboot or start/stop LDAP.
    Then just repeat the process above.
    Hope that helps.
    Another sympton of the GSSAPI error (Key table entry not found) is that your diradmin user will NOT be able to authenticate!
    That's pretty awesome (end sarcasm) and I wish APPLE WOULD FIX THIS as it took a lot of trial and error to figure this out.
    FWIW, I'm using a Go Daddy SSL cert which also requires an intermediate cert.

  • Questions about "WRITE SAME failed. Manually zeroing."

    Hi fellows,
    I've already read this old thread https://bbs.archlinux.org/viewtopic.php?id=164377
    but I have further questions:
    ok, WRITE SAME feature should enhances performance on supported hardware.
    But when I get this error, I must manually ZEROING the parameter to disable it or the parameter is already ZEROED, since it failed?
    and a second question:
    I get this error on an USB device. In the aforementioned thread this error appears with SATA.
    How can I disable permanently on an USB device, since address depends on the USB port which change?
    thank you
    Last edited by nTia89 (2015-01-06 09:59:31)

    I have the same problem with kernel 3.19 (was not happening before) booting Archlinux from USB stick (Ventura ultra).
    Plasma 5 start is now very slow. If I boot from another kernel (linux-rt) all is fine as it was before kernel 3.19 installation.
    It seems to me that also X starting is too slow before  sddm login screen.
    Using nvidia 340xx drivers (updated).
    Some suggestions?
    Last edited by hifi25nl (2015-03-19 13:30:34)

  • Question about forum use regarding an error I am receiving

    I am looking for an answer to the proper process I should follow when running into issues with Azure Storage. As I don't want to annoy folks with tossing questions into this forum regarding errors I'm running into that are more usage related instead
    of technical in scope.
    For instance this morning I was attempting to view some details about a particular Storage item and was greeted with the following screen in the Azure Portal.
    I was able to accomplish what I needed to (downloading some files out of this particular storage account) within the Manage.WindowsAzure.com site without issue. So this seems to be connected to the portal itself and it's interactions with Storage
    (perhaps). I now have access to the above Storage item via the portal site, but for about 15 minutes I continually received the message above. Even after logging out, clearning cache, trying different browsers etc.
    So my question(s) are; Are these forums the proper place to be posting information about issues we run into? If not what is the preferred method for reporting items like those above and getting help with remediating them in a timely manner?
    I'm happy to put them here, just want to make sure there isn't a better place as I'm new to this.

    Hi Darren,
    You can post your issue with Azure Storage in here. Just make sure that you do not give out any PII data.
    Also, the above portal which you are viewing is still in preview. You may use "manage.windowsazure.com" portal to access your resource.
    Regards,
    Manu

  • A question about PreparedStatement and ORA-03115 error

    Dear all,
    I have an issue with JDBC and I would appreciate if you could kindly give me a hand.
    I'm using:
    - Oracle Database 11g Enterprise (Release 11.1.0.6.0)
    - JDBC thin driver version: ( 11.1.0.7.0-Production)
    - JDK 1.6
    - Operating system: Linux (Ubuntu 8.10)
    Here is my code
    import java.sql.*;
    public class Main
        public static void main(String[] args)
            String dbURL = "jdbc:oracle:thin:@localhost:1521:mydatabase";
            String username = "scott";
            String user_password = "tiger";
            try
                Connection connection = DriverManager.getConnection(dbURL, username, user_password);
                String query_text = "SELECT * FROM mytable";
                Statement statement = connection.createStatement();
                ResultSet query_result = statement.executeQuery(query_text);
                connection.close();
            catch (SQLException e)
                for (Throwable t: e)
                    t.printStackTrace();
    }This works pretty well without any problem. But when I want to use PreparedStatement instead of Statement I receive the ORA-03115 error message, that is, when I replace the Statement with PreparedStatement in the following way:
    String query_text =
            "SELECT first_name, ?, id, ?, job_title, salary  FROM mytable "+
            "WHERE id IN ('id14', ?, 'id17', 'id18')";
    PreparedStatement prepared_statement =  connection.preparedStatement(query_text);
    prepared_statement.setString(1, "last_name");
    prepared_statement.setString(2, "birthday");
    prepared_statement.setString(3, "id02");
    ResultSet query_result = prepared_statement.executeQuery(query_text);I get the following:
    java.sql.SQLException: ORA-03115: unsupported network datatype or representation
         at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)
         at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1034)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)
         at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:791)
         at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:866)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1186)
         at oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1377)
         at oracle.jdbc.driver.OracleStatementWrapper.executeQuery(OracleStatementWrapper.java:387)
         at mysqlpackage.Main.main(Main.java:33)Therefore, right after
    ResultSet query_result = prepared_statement.executeQuery(query_text);the exception is thrown,
    why it works with Statement but not with PreparedStatement? I tested with several other queries, insert a new row, delete a row, everytime it works well, but when I want to use PreparedStatement instead of Statement, again I have this error message.
    Any idea?
    Thanks in advance,

    OK, I found myself the answer.
    First error, I had use ? also for column names, which is not accepted as the SQL query has to be precompiled.
    Second error: Instead of writing
    ResultSet query_result =  prepared_statement.executeQuery(query_text);I had to write:
    ResultSet query_result =  prepared_statement.executeQuery();I tested with the following
    String query_text =
                  "SELECT first_name, last_name, id, birthday, job_title, salary "+
                  "FROM myenterprise "+
                  "WHERE id IN (?, ?, ?, ?) ";
                PreparedStatement prepared_statement =
                        connection.prepareStatement(query_text);
                prepared_statement.setString(1, "id02");
                prepared_statement.setString(2, "id04");
                prepared_statement.setString(3, "id08");
                prepared_statement.setString(4, "id09");
                ResultSet query_result =  prepared_statement.executeQuery();And it works pretty well now! :)

  • Question about "int scope" parameter in oracle.ldap.util.Util.getEntryDetails()

    List,
    What are the possible values for "scope" in oracle.ldap.util.Util.getEntryDetails(DirContext ctx, String base, String filter, int scope, String[] attrList)? Are there any constants?
    Thanks in advance.
    Leandro.

    I found it out...
    0 - SCOPE_BASE
    1 - SCOPE_ONELEVEL
    2 - SCOPE_SUBTREE
    Thanks any way.
    Leandro.
    Ps.: I didn't understand why this numbers aren't constants in the Util class. (Or why they aren't in the doc)

  • OK I have a question about "game center" Is it possible to log into the game center with a different apple ID, just within the game center and not anywhere else in the phone?

    I have 2 Iphones, 1 is a personal phone and the other is a work phone, i will be using my work phone only right away, I have an appointed Apple ID on my work phone and i want to transfer my Clash of clans Village with out having to attach my other apple ID to the phone? So basically can my Game center have 1 Apple ID and my phone use another? Hopefully that makes sense.

    Well crafted story = kudos, but try this User Tip FIRST
    Some Solutions for Resetting Forgotten Security Questions
        ÇÇÇ

  • GetDPLocations failed with error 0x80072ee7

    Hello, I have been wrestling with this for the last week, I am trying to get CM working in my lab. I can’t seem to get the client console to push down, please help? Here is
    my ccmsetup log.
    <![LOG[==========[ ccmsetup started in process 1984 ]==========]LOG]!><time="19:35:07.945+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3708" file="ccmsetup.cpp:9100">
    <![LOG[Running on platform X64]LOG]!><time="19:35:07.945+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3708" file="util.cpp:1681">
    <![LOG[Updated security on object C:\Windows\ccmsetup\cache\.]LOG]!><time="19:35:07.945+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3708" file="ccmsetup.cpp:8944">
    <![LOG[Launch from folder C:\Windows\ccmsetup\]LOG]!><time="19:35:07.945+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3708" file="ccmsetup.cpp:721">
    <![LOG[CcmSetup version: 5.0.7804.1000]LOG]!><time="19:35:07.945+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3708" file="ccmsetup.cpp:727">
    <![LOG[In ServiceMain]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="ccmsetup.cpp:3340">
    <![LOG[Running on OS (6.1.7601). Service Pack (1.0). SuiteMask = 274. Product Type = 2]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:2673">
    <![LOG[Ccmsetup command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:3563">
    <![LOG[Command line parameters for ccmsetup have been specified. No registry lookup for command line parameters is required.]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:3721">
    <![LOG[Command line: "C:\Windows\ccmsetup\ccmsetup.exe" /runservice /config:MobileClient.tcf]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:3722">
    <![LOG[SslState value: 224]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="ccmsetup.cpp:4330">
    <![LOG[CCMHTTPPORT: 80]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:8280">
    <![LOG[CCMHTTPSPORT: 443]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:8295">
    <![LOG[CCMHTTPSSTATE: 224]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:8313">
    <![LOG[CCMHTTPSCERTNAME: ]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:8331">
    <![LOG[FSP: ]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:8383">
    <![LOG[CCMFIRSTCERT: 1]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:8441">
    <![LOG[Config file: C:\Windows\ccmsetup\MobileClientUnicode.tcf]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4432">
    <![LOG[Retry time: 10 minute(s)]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4433">
    <![LOG[MSI log file: C:\Windows\ccmsetup\Logs\client.msi.log]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4434">
    <![LOG[MSI properties: INSTALL="ALL" SMSSITECODE="CM1" CCMHTTPPORT="80" CCMHTTPSPORT="443" CCMHTTPSSTATE="224" CCMFIRSTCERT="1"]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4435">
    <![LOG[Source List:]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4443">
    <![LOG[ \\CC-VMM01.cancorp.com\SMSClient]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4450">
    <![LOG[ \\CC-VMM01.CANCORP.COM\SMSClient]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4459">
    <![LOG[MPs:]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4462">
    <![LOG[ CC-VMM01.cancorp.com]LOG]!><time="19:35:07.960+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:4477">
    <![LOG[No version of the client is currently detected.]LOG]!><time="19:35:07.976+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:2734">
    <![LOG[Updated security on object C:\Windows\ccmsetup\.]LOG]!><time="19:35:07.976+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="ccmsetup.cpp:8944">
    <![LOG[A Fallback Status Point has not been specified. Message with STATEID='100' will not be sent.]LOG]!><time="19:35:07.976+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:9428">
    <![LOG[Running as user "SYSTEM"]LOG]!><time="19:35:07.976+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:1972">
    <![LOG[Detected 12186 MB free disk space on system drive.]LOG]!><time="19:35:07.976+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="util.cpp:574">
    <![LOG[Checking Write Filter Status.]LOG]!><time="19:35:07.976+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:1999">
    <![LOG[This is not a supported write filter device. We are not in a write filter maintenance mode.]LOG]!><time="19:35:07.976+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:2026">
    <![LOG[Performing AD query: '(&(ObjectCategory=mSSMSManagementPoint)(mSSMSDefaultMP=TRUE)(mSSMSSiteCode=CM1))']LOG]!><time="19:35:07.991+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="lsad.cpp:640">
    <![LOG[OperationalXml '<ClientOperationalSettings><Version>5.00.7804.1000</Version><SecurityConfiguration><SecurityModeMask>0</SecurityModeMask><SecurityModeMaskEx>224</SecurityModeMaskEx><HTTPPort>80</HTTPPort><HTTPSPort>443</HTTPSPort><CertificateStoreName></CertificateStoreName><CertificateIssuers></CertificateIssuers><CertificateSelectionCriteria></CertificateSelectionCriteria><CertificateSelectFirstFlag>1</CertificateSelectFirstFlag><SiteSigningCert>308202F1308201D9A00302010202105450BE956B70BD8F4E01B9E58783EA07300D06092A864886F70D01010B05003016311430120603550403130B53697465205365727665723020170D3133303832383031343933385A180F32313133303830353031343933385A3016311430120603550403130B536974652053657276657230820122300D06092A864886F70D01010105000382010F003082010A0282010100D18987CEEAF610EBC87DE8E88713E5BC2AE3F0F4531A50B3DEC280DFE25A77B8E74C75D9745D9D22E40297229D106E3927B0593FEEF5A3C6755F48A6652F2F148F4C2001E47E8BBB73D71E4A73B81B13B3B07E71E89018E98C4CC3D59792C106CD9577C82199EDBB78193A42DB95DC49BC132C7CFB385E4C2CC6932ABAD83A033A1D9FF89DD2777F22ACCCE6A606DD3C88A001D10C20E637751E7FFD93A6ABDD68956CDE5C9A425465947F49EEA985CC001E0ACEBC7A57D044F718BBA55972C598598892D9934D8367364787B4B31A34B2BDD28731E37ECE9BB2822F25CCB88E5019512EB63A9C2C410E2F607C33E7F50FCF9A9C6F4DE73447D2263BF0AB5F6D0203010001A3393037301F0603551D1104183016821443432D564D4D30312E63616E636F72702E636F6D30140603551D25040D300B06092B060104018237650B300D06092A864886F70D01010B05000382010100B32F67776B617D0F2EA558B262C66B8F92605EA77259C889F1BB89C7351A2EC0ECF59FF28917E0B7218C476EFA047EF0A01A6B263A7581E683C242AC3BFF21E7A34A7F379712A514DDB6FFBBF04C083AF4B2BB1069D945FA84E89EB3F46BD8B2EF51DA20CDB1B43DA552D240F16EDC7CC2FB0A77A1D85C88366F4CF6F138BC98978D5FDDE077D8C43DCCA15B97670709C2B82ECF4496B5C6459713B6A2147303446A3C32F077870EA225C4AADCA1116480883702648C23DD3DFF367FD4C52B671ACEFEF2D4199D766805192EE428B6AEA315ABE1820F21BB458D92569043CCE4AD229E81FE5BD5DAA4E903B197DA3B2AA34304CCF4B1BA49FDE19113DCE788C4</SiteSigningCert></SecurityConfiguration><RootSiteCode>CM1</RootSiteCode><CCM> <CommandLine>SMSSITECODE=CM1</CommandLine> </CCM><FSP> <FSPServer></FSPServer> </FSP><Capabilities SchemaVersion ="1.0"><Property Name="SSLState" Value="0" /></Capabilities><Domain Value="cancorp.com" /><Forest Value="cancorp.com" /></ClientOperationalSettings>']LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="lsadcache.cpp:236">
    <![LOG[Unable to open Registry key Software\Microsoft\CCM. Return Code [80070002]. Client HTTPS state is Unknown.]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmutillib.cpp:372">
    <![LOG[The MP name retrieved is 'CC-VMM01.cancorp.com' with version '7804' and capabilities '<Capabilities SchemaVersion="1.0"><Property Name="SSLState" Value="0"/></Capabilities>']LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="lsadcache.cpp:334">
    <![LOG[MP 'CC-VMM01.cancorp.com' is compatible]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="lsadcache.cpp:339">
    <![LOG[Retrieved 1 MP records from AD for site 'CM1']LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="lsadcache.cpp:287">
    <![LOG[Retrived site version '5.00.7804.1000' from AD for site 'CM1']LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="siteinfo.cpp:575">
    <![LOG[SiteCode: CM1]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:2051">
    <![LOG[SiteVersion: 5.00.7804.1000]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:2052">
    <![LOG[Ccmsetup is being restarted due to an administrative action. Installation files will be reset and downloaded again.]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:2086">
    <![LOG[Only one MP CC-VMM01.cancorp.com is specified. Use it.]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:9745">
    <![LOG[Searching for DP locations from MP(s)...]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:10683">
    <![LOG[Current AD site of machine is NewYork]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="LocationServices" context="" type="1" thread="3428" file="lsad.cpp:746">
    <![LOG[Local Machine is joined to an AD domain]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="LocationServices" context="" type="0" thread="3428" file="lsad.cpp:698">
    <![LOG[Current AD forest name is cancorp.com, domain name is cancorp.com]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="LocationServices" context="" type="1" thread="3428" file="lsad.cpp:818">
    <![LOG[DhcpGetOriginalSubnetMask entry point is supported.]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="LocationServices" context="" type="0" thread="3428" file="ccmiputil.cpp:117">
    <![LOG[Begin checking Alternate Network Configuration]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="LocationServices" context="" type="0" thread="3428" file="ccmiputil.cpp:1095">
    <![LOG[Finished checking Alternate Network Configuration]LOG]!><time="19:35:08.023+240" date="08-29-2013" component="LocationServices" context="" type="0" thread="3428" file="ccmiputil.cpp:1172">
    <![LOG[Sending message body '<ContentLocationRequest SchemaVersion="1.00">
    <AssignedSite SiteCode="CM1"/>
    <ClientPackage/>
    <ClientLocationInfo LocationType="SMSPACKAGE" DistributeOnDemand="0" UseProtected="0" AllowCaching="0" BranchDPFlags="0" AllowHTTP="1" AllowSMB="0" AllowMulticast="0" UseInternetDP="0">
    <ADSite Name="NewYork"/>
    <Forest Name="cancorp.com"/>
    <Domain Name="cancorp.com"/>
    <IPAddresses>
    <IPAddress SubnetAddress="10.0.0.0" Address="10.0.0.30"/>
    </IPAddresses>
    </ClientLocationInfo>
    </ContentLocationRequest>
    ']LOG]!><time="19:35:08.038+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="siteinfo.cpp:96">
    <![LOG[Sending message header '<Msg SchemaVersion="1.1"><ID>{68E42063-EA4F-4E83-99B0-A5E6621925C3}</ID><SourceHost>CC-OH-DC1</SourceHost><TargetAddress>mp:[http]MP_LocationManager</TargetAddress><ReplyTo>direct:CC-OH-DC1:LS_ReplyLocations</ReplyTo><Priority>3</Priority><Timeout>600</Timeout><ReqVersion>5931</ReqVersion><TargetHost>CC-VMM01.cancorp.com</TargetHost><TargetEndpoint>MP_LocationManager</TargetEndpoint><ReplyMode>Sync</ReplyMode><Protocol>http</Protocol><SentTime>2013-08-29T23:35:08Z</SentTime><Body Type="ByteRange" Offset="0" Length="1078"/><Hooks><Hook3 Name="zlib-compress"/></Hooks><Payload Type="inline"/></Msg>']LOG]!><time="19:35:08.038+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="siteinfo.cpp:177">
    <![LOG[CCM_POST 'HTTP://CC-VMM01.cancorp.com/ccm_system/request']LOG]!><time="19:35:08.038+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="httphelper.cpp:807">
    <![LOG[GetDPLocations failed with error 0x80072ee7]LOG]!><time="19:35:08.038+240" date="08-29-2013" component="ccmsetup" context="" type="3" thread="3428" file="siteinfo.cpp:532">
    <![LOG[Failed to get DP locations as the expected version from MP 'CC-VMM01.cancorp.com'. Error 0x80072ee7]LOG]!><time="19:35:08.038+240" date="08-29-2013" component="ccmsetup" context="" type="2" thread="3428" file="ccmsetup.cpp:10926">
    <![LOG[A Fallback Status Point has not been specified. Message with STATEID='101' will not be sent.]LOG]!><time="19:35:08.038+240" date="08-29-2013" component="ccmsetup" context="" type="1" thread="3428" file="ccmsetup.cpp:9428">
    <![LOG[Next retry in 10 minute(s)...]LOG]!><time="19:35:08.038+240" date="08-29-2013" component="ccmsetup" context="" type="0" thread="3428" file="ccmsetup.cpp:8498">

    error 0x80072ee7 translates to The server name or address could not be resolved. I would also suggest to check whether the boundary is assigned to boundary group or not?
    Anoop C Nair -
    @anoopmannur :: MY Site:
     www.AnoopCNair.com ::
    FaceBook:
     ConfigMgr(SCCM) Page ::
    Linkedin:
     Linkedin<

  • LDAP Log not showing external search results

    Hi,
    I'm conducting LDAP searches with a filter into the LDAP directory of OD Master. Results are as expected and authentication is correct for an LDAP user. I can see the authentication in PasswordServer.
    My question is, why doesn't the LDAP search show up in the LDAP Log (slapd.log)? All I get in this log are new user accounts when created showing a note that home directory attribute is not provided. I am not using home directories as AFP and Web services for groups are all that the user has access to. The preponderance of entries in LDAP Log are for
    "bdbsubstringcandidates: (authAuthority) index_param failed (18)"
    which has been there since 10.5 and continues despite making an index entry for authAuthority in slapd_macosxserver.conf and restarting the LDAP service.
    Can someone enlighten me on the functions of LDAP Log and what should be visible there?
    Harry

    I just discovered that if the formulation output doesn't have any entries in the cross reference section, it will not appear in eqt search results. does this make sense? Is there some config that we can adjust to make them apper even without a cross reference?
    thanks,
    David

  • I have a question about Lightroom 5... I used it last night, I go to get on it today and its will not open. I have an error msg "Lightroom encountered an error when reading from its preview cache and needs to quit" Lightroom will attempt to fix the proble

    I have a question about Lightroom 5... I used it last night, I go to get on it today and its will not open. I have an error msg "Lightroom encountered an error when reading from its preview cache and needs to quit" Lightroom will attempt to fix the problem when reopened

    https://forums.adobe.com/message/6219922#6219922
    See if the issue in the thread above helps you to solve your problem.

  • Hi I have a question about shooting in Raw with my Canon EOS 6d. I'm in the process of learning photography and my goal was to start shooting in raw. I have Photoshop CS5. When I tried to edit my images in raw I received an error message stating, "The pho

    Hi I have a question about shooting in Raw with my Canon EOS 6d.
    I'm in the process of learning photography and my goal was to start shooting in raw.
    I have Photoshop CS5. When I tried to edit my images in raw I received an error message stating, "The photoshop camera raw plug-in did not recognize the format. If these files are from a camera, you may need to update your camera raw plug in."
    In researching the issue I read that to edit in raw you need a camera model requirement of at least 7.3 which only works with CS6. My version of CS5 is 6.0.0.205. Being new to all this I see that my options are to upgrade to CS6 or convert by using DNG converter and paying a monthly fee. Two things I know nothing about and don't know which is would be more beneficial.
    I'd appreciate any advise on which route to go and how upgrade and what it may cost. THANKS in advance!
    Heather

    In researching the issue I read that to edit in raw you need a camera model requirement of at least 7.3 which only works with CS6.
    That is correct. Your camera was first supported by Camera Raw 7.3. Camera Raw 7.3 will not work with CS5. You need CS6 or CC.
    Being new to all this I see that my options are to upgrade to CS6 or convert by using DNG converter and paying a monthly fee. Two things I know nothing about and don't know which is would be more beneficial.
    I'd appreciate any advise on which route to go and how upgrade and what it may cost.
    It all depends on your preferred workflow and your budget.
    Using the DNG converter is free. There is no monthly fee. You use the converter to convert all Raw files from the EOS 6D to DNGs then edit the DNGs in CS5. That's an extra step every time - every photo. Some people don't like the extra step. Others don't mind.
    Camera raw, DNG | Adobe Photoshop CC
    Or you can upgrade to CS6 (non-Cloud) and pay the upgrade fee
    Creative Suite 6
    Or join the Cloud and pay the monthly fee
    Or join the Photoshop Photography Program (US9.99/month) and get PS CC+LR

  • ERROR: Ldap Authentication failed for dap during installation of iAS 6.0 SP3

    I am attempting to install ias Enterprise Edition (6.0 SP3) on solaris 2.8 using typical in basesetup. I am trying to install new Directory server as I don't have an existing one.
    During the installation I got the following error.
    ERROR: Ldap Authentication failed for url ldap://hostname:389/o=NetScape Root user id admin (151: Unknown Error)
    Fatal Slapd did not add Directory server information to config Server.
    Warning slapd could'nt populate with ldif file Yes error code 151.
    ERROR:Failure installing iPlanet Directory Server.
    Do you want to continue: ( I entered yes )
    Configuring Administration Server Segmentation fault core dumped.
    Error: Failure installing Netscape Administration Server.
    Do you want to continue:( I responded with yes).
    And during the Extraction I got the following
    ERROR:mple_bind: Can't connect to the LDAP server - No route to host
    ERROR: Unable to connect to LDAP Directory Server
    Hostname: hostname
    Port: 389
    User: cn=Directory Manager
    Password: <password-for-cn=Directory Manager
    Please make sure this Directory Server is currently running.
    You might need to run 'stop-slapd' and then
    'start-slapd' in the Directory Server home directory, in order to restart
    LDAP. When finished, press ENTER to continue, or S to skip this step:
    Start registering Bootstrap EJB...
    javax.naming.NameNotFoundException
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled > Code)
    at javax.naming.NamingException.<init>(NamingException.java:114)
    at javax.naming.NameNotFoundException.<init>(NameNotFoundException.java: 48)
    at com.netscape.server.jndi.RootContext.resolveCtx(Unknown Source)
    "ldaperror" 76 lines, 2944 characters
    at com.netscape.server.jndi.RootContext.resolveCtx(Unknown Source)
    at com.netscape.server.jndi.RootContext.bind(Unknown Source)
    at com.netscape.server.jndi.RootContext.bind(Unknown Source)
    at javax.naming.InitialContext.bind(InitialContext.java:371)
    at com.netscape.server.deployment.EjbReg.deployToNaming(Unknown Source)
    at com.netscape.server.deployment.EjbReg.registerEjbJar(Compiled Code)
    at com.netscape.server.deployment.EjbReg.registerEjbJar(Compiled Code)
    at com.netscape.server.deployment.EjbReg.run(Compiled Code)
    at com.netscape.server.deployment.EjbReg.main(Unknown Source)
    Start registering iAS 60 Fortune Application...
    Start iPlanet Application Server
    Start iPlanet Application Server
    Start Web Server iPlanet-WebServer-Enterprise/6.0SP1 B08/20/200100:58
    warning: daemon is running as super-user
    [LS ls1] http://gedemo1.plateau.com, port 80 ready
    to accept requests
    startup: server started successfully.
    After completion of installation, I tried to start the console. But I got the following error;
    "Cant connect ot the admin server. The url is not correct or the server is not running.
    Finally,when I started the admintool(iASTT),it shows the iAS1
    was registered( marked with a red cross mark) and says "cant login. make sure the user
    name & passwdord are correct" when i click on it.
    Thanks in advance for any help
    Madhavi

    Hi,
    Make sure that the directory server is installed first. If it is running
    ok, then you can try adding an admin user, please check the following
    technote.
    http://knowledgebase.iplanet.com/ikb/kb/articles/4106.html
    regards
    Swami
    madhavi korupolu wrote:
    I am attempting to install ias Enterprise Edition (6.0 SP3) on
    solaris 2.8 using typical in basesetup. I am trying to install new
    Directory server as I don't have an existing one.
    During the installation I got the following error.
    ERROR: Ldap Authentication failed for url
    ldap://hostname:389/o=NetScape Root user id admin (151: Unknown
    Error)
    Fatal Slapd did not add Directory server information to config
    Server.
    Warning slapd could'nt populate with ldif file Yes error code 151.
    ERROR:Failure installing iPlanet Directory Server.
    Do you want to continue: ( I entered yes )
    Configuring Administration Server Segmentation fault core dumped.
    Error: Failure installing Netscape Administration Server.
    Do you want to continue:( I responded with yes).
    And during the Extraction I got the following
    ERROR:mple_bind: Can't connect to the LDAP server - No route to host
    ERROR: Unable to connect to LDAP Directory Server
    Hostname: hostname
    Port: 389
    User: cn=Directory Manager
    Password: <password-for-cn=Directory Manager
    Please make sure this Directory Server is currently running.
    You might need to run 'stop-slapd' and then
    'start-slapd' in the Directory Server home directory, in order to
    restart
    LDAP. When finished, press ENTER to continue, or S to skip this
    step:
    Start registering Bootstrap EJB...
    javax.naming.NameNotFoundException
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled > Code)
    at javax.naming.NamingException.<init>(NamingException.java:114)
    at
    javax.naming.NameNotFoundException.<init>(NameNotFoundException.java:
    48)
    at com.netscape.server.jndi.RootContext.resolveCtx(Unknown Source)
    "ldaperror" 76 lines, 2944 characters
    at com.netscape.server.jndi.RootContext.resolveCtx(Unknown Source)
    at com.netscape.server.jndi.RootContext.bind(Unknown Source)
    at com.netscape.server.jndi.RootContext.bind(Unknown Source)
    at javax.naming.InitialContext.bind(InitialContext.java:371)
    at com.netscape.server.deployment.EjbReg.deployToNaming(Unknown
    Source)
    at com.netscape.server.deployment.EjbReg.registerEjbJar(Compiled
    Code)
    at com.netscape.server.deployment.EjbReg.registerEjbJar(Compiled
    Code)
    at com.netscape.server.deployment.EjbReg.run(Compiled Code)
    at com.netscape.server.deployment.EjbReg.main(Unknown Source)
    Start registering iAS 60 Fortune Application...
    Start iPlanet Application Server
    Start iPlanet Application Server
    Start Web Server iPlanet-WebServer-Enterprise/6.0SP1 B08/20/200100:58
    warning: daemon is running as super-user
    [LS ls1] http://gedemo1.plateau.com, port 80 ready
    to accept requests
    startup: server started successfully.
    After completion of installation, I tried to start the console. But I
    got the following error;
    "Cant connect ot the admin server. The url is not correct or the
    server is not running.
    Finally,when I started the admintool(iASTT),it shows the iAS1
    was registered( marked with a red cross mark) and says "cant login.
    make sure the user
    name & passwdord are correct" when i click on it.
    Thanks in advance for any help
    Madhavi
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • CC app manager update  failed with error code 50 after reaching about 35%

    Trying to update the CC app manager. The update is always very slow  (I have ATT DSL, lowest level) and I usually terminate it after an hour or so. Today I let it run and it failed with error code 50 after reaching about 35%. Any ideas?

    Update to my original post. I read through some of the suggestions that I found in other threads for fixing this problem, and it appears that this has been an ongoing issue. Numerous fixes have been suggested, some very convoluted, difficult, and involved, including those that came from the customer support folks.  I passed on those as this should be something simple. How Adobe manages to let updating of their own software turn into an ongoing problem is beyond me and sort of defeats the purpose of subscribing. I then noticed that a simple fix had been suggested a few times, so I tried that.
    The user suggested fix that worked for me was:
    1) Restarted computer (Asus Windows 7 i3 machine for me) in Safe Mode with Networking. Logged into my separate Admin account just in case.
    2) Started the creative cloud desktop app.
    3) The app said it needed to be updated. I hit the update button.
    4) Update started and proceeded slowly as it had in many previous failed attempts (I have ATT DSL at the slowest level, but it is not dial-up). Within about 30 min, the update succeeded.
    5) Restarted computer in normal mode.
    6) The creative cloud desktop app now did not say it needs to be updated, and I can update my other apps normally. Have not updated LR or PS yet, but plan to try. If that fails, I may try doing it in the Safe Mode with Networking.
    So, that was relatively painless and much much simpler than many of the other suggestions I saw. Do not know if it will work for everyone, but I wanted to post the fix that worked for me. Thank you very much to the 2 or 3 users who had suggested this fix earlier (sorry, I did not write down your IDs, but the threads can be found by searching for creative cloud desktop update fail error code 50). Hope this saves some people a lot of time.

  • Answer to question about "Error Occurring when convertion is tried for PDF to Word Document"

    There are about ten questions about the "Error Occurring" when  using Abode Reader XLto convert a PDF to a Word Doc, but no one has the answer? It has something to do with "signing in  the wrong address". I have been working on this three days Now! Soimeone has the answer? Cataloochee

    You must be kidding to say, "Adobe doesn't convert any version of Adobe Reader."'  I must be in another world! When i move an Adobe Reader file pdf that goes to a wIndow that the top line says,'' Adobe reader X1 1001 Early Dutch History. pdf ". Then i click on the far left yellow marked icon that is used to move 1001 Early Dutch History.pdf to thye far right into a gray colored slot that reads "1001 Early Dutch History.pdf'. Under the file above  or down below, the selected File for conversionis, a selection gray slot that ask if you want to convert this file(pdf) to a .docx.,.doc, tex. or Excell. After I make the selection and click onto Convert, a message comes into view where the word convert was that reads "An Error Occurred wilth Signing In  OK" Even the use of another pdf file with a complete different address produces the same message. There are eight chapters in Dutch that I need to convert to word document by tommorrow or the class i teach "the Origin of Golf" will have to listen in Dutch and I can't speak Dutch. Cataloochee

  • Question about Java Errors

    I have some questions about some java errors
    1. what kind of errors are contained in Error class?
    2.does this class contain only runtime errors?
    3. if the question number 2 is positive, what about InstantiationError which is a compile error and is a subclass of Error.
    4.When our program is out of memory, which processes are done for an error to be produced. is the error actually from OS or VM?

    I have some questions about some java errors
    1. what kind of errors are contained in Error class?An Error is a subclass of Throwable that indicates serious problems that a reasonable application should not try to catch.
    2.does this class contain only runtime errors?No
    3. if the question number 2 is positive, what about
    InstantiationError which is a compile error and is a
    subclass of Error.
    4.When our program is out of memory, which processes
    are done for an error to be produced. is the error
    actually from OS or VM?Various - both, depending on where the error occurred.

Maybe you are looking for