The underlying provider failed on Commit.

Hello,
I am having a problem with commit.
Here is the code where program stuck.
using (var transaction = DataEngine.Context.Database.BeginTransaction(IsolationLevel.ReadCommitted))
try
var createResult = DataEngine.Context.Customer_Modify(BusinessID, cutomerName,usermodified);
Logger.LogTrace(createResult.ToString());
await DataEngine.Context.SaveChangesAsync();
transaction.Commit();
catch (Exception ex)
Logger.LogTrace(ex.Message);
// Attempt a rollback
try
transaction.Rollback();
catch (Exception nex)
Logger.LogTrace(nex.Message);
throw;
throw;
After running the above code, I check the variable query and found an exception
The underlying provider failed on Open.
I've checked:
Connection between server and computer is normal
I can login to the database with username and password 
I have checked the security settings in database (SQL Server) that permission has been granted .
I can able to 'Insert' records but not 'Update'
Why does this exception happen? I'm using .net 4.5
Thanks

Hi SamKri,
You could try to enabling "Allow Remote Clients" in DTC config.
You could open the DTC config by running dcomcnfg, Component Services -> Computers -> My Computer -> Distributed Transaction Coordinator -> Right click to  Local DTC -> Security.
If this is still not working, the issue may be caused by the connectionString, you could share the connectionString with us, we could help you better.
Regards,
Youjun Tang
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Intermittent connection issues: The underlying provider failed on Open

    We are experiencing this error from Azure Compute to SQL Azure intermittently over the last couple of days (SE Asia).
    We have several applications in the same configurations and many of them exhibit this error for a period of time (some around 15 minutes).
    I checked the Azure status board and there is one warning about Networking but it is informational only. The Azure portal shows 0 failed connections on the database monitor and the connection numbers aren't massive (highest is 240).
    Is there another issue going on that's not on the status board (or is that networking issue worse than specified)?
    The application hasn't experienced this issue until the last couple of days so we don't believe it's a bug.
    Details:
    A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider:
    TCP Provider, error: 0 - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)

    Hello,
    SQL Database connection can fail for various reasons – a malformed query, network issues, and so on. Some errors are transient or intermittent. The general best practices to prevent connection-losses is to re-establish the connection and then re-execute
    the failed commands or the query. For example,  You can try to apply retry logic for SQL Server  in your application.
    Reference:
    Retry Logic for Transient Failures in Windows Azure SQL Database
    Windows Azure SQL Database Connection Management
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Getting Error: The underlying provider failed on Open

    Hi there,
    I am getting above error while executing below code, though it is working fine on another machine. please help me out
    log.ActionId = (from x in context.ActionLookUps
    where x.ActionDescription == actionMessage
    select x).First().ActionId;
    context.UserLogs.Add(log);

    Hi,
    This exception gets thrown when something goes wrong connecting to the database. The inner exception should have details about why the connection failed if you check that then it should tell you what is happening.
    Since this is working on other machines it is likely something to do with the permissions of the user executing the code or something to do with that specific machine communicating with the database.
    If you let us know what the inner exception is then we can probably provide more info.
    We are seeing a lot of great Entity Framework questions (and answers) from the community on Stack Overflow. As a result, our team is going to spend more time reading and answering questions posted on Stack Overflow. We would encourage you to post questions
    on Stack Overflow using the entity-framework tag. We will also continue to monitor the Entity Framework forum.

  • The underlying provider failed on open

    Hi all,
    I use the following Save method for the context so that I first insert the entities so that I have their identity column, then save the audit log for them.
    public int Save()
    int recordsUpdated = 0;
    List<History> historyList = new List<History>();
    this.DetectChanges();
    IEnumerable<ObjectStateEntry> list = this.ObjectStateManager.GetObjectStateEntries(EntityState.Added | EntityState.Deleted | EntityState.Modified);
    foreach (var ent in list)
    if (!ent.IsRelationship && ent.Entity != null && !(ent.Entity is History))
    historyList.Add(new History(ent));
    DbConnection conn = ((EntityConnection)this.Connection).StoreConnection;
    ConnectionState initialState = conn.State;
    try
    //Open connection if not already open
    if (initialState != ConnectionState.Open)
    conn.Open();
    using (var scope = new TransactionScope())
    recordsUpdated = this.SaveChanges();
    if (historyList.Count > 0)
    foreach (var history in historyList)
    history.SetDetails();
    this.Histories.AddObject(history);
    this.SaveChanges();
    catch (Exception ex)
    System.Diagnostics.Debug.WriteLine(ex);
    finally
    //Only close connection if not initially open
    if (initialState != ConnectionState.Open)
    conn.Close();
    return recordsUpdated;
    The first thing to notice is that the connection is closed that's why I'm opening it.
    First problem:
    When updating an existing record and I reach the second call to SaveChanges, I get the above exception.
    Second problem:
    When inserting an new record I get the following exception:
    "An error occurred while updating the entries. See the inner exception for details."}
        [System.Data.UpdateException]: {"An error occurred while updating the entries. See the inner exception for details."}
        Data: {System.Collections.ListDictionaryInternal}
        HelpLink: null
        HResult: -2146233087
        InnerException: {"The member with identity '' does not exist in the metadata collection.\r\nParameter name: identity"}
        Message: "An error occurred while updating the entries. See the inner exception for details."
        Source: "System.Data.Entity"
        StackTrace: "   at System.Data.Mapping.Update.Internal.UpdateTranslator.Update(IEntityStateManager stateManager, IEntityAdapter adapter)\r\n   at System.Data.EntityClient.EntityAdapter.Update(IEntityStateManager entityCache)\r\n  
    at System.Data.Objects.ObjectContext.SaveChanges(SaveOptions options)\r\n   at System.Data.Objects.ObjectContext.SaveChanges()\r\n   at AboServer.AboSystem5DB.Save() in C:\\Development\\dotNET\\ABOSystem5\\Server\\Common\\AboSystem5DB.cs:line
    136"
        TargetSite: {Int32 Update(System.Data.IEntityStateManager, System.Data.IEntityAdapter)}
    Need help!!

    Couple of things:
    1) When using Entity Framework, you do not need to explicitly open the connection.  This statement should do it for you.  Not only does it open the connection it also closes it when going out of scope of the USING verb.
    using (var scope = new TransactionScope())
    2) This part of the stack trace---> System.Data.Mapping.Update.Internal.UpdateTranslator.Update
        Tells me that something is wrong with Mapping.  I personally do not manually attempt to map anything when using EF because it appeared to be complex and required a lot of study of which I didn't have the time.  So...I always
    allow EF to create the tables and mappings and it works everytime.
    I'd suggest removing the explicit open code and fall back to the Using statement only.  I'd also suggest recreating your table model using EF's wizard which forces you to do the connection string and then to pick the proper tables.  It knows how
    to map everything and does a great job of it.
    JP Cowboy Coders Unite!

  • Underlying provider failed to open

    Hi all,
    I published my web site to windows azure cloud service and successfully opened.
    But my problem after about 8 hours without any request to my site I got an exception (The Underlying provider failed to open)
    Thanks,
    Khalil 

    Hi,
    From my experience, this error may be caused by incorrect connection string, I suggest you check it, then try to redeploy to cloud service again.
    In addition, Azure service dashboard report a service interrupt on SQL Azure, please try later when this service run as normal. see at:
    http://azure.microsoft.com/en-us/support/service-dashboard/
    Best Regards
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found.

    Hello Everyone,
    We are getting an error while trying to create an Universe via Microsoft -> MS Analysis Services 2014 -> OLEDB for OLAP Provider under Connection in UDT -"DBD: Error while trying to load the transport provider for odbc. Failed to load the library. System error: The specified module could not be found."  We have installed BI 4.1 SP05 in our system. As per earlier posts in scn in BO XI 3.x this issue used to be for improper installation of Integration KIT but in our scenarion Integration KIT is within the BO 4.1 package so no seperate installation is required. Moreover I have checked whether all the driver is present under file: "C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\dataAccess\connectionServer\drivers" and seems everything is fine. But still I am getting this error. One important point is we could use IDT because in IDT still we don't have option to connect with 'Microsoft Analysis Services - 2014 (XMLA)' as we are using Microsoft Analysis Services 2014 version.
    Kindly help if anyone has faced the same problem with SAP BO 4.1.
    Thanks and Best Regards,
    Ghosal

    Hello Everybody,
    The problem is solved now after installing "OLEDB drivers from SQL Server 2012 Feature Pack". We had OLEDB drivers that comes directly from SQL Server but that did not worked out in our case.
    Thanks for your support.
    Best Regards,
    Ghosal

  • Link v1.1.1 sync error: Failed to commit changes to the device

    Hi,
    I've been trying to sync my Q10 with Outlook for many times now without much success.
    PC OS: Windows 7 Enterprise 64bit
    Q10 OS: 10.1.0.2309
    Outlook 2010 32 bit
    BB Link: 1.1.1.26
    Steps:
    Q10 completely clear - no contacts, no calendar entries
    Start BB Link
    Connect Q10 via USB cable
    Click Q10 tab, Settings
    Synchronization - Contacts & Calendar - Configure
    Select Outlook account
    Click Sync Contact & Calendar
    (after couple of minutes) "Sync unsuccessful" is shown, click on it
    Error message reads "Failed to commit changes to the device"
    Click PC tab
    Click Create Log
    in SyncLog.html, the error message near the end of the file reads
    11:47:36.369  CBBTransBase::Close - Failed to commit changes to device record store
    11:47:36.369  Error Information: 18022 Failed to commit changes to device., File: .\BBTransBase.cpp, Line: 427
    Back on Q10, contacts are synced OK, but none of the entries appear in Calendar.
    Any help will be very appreciated. Thanks.
    Solved!
    Go to Solution.

    Hi MaKo7,
    Welcome to the BlackBerry Support Community.
    Sorry to hear about the issue you are having synchronizing. This KB article may provide more information. http://blackberry.com/btsc/KB34381
    Let me know if you have any other questions. Thanks.
    -FS
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.
    Click Solution? for posts that have solved your issue(s)!

  • There was an error while writing data back to the server: Failed to commit objects to server : Duplicate object name in the same folder.

    Post Author: dmface15
    CA Forum: Administration
    I am working in a new enviorment and i am trying to save a report to the Crystal Server via the CMC. I am uploading the report from the objects tab and attempting to save to a folder. The report has 1 static defined parameter and that's it. When i click submit to save the report i receive the following error message: "There was an error while writing data back to the server: Failed to commit objects to server : Duplicate object name in the same folder." There is not a anothe report within the folder with that name. What could be causing this error message and equally important, what is the solution.

    hte message you received about duplicate user probably means something hadn't fully updated yet. Once it did then it worked...
    Regards,
    Tim

  • WSUS Sync is not working Sync failed: UssCommunicationError: WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. --- System.Security.Authentication.AuthenticationException: The remote

    I know there are loads of posts with same issue and most of them were related to proxy and connectivity .
    This was case for me as well (few months back). Now the same error is back. But I've confirmed that FW ports and proxy are fine this time around.
    server is configured on http port 80 
    ERROR
    Sync failed: UssCommunicationError: WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel. ---> System.Security.Authentication.AuthenticationException: The remote certificate is invalid
    according to the validation procedure.~~at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request). Source: Microsoft.SystemsManagementServer.SoftwareUpdatesManagement.WSyncAction.WSyncAction.SyncWSUS
    I've checked proxy server connectivity. I'm able browse following site from WSUS server
    http://catalog.update.microsoft.com/v7/site/Home.aspx?sku=wsus&version=3.2.7600.226&protocol=1.8
    I did telnet proxy server on the particular port (8080) and that is also fine.
    I've doubt on certificates, any idea which are the certificates which we need to look? And if certificate is expired then (my guess) we won't be able open the above mentioned windows update catalog site?
    Any tips appreciated !
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

    Hi Lawrence ! - Many thanks for looking into this thread and replying. Appreciate your help.
    Your reply  ("SSL is enabled/configured, and the certificate being used is invalid
    (or the cert does not exist or cannot be obtained), or the SSL connection could not be established.") is very helpful.
    I've already tested CONTENT DOWNLOAD and it's working fine. WSUS Sync was also working fine for years with proxy server configured on port (8080) and WSUS server on port 80.
    My Guess (this is my best guess ;)) is this something to do with Firewall or Proxy side configuration rather than WSUS. However, I'm not finding a way to prove this to proxy/firewall team. From their perspective all the required port communication open and
    proxy server is also reachable. More over we're able to access internet (Microsoft Update Catalog site) over same port (8080).
    Any other hints where I can prove them it's a sure shot problem from their side.
    Thanks again !!
    Anoop C Nair (My Blog www.AnoopCNair.com)
    - Twitter @anoopmannur -
    FaceBook Forum For SCCM

  • PE dism error - failed to get and initialize the PE provider

    This all started with: Win 8.1 could not be installed. error code 0X8007003. I ran DISM successfully with the /RestoreHealth flag, but it made no difference to installing Win 8.1. I ran DISM again (successfully) and looked at the log for "fails".
    The repeated fail was:
    2011-06-10 10:12:47, Warning               DISM   DISM Provider Store: PID=2552 Failed to Load the provider: C:\Users\ROSMAR~1\AppData\Local\Temp\0709052E-4C8D-43AD-B837-FB57E1CF832A\PEProvider.dll.
    - CDISMProviderStore::Internal_GetProvider(hr:0x8007007e)
    2011-06-10 10:12:47, Info                  DISM   DISM Provider Store: PID=2552 Failed to get and initialize the PE Provider.  Continuing by assuming that it
    is not a WinPE image. - CDISMProviderStore::Final_OnConnect
    How can I fix this? Is this the reason I can't install Win 8.1? Should I be looking at something else to fix whatever is generating error code 0X8007003?
    Thanks.

    WIM format changed in Win 8.1. You need to use the DISM from the ADK from Windows 8.1. Older versions of DISM cannot service drivers or packages for example.

  • Hello, I am attempting to install Camera raw from a .zip file provided via a link provided by adobe for a Nikon D810. The .zip file unzips fine and I moved the files to the recommended folder. But the operation is failing

    I am attempting to install Camera raw from a .zip file provided via a link provided by adobe for a Nikon D810. The .zip file unzips fine and I moved the files to the recommended folder. But the operation is failing

    Can you describe what “the operation is failing” means?  What is happening and how is it different than what you expect?
    Also, what product are you trying to update manually, and do you have a link to the page of instructions, so we know what your attempting to do?

  • The loading of OPSS java security policy provider failed due to exception

    Hi,
    The issue is execution of startWebLogic.cmd failed,once shutting down the system and restarting it.At first time,after the installation ,it worked and I was able to log in to web logic server.I also created boot.properties file with user name and password for web logic server in user_projects/domains/UCM_domain/server/admin server/security folder.
    The operating system is windows xp, with 32 bit,oracle web logic version 11g, and UCM version 11.1.1.4.0.
    the error log is:
    weblogic.security.SecurityInitializationException: The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1398)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.JpsRuntimeException: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:291)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:847)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: java.security.PrivilegedActionException: oracle.security.jps.JpsException: [PolicyUtil] Unable to obtain default JPS Context!
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Unable to obtain default JPS Context!
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:808)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.service.keystore.KeyStoreServiceException: JPS-06514: Opening of file based farm keystore failed.
         at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.openKeyStore(FileKeyStoreManager.java:351)
         at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.doInit(FileKeyStoreServiceImpl.java:101)
         at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:73)
         at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:63)
         at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:157)
         at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:64)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:127)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:798)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >
    ####<Aug 10, 2011 4:18:13 PM IST> <Notice> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1312973293797> <BEA-000365> <Server state changed to FAILED>
    ####<Aug 10, 2011 4:18:13 PM IST> <Error> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1312973293797> <BEA-000383> <A critical service failed. The server will shut itself down>
    ####<Aug 10, 2011 4:18:13 PM IST> <Notice> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1312973293812> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    ####<Aug 10, 2011 4:18:13 PM IST> <Info> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1312973293828> <BEA-000236> <Stopping execute threads.>

    Thanks René van Wijk for the reply.
    I tried the action u replied for my question, but the same error again continued.iam unable to login in admin server.
    The main error is **Error message: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider**
    **     at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1398)**
    the message in the error log is
    <BEA-000386> <Server subsystem failed. Reason: weblogic.security.SecurityInitializationException: The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
    weblogic.security.SecurityInitializationException: The loading of OPSS java security policy provider failed due to exception, see the exception stack trace or the server log file for root cause. If still see no obvious cause, enable the debug flag -Djava.security.debug=jpspolicy to get more information. Error message: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1398)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.JpsRuntimeException: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:291)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Exception while getting default policy Provider
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:847)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: java.security.PrivilegedActionException: oracle.security.jps.JpsException: [PolicyUtil] Unable to obtain default JPS Context!
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.JpsException: [PolicyUtil] Unable to obtain default JPS Context!
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:808)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    Caused By: oracle.security.jps.service.keystore.KeyStoreServiceException: JPS-06514: Opening of file based farm keystore failed.
         at oracle.security.jps.internal.keystore.file.FileKeyStoreManager.openKeyStore(FileKeyStoreManager.java:351)
         at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.doInit(FileKeyStoreServiceImpl.java:101)
         at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:73)
         at oracle.security.jps.internal.keystore.file.FileKeyStoreServiceImpl.<init>(FileKeyStoreServiceImpl.java:63)
         at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:157)
         at oracle.security.jps.internal.keystore.KeyStoreProvider.getInstance(KeyStoreProvider.java:64)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.findServiceInstance(ContextFactoryImpl.java:139)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:170)
         at oracle.security.jps.internal.core.runtime.ContextFactoryImpl.getContext(ContextFactoryImpl.java:191)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:132)
         at oracle.security.jps.internal.core.runtime.JpsContextFactoryImpl.getContext(JpsContextFactoryImpl.java:127)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:798)
         at oracle.security.jps.internal.policystore.PolicyUtil$1.run(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyUtil.getDefaultPolicyStore(PolicyUtil.java:792)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:289)
         at oracle.security.jps.internal.policystore.PolicyDelegationController.<init>(PolicyDelegationController.java:282)
         at oracle.security.jps.internal.policystore.JavaPolicyProvider.<init>(JavaPolicyProvider.java:261)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at java.lang.Class.newInstance0(Class.java:355)
         at java.lang.Class.newInstance(Class.java:308)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.loadOPSSPolicy(CommonSecurityServiceManagerDelegateImpl.java:1339)
         at weblogic.security.service.CommonSecurityServiceManagerDelegateImpl.initialize(CommonSecurityServiceManagerDelegateImpl.java:1018)
         at weblogic.security.service.SecurityServiceManager.initialize(SecurityServiceManager.java:873)
         at weblogic.security.SecurityService.start(SecurityService.java:141)
         at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:207)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:176)
    >
    ####<Aug 11, 2011 11:09:57 AM IST> <Notice> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1313041197187> <BEA-000365> <Server state changed to FAILED>
    ####<Aug 11, 2011 11:09:57 AM IST> <Error> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1313041197187> <BEA-000383> <A critical service failed. The server will shut itself down>
    ####<Aug 11, 2011 11:09:57 AM IST> <Notice> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1313041197187> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    ####<Aug 11, 2011 11:09:57 AM IST> <Info> <WebLogicServer> <saswsaho> <AdminServer> <Main Thread> <<WLS Kernel>> <> <> <1313041197218> <BEA-000236> <Stopping execute threads.>

  • [solved] I get the following error message: 'failed to commit...'

    When I run
    pacman -Syu
    I get:
    :: Synchronizing package databases...
    core is up to date
    extra is up to date
    community is up to date
    :: Starting full system upgrade...
    :: Replace procps with core/procps-ng? [Y/n] y
    resolving dependencies...
    looking for inter-conflicts...
    Targets (56): acl-2.2.51-2 apr-1.4.6-1 attr-2.4.46-2 bash-4.2.028-1 binutils-2.22-7 coreutils-8.17-1 device-mapper-2.02.95-4 filesystem-2012.2-5 gcc-4.7.0-6 gcc-libs-4.7.0-6 geoip-1.4.8-2 geoip-database-20120501-1 git-1.7.10.2-1 glib2-2.32.2-2 gmp-5.0.5-1
    initscripts-2012.05.1-1 isl-0.09-2 java-jline-1.0-2 java-rhino-1.7R3-3 kmod-8-2 libcap-2.22-3 libjpeg-turbo-1.2.0-2 libmysqlclient-5.5.24-1 libusb-compat-0.1.4-1 libvpx-1.1.0-1 linux-firmware-20120227-2 lvm2-2.02.95-4 man-pages-3.41-1
    mdadm-3.2.3-3 mkinitcpio-0.8.8-1 mpfr-3.1.0.p10-1 mysql-5.5.24-1 mysql-clients-5.5.24-1 netcfg-2.8.2-1 nss-3.13.4-2 openssl-1.0.1.c-1 pam-1.1.5-3 php-5.4.3-1 php-fpm-5.4.3-1 php-gd-5.4.3-1 php-ldap-5.4.3-1 php-mcrypt-5.4.3-1 php-pear-5.4.3-1
    phpmyadmin-3.5.1-1 procps-3.2.8-5 [removal] procps-ng-3.3.2-2 python-distribute-0.6.26-1 rhino-1.7R3-3 s3cmd-1.0.1-1 sqlite-3.7.12-1 sysfsutils-2.1.0-8 udev-182-2 vim-7.3.515-1 vim-runtime-7.3.515-1 xfsprogs-3.1.8-2 zlib-1.2.7-1
    Total Download Size: 0.39 MiB
    Total Installed Size: 442.89 MiB
    Net Upgrade Size: 2.20 MiB
    Proceed with installation? [Y/n] y
    :: Retrieving packages from extra...
    sqlite-3.7.12-1-x86_64 397.8 KiB 1104K/s 00:00 [######################################################################################################] 100%
    (55/55) checking package integrity [######################################################################################################] 100%
    (55/55) loading package files [######################################################################################################] 100%
    (55/55) checking for file conflicts [######################################################################################################] 100%
    error: failed to commit transaction (conflicting files)
    python-distribute: /usr/lib/python3.2/site-packages/__pycache__/pkg_resources.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/__pycache__/__init__.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/__pycache__/archive_util.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/__pycache__/depends.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/__pycache__/dist.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/__pycache__/extension.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/__pycache__/package_index.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/__pycache__/sandbox.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/__init__.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/build_py.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/easy_install.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/egg_info.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install_lib.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install_scripts.cpython-32.pyc exists in filesystem
    python-distribute: /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/sdist.cpython-32.pyc exists in filesystem
    Errors occurred, no packages were upgraded.
    When I ran it with debugging on, I got:
    ebug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 31 from alpm_db_get_pkg : could not find or read package
    debug: returning error 47 from _alpm_sync_commit : conflicting files
    Here is a detailed version of the output with debugging on: http://pastebin.com/eieXUFAh
    Last edited by chudapati09 (2012-05-15 06:03:30)

    Trilby wrote:Did you check which package currently owns those files?
    I got 'No Packages owns ...' for all of them.
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/__pycache__/pkg_resources.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/__pycache__/pkg_resources.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/__pycache__/__init__.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/__pycache__/__init__.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/__pycache__/archive_util.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/__pycache__/archive_util.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/__pycache__/depends.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/__pycache__/depends.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/__pycache__/dist.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/__pycache__/dist.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/__pycache__/extension.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/__pycache__/extension.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/__pycache__/package_index.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/__pycache__/package_index.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/__pycache__/sandbox.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/__pycache__/sandbox.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/__init__.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/__init__.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/build_py.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/build_py.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/easy_install.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/easy_install.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/egg_info.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/egg_info.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install_lib.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install_lib.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install_scripts.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/install_scripts.cpython-32.pyc
    [root@localhost]# pacman -Qo /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/sdist.cpython-32.pyc
    error: No package owns /usr/lib/python3.2/site-packages/setuptools/command/__pycache__/sdist.cpython-32.pyc

  • Wsus Sync Failed. WebException: The underlying connection was closed: An unexpected error occurred on a send. --- System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.

    Hi I have installed wsus 3 sp2 on a win 2008 R2 Sp1
    before the installation , I have updated the windows
    I can open easily browse internet , but when I try to configure synchronization .but it fails.
    No firewall , no proxy ............. I am behind a nat.
    Wsus version is 3.2.7600.256.
    I have searched and searched .....
    Can any body help me
    WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Received an unexpected EOF or 0 bytes from the transport stream.
    at System.Web.Services.Protocols.WebClientProtocol.GetWebResponse(WebRequest request)
       at System.Web.Services.Protocols.HttpWebClientProtocol.GetWebResponse(WebRequest request)
       at Microsoft.UpdateServices.ServerSync.ServerSyncCompressionProxy.GetWebResponse(WebRequest webRequest)
       at System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters)
       at Microsoft.UpdateServices.ServerSyncWebServices.ServerSync.ServerSyncProxy.GetAuthConfig()
       at Microsoft.UpdateServices.ServerSync.ServerSyncLib.InternetGetServerAuthConfig(ServerSyncProxy proxy, WebServiceCommunicationHelper webServiceHelper)
       at Microsoft.UpdateServices.ServerSync.ServerSyncLib.Authenticate(AuthorizationManager authorizationManager, Boolean checkExpiration, ServerSyncProxy proxy, Cookie cookie, WebServiceCommunicationHelper webServiceHelper)
       at Microsoft.UpdateServices.ServerSync.CatalogSyncAgentCore.SyncConfigUpdatesFromUSS()
       at Microsoft.UpdateServices.Serve

    Hi
    yes . it is alloweded.
    Nat rule permits any ip traffic . No problem with https...
    also my windows is fully updated.
    here is my netstat -an , maybe usefull.
     TCP    0.0.0.0:135            0.0.0.0:0              LISTENING
     TCP    0.0.0.0:445            0.0.0.0:0              LISTENING
     TCP    0.0.0.0:8530           0.0.0.0:0              LISTENING
     TCP    0.0.0.0:8531           0.0.0.0:0              LISTENING
     TCP    0.0.0.0:47001          0.0.0.0:0              LISTENING
     TCP    0.0.0.0:49152          0.0.0.0:0              LISTENING
     TCP    0.0.0.0:49153          0.0.0.0:0              LISTENING
     TCP    0.0.0.0:49154          0.0.0.0:0              LISTENING
     TCP    0.0.0.0:49155          0.0.0.0:0              LISTENING
     TCP    0.0.0.0:49156          0.0.0.0:0              LISTENING
     TCP    --------------------:139       0.0.0.0:0              LISTENING
     TCP    --------------------:8530      172.16.2.201:53317     ESTABLISHED
     TCP    --------------------:49362     23.65.244.185:443      ESTABLISHED
     TCP    --------------------:49363     23.65.244.185:443      ESTABLISHED
     TCP    --------------------:49367     23.65.244.185:443      ESTABLISHED
     TCP    --------------------:49377     23.65.244.185:443      ESTABLISHED
     TCP    --------------------:49414     131.253.34.141:443     ESTABLISHED
     TCP    --------------------:49416     216.239.32.20:80       ESTABLISHED
     TCP    --------------------:49417     216.239.32.20:80       ESTABLISHED
     TCP    --------------------:49418     173.194.70.113:80      ESTABLISHED
     TCP    --------------------:49419     173.194.70.113:80      ESTABLISHED
     TCP    --------------------:49420     65.52.103.78:80        ESTABLISHED
     TCP    --------------------:49421     65.52.103.78:80        ESTABLISHED
     TCP    --------------------:49424     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49425     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49426     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49427     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49428     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49429     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49430     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49431     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49432     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49433     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49434     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49435     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49436     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49437     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49438     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49439     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49440     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49441     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49442     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49443     88.221.93.54:80        ESTABLISHED
     TCP    --------------------:49444     88.221.93.54:80        ESTABLISHED
     TCP    --------------------:49445     88.221.93.63:80        ESTABLISHED
     TCP    --------------------:49446     88.221.93.63:80        ESTABLISHED
     TCP    --------------------:49447     88.221.93.63:80        ESTABLISHED
     TCP    --------------------:49448     88.221.93.63:80        ESTABLISHED
     TCP    --------------------:49449     88.221.93.63:80        ESTABLISHED
     TCP    --------------------:49450     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49451     88.221.93.31:80        ESTABLISHED
     TCP    --------------------:49453     88.221.93.30:80        ESTABLISHED
     TCP    --------------------:49456     65.55.58.184:80        ESTABLISHED
     TCP    --------------------:49457     65.55.58.184:80        ESTABLISHED
     TCP    --------------------:49460     131.253.34.142:80      ESTABLISHED
     TCP    --------------------:49461     131.253.34.142:80      ESTABLISHED
     TCP    --------------------:49462     65.52.103.78:80        ESTABLISHED
     TCP    --------------------:49463     65.52.103.78:80        ESTABLISHED
     TCP    --------------------:49464     63.251.85.33:80        ESTABLISHED
     TCP    --------------------:49466     131.253.40.50:80       ESTABLISHED
     TCP    --------------------:49467     131.253.40.50:80       ESTABLISHED

  • Does a table/view still return records if the underlying VPD policy fails ?

    Hi All,
    I have one following question -
    Does a table or view still return records if the underlying VPD policy fails?
    I am adding one more thing here. Let us say security is being implemented using the application context and VPD.
    What would happen when application context is not set ? Would the application apply any default privilege as VPD?
    Thanks,
    Ashi

    AshiKD wrote:
    Hi All,
    I have one following question -
    Does a table or view still return records if the underlying VPD policy fails?No, you get a standard error message if the VPD function is wrong and if you won't pass the conditions of the VPD, you get nothing. That's what in general happens and should happen as well.
    >
    I am adding one more thing here. Let us say security is being implemented using the application context and VPD.
    What would happen when application context is not set ? Would the application apply any default privilege as VPD?This would be a wrong approach then. If you are truly setting a VPD, you have to make sure that the context is set and the condition variable are passed through it. This is normally done through a logon trigger so again, generically , its not possible that it would not be set. I didn't get at all what ever you said in the last line? What is "default priv for VPD" ?
    HTH
    Aman....

Maybe you are looking for

  • Open sale order quantity in VA05

    hi all, can anyone please tell me the function module or bapi or Table to find out open sales order quantity coming in VA05. regards.

  • Best export settings in iMovie for later import to iDVD

    Hello, I've created a few iMovie projects that I've put on DVD using the Share To iDVD option. I have a few different projects that I want to put on one DVD. What are the best export settings in iMovie to create files that I can later import using iD

  • CS4 Premiere Export Media - Encoder

    Hallo, could anybody help me whats wrong wiht my settings. Im exporting the video, but the exported video is shrinked/cropped whatever, i.e. its shown only as a mini-window of the displayed player window size... i.e. How do I get rid of the thick bla

  • Printing of individual slip

    All, I have done setting in WA01 for automatic print. (individual slip) Now if I am transferring one material from one SLocation to another , print is coming for 2 SLocations . Means in document 2 line items are created , one 'minus'  stock in one SL

  • Shochwave Flash

    Warning: Shockwave Flash is busy or quit responding. Not able to update, because it keeps freezing and won't let me run in Safe Mode. How do I fix? Having problems since around Oct. 8th.