Event log 6482 Sharepoint 2010

Hello,
I'm seeing lot of errors on my sharepoint servers with the event ID 6482.
Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (6f9b83c0-9cb2-4c3a-85de-2f35b9fca995).
Reason: The specified user or domain group was not found.
Technical Support Details:
Microsoft.SharePoint.SPException: The specified user or domain group was not found. ---> System.Security.Principal.IdentityNotMappedException: Some or all identity references could not be translated.
at System.Security.Principal.NTAccount.Translate(IdentityReferenceCollection sourceAccounts, Type targetType, Boolean forceSuccess)
at System.Security.Principal.NTAccount.Translate(Type targetType)
at Microsoft.SharePoint.Administration.Claims.SPClaimProviderManager.GetProviderUserKeyClaim(IClaimsIdentity claimsIdentity, SPClaim loginClaim)
--- End of inner exception stack trace ---
at Microsoft.Office.Server.Search.Administration.SearchServiceInstance.Synchronize()
at Microsoft.Office.Server.Administration.ApplicationServerJob.ProvisionLocalSharedServiceInstances(Boolean isAdministrationServiceJob
Also in Central admin, when I go to, security --> General Security --> Configure service accounts, I'm getting the below error,
Some or all identity references could not be translated.
I believe both these issues are related. So I have,
1. performed iisreset
2. rebooted the server
3. refresh the configuration cache
didnt help. Does any one please help me with this issue ASAP?
Appreciate your help!
Thanks,

Hi,
Did you change password for the search service account or any managed accounts?
I recommend to follow this link to check the managed accounts to see if the issue still occurs.
http://sharepoint-community.net/profiles/blogs/error-when-attempting-to-access-configure-service-accounts
Please also re-create the Search Service Application and then compare the results.
Thanks,
Victoria
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Victoria Xia
TechNet Community Support

Similar Messages

  • Conflict between Client object model and Item Updated Event Receiver in sharepoint 2010

    Hello All,
    As per my requirement I have a two custom list.
    Agent Details
    Port Name
    Agent Details contains Agent code, Port Name,  email, address and phone of Agent. Its possible that one Agent Code is connected with multiple Port Name.
    Basically what I am doing is I am getting port name connected with Agent code, using jquery and bind those values with check box(using javascript created dynamically) and bind all with Div tag.
    Now when my custom edit form of Agent list open up it shows me different port name binding with checkbox group.
    when user select the check box and click confirm button my clicent object model script will run and add this selected value into Port Name list. 
    After confirm one more button named Save will enable asking user to edit the email, phone or address value and when I click on save my Item updated event fires which update the values of the selected port name(These port name I am getting from port
    name list) to Agent Details custom list.
    Now when I am trying to update the values my event receiver fires or some times it got stuck(not firing). So could you please help me the possible alternative for this requirements.
    Can we user the Ecma Script(Client object model to preserve the value of selectec port) and Item updated event receiver on the same time?
    Is anything am doing wrong then please guide me.

    Hi,
    As I understand, when you updated values in the agent details list the Item updated event receiver got stuck sometimes.
    The item update event receiver will fire after the item has been saved, and the client object model script or the Ecma Script runs before the item is saved, so there is no conflict between the client object model script and item update event receiver.
    You could find out the reason about the item update event receiver gets stuck by debugging the event receiver.
    When you want to debug your event receivers, you have to attach to OWSTIMER.EXE and wait till they are executed. You can control this behavior using the Synchronization attribute. Also, if you’re looking for an easy way to debug an event receiver without
    having to manually attach a debugger to your code, you can use the System.Diagnostics.Debugger.Launch() method.
    The articles below are about how to debug in the event receiver in SharePoint 2010.
    http://sharepoint-kings.blogspot.jp/2013/02/debugging-event-receivers-in-sharepoint.html
    http://chakkaradeep.com/index.php/event-receivers-in-sharepoint-2010/
    http://sharesaint.com/?p=77
    Best regards,
    Sara Fan
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Getting Error In Item Added Event In Event Receiver in SharePoint 2010

    Hi Guys,
    I have written Event Receiver in SharePoint 2010 On ItemAdded event of Document Library. Wants to increment a col value by reading maximum value first. I wrote below code but sometime it works correctly but some time I got below error: Document Set
    enabled on this document library and weh we added any document in any document set then this event occurred. I mentioned Code block and Error description both.
    Please see and suggest right solution.
    Code:
    public override void ItemAdded(SPItemEventProperties properties)
                    base.ItemAdded(properties);
                    SPListItem _currentItem = properties.ListItem;
                    string _QUERY = @"<Where><Eq><FieldRef Name='DocumentId'/><Value Type='Text'>21</Value></Eq></Where><OrderBy><FieldRef
    Name='RevisionReference' Ascending='False' /></OrderBy><ViewFields><FieldRef Name='RevisionReference' /></ViewFields><QueryOptions><Folder>DocumentLIBB/</Folder></QueryOptions>";
                    int maxID = 0;
                    string revisionreferencee = string.Empty;
                    using (SPWeb web = properties.OpenWeb())
                        SPList list = web.Lists["DocumentLIBB"];
                        SPQuery query = new SPQuery();
                        query.ViewAttributes = "Scope=\"Recursive\"";
                        query.Query = (_QUERY);
                        SPListItemCollection results = list.GetItems(query);
                     if (results.Count > 0)
                            SPListItem item = results[0];
                            revisionreferencee = item["RevisionReference"].ToString();
                            bool result = Int32.TryParse(revisionreferencee, out maxID);
                            _currentItem["RevisionReference"] = maxID + 1;
                            _currentItem["DocumentId"] = item["DocumentId"].ToString();
                    properties.ListItem.File.Update();
                    _currentItem.Update();
    Error Desc:
    <nativehr>0x81020015</nativehr><nativestack></nativestack>The file EKENg LIBB/QA_DOC_044/05-22 Emirates Engineering Occurrence_Error Investigation - MEDA Process - 27 AUG 2009-921.doc has been modified by SHAREPOINT\system
    on 27 Aug 2012 12:10:13 +0400.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Runtime.InteropServices.COMException: <nativehr>0x81020015</nativehr><nativestack></nativestack>The file EKENg LIBB/QA_DOC_044/05-22 Emirates Engineering Occurrence_Error Investigation - MEDA
    Process - 27 AUG 2009-921.doc has been modified by SHAREPOINT\system on 27 Aug 2012 12:10:13 +0400.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

    Making the event synchronous (rather than the default) eliminates this error. If such a change suits your requirements you should consider it. You just have to tweak the elements.xml in your feature receiver project;
    http://blogs.msdn.com/b/unsharepoint/archive/2010/11/10/sharepoint-event-receivers-making-asynchronous-event-synchronous-to-avoid-save-conflict-error.aspx
    w: http://www.the-north.com/sharepoint | t: @JMcAllisterCH | c: http://www.b-i.com

  • Exchange Server 2010 public folder - Events show in SharePoint 2010 Calendar

    I want to fetch items to SharePoint 2010 Calendar from Exchange Server 2010 Public Folder Calendar called Event. How can I achieve this ?

    May be you can directly fetch whole public folder in sharepoint server
    http://www.amrein.com/apps/page.asp?Q=5778
    If this helped you resolve your issue, please mark it Answered

  • Make coded ui tests wait for onfocus event during playback - SharePoint 2010 InfoPath form

    I recorded a coded UI test of a SharePoint 2010 site hosting an InfoPath form. The combobox on the infopath form loads the items on onfocus event. It seems that the  coded ui test do not wait for the onfocus event to complete and tries to select the
    item and fails with the error
    The web page could not be accessed. If the page is refreshing, please wait until the page refreshes and then perform actions on it. 
    how can i make the Test to wait till it completes the onfocus event and then select the item.
    one approach i applied was  
    bool bReady = false;while (!bReady)
    try
    uID4ComboBox1.WaitForControlReady();
    // Select 'RMA2' in 'D4' combo box
    uID4ComboBox1.SelectedItem =this.CreateProposalParams.UID18ComboBox1SelectedItem;
    bReady =true;
    catch
    Playback.Wait(1000);
    But i have a lot of combo boxes which makes this solution difficult to implement.
    Thanks in advance.

  • Were is the information from LinkID 142689, 142685, 163445 refered in application log by Sharepoint 2010

    In SharePoint Beta, you may get errors in the event log. The error points to information linked that do not exist or does not resolve.
    Particular examples are:
    http://go.microsoft.com/fwlink/?LinkID=142689
    http://go.microsoft.com/fwlink/?LinkID=142685
    http://go.microsoft.com/fwlink/?LinkID=163445

    as i know, the help-files are not written yet. so you must wait for the RTM date to get access to the complete help files.
    Hokay folks, it's been 5 years... still no documentation.

  • Handling ItemAdding Event in event receiver in sharepoint 2010.

    public override void ItemAdding(SPItemEventProperties properties)
    base.ItemAdding(properties);
    SPItem itemBeingAdded = properties.ListItem;
    var startTime = itemBeingAdded["Start Time"]; // does not give any value
    // Some code goes here.
    I am firing this event while adding an item in a calender list. It is getting fired. No problem. But I am not getting any value from properties.
    In the above code startTime gives
    me nothing. Actually, I want to access the column field of the item (properties in
    my case) is being added.
     Problem is in the ItemAdding method.
    ItemUpdating is working fine.
    public override void ItemUpdating(SPItemEventProperties properties)
    base.ItemUpdating(properties);
    SPItem itemBeingAdded = properties.ListItem;
    var startTime = itemBeingAdded["Start Time"]; //always gives me value
    How can I do it in ItemAdding method. 

    Use AfterProperties instead.
    http://msdn.microsoft.com/en-us/library/office/microsoft.sharepoint.spitemeventproperties.afterproperties(v=office.15).aspx
    http://srisharepointdevelopment.blogspot.com/2013/06/beforeproperties-and-afterproperties-in.html
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • Sharepoint 2010 integration with yammer.

    Hello,
    I am trying to getting Yammer feeds into share point page by using Content Editor web part but i am getting below error. can anyone help on this
    "The page or app using unsupported version of yammer platform"

    Hi,
    According to your description, my understanding is that when you add the Yammer feeds app to SharePoint page, it occurs "The
    page or app using unsupported version of yammer platform" error.
    This  maybe related to the Yammer API version has been updated, the solution is to update the Yammer app in site contents.
    Here is a similiar thread for your reference:
    Yammer App for SharePoint – unsupported version
    Here is a detailed useful article for your reference:
    "This page or app is using an unsupported version of the Yammer platform" error message when you use the Yammer App for SharePoint
    If the issue still exists, I suggest you can check the ULS log error message for more detailed information. By default, the ULS log for SharePoint 2010 is located at the path:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Yammer Integration with SharePoint 2010

    Hello Team
    We integrated Yammer with SharePoint 2010 and everything were working properly, since we updated embeded code with latest yammer its not working properly-
    http://success.yammer.com/integrations/yammer-embed/ 
    Following issues are occured-
    • In the new yammer feed, I couldn’t find a way to add an attachment or photo to the post. This is a vital component to the functionality of the feed
    • In the previous version the feed also had tabbed areas to show different Yammer Areas: ‘My Feed’, ‘Private Messages’, ‘Notifications’, and ‘More >’. Is there any way to keep this functionality.
    We also wanted to integrate SSO with our FBA SharePoint 2010 site. But could not found any good article so far. Is there any option by which we can do SSO and all above functionlaity. 
    Thanks Ranveer Katiyar

    Hi,
    According to your description, my understanding is that when you add the Yammer feeds app to SharePoint page, it occurs "The
    page or app using unsupported version of yammer platform" error.
    This  maybe related to the Yammer API version has been updated, the solution is to update the Yammer app in site contents.
    Here is a similiar thread for your reference:
    Yammer App for SharePoint – unsupported version
    Here is a detailed useful article for your reference:
    "This page or app is using an unsupported version of the Yammer platform" error message when you use the Yammer App for SharePoint
    If the issue still exists, I suggest you can check the ULS log error message for more detailed information. By default, the ULS log for SharePoint 2010 is located at the path:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Thanks
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Single Signon from SharePoint 2010 to SharePoint 2013 application

    Hello all,
    We have two SharePoint applications,
    1. SharePoint 2010 application which uses Classic mode of authentication
    2. SharePoint 2013 application which uses claim based authentication + Form Based Authentication.
    We have provided a link for SharePoint 2013 application in SharePoint 2010 application.
    Once user logs into SharePoint 2010 application and clicks on the link of SharePoint 2013 application, user sholuld not be prompted for the credentials again and should be able to login to landing page.
    How can we go about this, need an help. Any help is appreciated.
    Thanks & Regards,
    Sharath
    Sharath Bharadwaj

    Is this an intranet application, in which you can add the sites to the trusted internet zone or intranet zone to allow your machine to automatically pass credentials.
    That of course won't make the FBA work automatically, that isn't possible as far as i know.

  • Sharepoint 2010 Configuration failed

    Hi,
    Anyone please help. I'm new to sharepoint 
    After installing the sharepoint in my machine(OS Windows7 ) It showing the Configuration failed in the Share point Product Configuration Wizard.
    Throws the below log message:
    Begin trace logging for SharePoint 2010 Products Configuration Wizard.  Version 14.0.6009.1000
    03/11/2015 19:12:30  1  INF  Entering function PsconfigUserInterfaceMain.Main
    03/11/2015 19:12:30  1  INF    Entering function Common.SetCurrentThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF      Entering function Common.SetThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF        Current thread culture is English (United States), current thread ui culture is English (United States), installed culture is English (United States)
    03/11/2015 19:12:30  1  INF      Leaving function Common.SetThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF      The current ui culture English (United States) is NOT right to left
    03/11/2015 19:12:30  1  INF    Leaving function Common.SetCurrentThreadCultureToInstalledCulture
    03/11/2015 19:12:30  1  INF    Creating the psconfig application context
    03/11/2015 19:12:30  1  INF    Entering function PsconfigApplicationContext.PsconfigApplicationContext
    03/11/2015 19:12:30  1  INF      Entering function UserInterface.UserInterface
    03/11/2015 19:12:30  1  INF      Leaving function UserInterface.UserInterface
    03/11/2015 19:12:30  1  INF      Entering function TaskDriver.TaskDriver
    03/11/2015 19:12:30  1  INF        Entering function TaskDriver.BuildCommandCollection
    03/11/2015 19:12:30  1  INF          Entering function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Leaving function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Entering function CommandCollection.CommandCollection
    03/11/2015 19:12:30  1  INF          Leaving function CommandCollection.CommandCollection
    03/11/2015 19:12:30  1  INF          Entering function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Leaving function CommandCollectionBase.CommandCollectionBase
    03/11/2015 19:12:30  1  INF          Entering function Command.Command
    and etc. repeats the above message.
    Please help me to solve this issue.
    Best regards,
    Renuka.V

    For installing SharePoint 2010 at Windows 7 , You should change SP installer config file to allow client install -
    <Setting Id="AllowWindowsClientInstall" Value="True"/>
    Please follow steps described in these urls,
    http://www.codeproject.com/Tips/373724/SharePoint-Installation-on-Windows
    http://www.codeproject.com/Articles/44210/Installing-SharePoint-Server-on-Windows-x
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Since applying Feb 2013 Sharepoint 2010 CUs - Critical event log entries for Blob cache and missing images

    Hi,
    Since applying the February 2013 SharePoint 2010 updates, we are getting lots of entries in our event logs along the following:
    Content Management     Publishing Cache         
    5538     Critical 
    An error occurred in the blob cache.  The exception message was 'The system cannot find the file specified. (Exception from HRESULT: 0x80070002)’
    In pretty much all of these cases the image/ file in question that is reported in the ULS logs as missing is not actually in the collaboration site, master page / html etc so the fix needs to go back to the site owner to make the correction to avoid
    the 404 (if they make it!). This has only started happening, I believe since feb 2013 sp2010 cumulative updates updates
    I didn’t see this mentioned as a change / in the Fix list of the February updates. i.e. it flags up a critical error in our event logs. So with a lot of sites and a lot of missing images your event log can quickly fill up.
    Obviously you can suppress them in the monitoring -> web content management ->publishing cache = none & none which is not ideal.
    So my question is... are others seeing this and was a change made by Microsoft to flag a 404 missing image / file up a critical error in event log when blob cache is enabled?
    If i log this with MS they will just say, you need to fix it up the missing files in the site but would be nice to know this had changed prior! I also deleted and recreated the blob cache and this made no diffference
    thanks
    Brad

    I'm facing the same error on our SharePoint 2013 farm. We are on Aug 2013 CU and if the Dec CU (which is supposed to be the latest) doesn't solve it then what else could be done.
    Some users started getting the message "Server is busy now try again later" with a corelation id. I looked up ULS with that corelation id and found these two errors in addition to hundreds of "Micro Trace Tags (none)" and "forced
    due to logging gap":
    "GetFileFromUrl: FileNotFoundException when attempting get file Url /favicon.ico The system cannot find the file specified. (Exception from HRESULT: 0x80070002)"
    "Error in blob cache. System.IO.FileNotFoundException: The system cannot find the file specified. (Exception from HRESULT: 0x80070002)"
    "Unable to cache URL /FAVICON.ICO.  File was not found" 
    Looks like this is a bug and MS hasn't fixed it in Dec CU..
    &quot;The opinions expressed here represent my own and not those of anybody else&quot;

  • SharePoint 2010 web analytics not working - not all web requests hitting the logging database

    Hi there, I have 2 windows 2008 web front end servers, 1 windows 2008 application server and 2 clustered windows 2008, SQL Server 2008 SP2 clustered servers in my farm. 
    I am having trouble getting Web Analytics configured and googled for days and followed everything I have found but still no luck.  The problem is that the logging database is only logging requests to Central admin URL only but if I hit any other
    site in my farm it doesn't log in the database.  Hence why I am not getting any reports in the front end. 
    These are also missing from the ULS logs too.  Only central admin entries in the logs.
    Anyone seen this before?
    Thanks

    Hi CharlieBoy,
    Please enable the verbose ULS log for category "Web Analytics Services category", then see if there are more related ULS log message appearing (may need to wait a day).
    Also check the following 2 articles about troubleshooting the web analytics issue, which should be helpful.
    http://blogs.msdn.com/b/sharepoint_strategery/archive/2012/03/16/troubleshooting-sharepoint-2010-web-analytics.aspx
    http://blogs.technet.com/b/manharsharma/archive/2012/10/13/sharepoint-2010-web-analytics-troubleshooting-reporting-db.aspx
    Thanks
    Daniel Yang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Monitoring Log in SharePoint Foundation 2010

    Hello,
    I´m using SharePoint Foundation 2010 and I want to configure Monitoring log, because we have had any problems because the user changed the permissions in other sites or deleted Users.
    So I want to know who  makes this action in Monitoring Log SharePoint 2010.
    Regards.

    Take a look at this 3rd party solution:
    https://auditlogsp.codeplex.com/
    The Site Collection Administrator can modify audit settings, but audit settings aren't available OOTB in Foundation.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • User profile sync Sharepoint 2010 photos thumbnail with AD and Lync 2010 - error on Full Synchronization- get events 8311, 6110, 6803 FIMSynchronization Service

    User profile sync Sharepoint 2010 photos thumbnail with AD and Lync 2010 - error on Full Synchronization- get events 8311, 6110, 6803 FIMSynchronization Service
    We're trying to set up sync between Sharepoint and AD so photos are displayed in Lync.
    The certificate referenced in 8311 is not the sharepoint root cert, its the UCC cert with our FQDN of the site. sharepoint.domain.com
    Is this causing the problem with the sync and holding up the photos?
    I have tried several proposed fixes, it hasn't helped.
    tried this as well:
    http://blogs.technet.com/b/praveenh/archive/2011/05/11/event-id-8311-certificate-validation-errors-in-mss-2010.aspx
    Josh

    Try this fix and see if its sync the photos:
    http://blogs.technet.com/b/steve_chen/archive/2010/09/20/user-profile-sync-sharepoint-2010.aspx#Profile Picture Property
    http://blogs.technet.com/b/steve_chen/archive/2010/09/20/user-profile-sync-sharepoint-2010.aspx#SyncPicAD2SPS
    Update-SPProfilePhotoStore -CreateThumbnailsForImportedPhotos 1 -MySiteHostLocation <mySiteHostURL>
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

Maybe you are looking for

  • ITunes 8003 error with Windows XP too

    On Windows XP Pro I just downloaded 11 of 12 tracks. For the twelfth a 8003 error occured, with the message that the download was stopped because the network was interrupted. But the network is fine! I tried signing out/signing on and checking for pu

  • Captivate File Created with Trial Will Not Open in Paid for Captivate

    I have a file created by Trial version of captivate. It was created in a different computer. Now, I have to make some modification in the file. However, when I tried to open it with Captivate 5.5, I got the error shown below. I am not able to use the

  • How to do internationalization with Sun Java Studio Creator?

    Hi everybody, the Sun Java Studio Creator seems to be a great peace of software ;-) Currently I'm trying to design some forms for a hello-world-test-project. My question now is: how can I realize internationalization with property-bundles? I already

  • Batch Input and Select Option

    Hello, Please, i have one issue. I want to do one Batch Input for one standard transaction. In this transaction, exist one select-option and i fill more values. I generate the SDHB but i have problema with the select-option. How i can simulate enter

  • Exit while loading of Interaction record in ICWEB

    Hi Experts, Our requirement is to update Interaction record activity clipboard before it loads for display to user. Any idea what are the exits called when loading Interactiobn record. Thanks in Advance Ripal