CUCM 7.0 OS locked by another process

Hi, guys,
CUCMBE7.0 system.
When I try to access OS from GUI, and click show network, I see the error message:
"The system is currently locked by another process. Please try again later."
I can access the OS from CLI with no problem. System is in production, and I cannot reload it easily.
Any help is highly appreciated.
thanks,
Soup

i think i faced similar bug before i guess. I stopped the DRS while it's performing a backup and the system lockup the database. Talked to cisco tac and decided to rebooted the server after office hrs.
In the end, the callmanager fails to boot up. I have to reinstall the callmanager from fresh again and restore using DRS.
Therefore be very careful if you intend to reboot. The cisco tac told me it was the result of one of the HDD failure which result in system lockup. Well, it's over.

Similar Messages

  • When i try and open the auto cad Lt that i just downloaded i get this error The directory may be locked by another process or have been set Read Only. Directory: '/Users/hockaday' Please correct this problem and press OK to exit the application.

    i get this error why i try and open the auto cad that i just downloaded
    The directory may be locked by another process or have been set Read Only.
    Directory: '/Users/hockaday'
    Please correct this problem and press OK to exit the application.

    I did install it in the admin account.  Actually the computer has four accounts, one for my husband, where I installed it.  One for me which also is set to admin, one is called TEST and has nothing in it and one is guest user.
    I don't know how AutoCad is interfacing with the account.  That is why I am not sure what to do about it.  I read other threads in various places and some seemed to point to something having to do with having multiple users.  The solutions were not clear.  I was hoping someone else had this problem and could tell me what to do.  I tried apple support but no help.  I have not tried AutoCad yet as I assumed they wont help since this is a free educational version of their product.

  • Error: object "EPC Number" locked by another process

    In a particular ALE we are sending to AII from outisde SAP... we are sending some 2000+ EPC's to hit the AII. This is a real life situation which we are testing.
    The ALE messages are sent every 4 mins for various processes like Load, Unload, Pack etc.
    Now after analyzing the logs we found that all were showing errors and in all the lots one particular epc is locked. The error message reads..
    "Object urn epc..... 3992 is locked by another process; try again later"
    Now this same EPC is shown as lock error in all the sets. And none of the EPC's sent in the ALE reached AII and EM later.
    Now our inference was since once EPC is blocked.. the whole lot got blocked.
    And another issue is " How do we unlock this EPC and the process" Is there any method.
    We also check SM 58 to see transactional RFC's and did F6 to execute those that were in Que.
    Does the System be able to take 2000+EPC's in one ALE at a single go every 5 mins for various Processes like Load , Pack etc.

    Hello Ramachandra,
    Opening this very old message as we too are facing the same issue.
    Could you please share your solution or any guidance.
    1. How do you know which process locking the object?
    2. This looks like an issue when the payload is more than a certain tolerance. How do you work around this constraint?
    Regards
    Aniket

  • Data source is locked by another process

    Hi Team,
         There was a failure in the Process chain in BI system on lastweek  while extracting the data from rR/3 SAP system. The error message given by the system was u201CData source is locked by another processu201D u201Cerror in source systemu201D. How to find which process and user locked sourse system.any one please help .
    Thnaks,
    Thirumoorthy.E

    Hi ,
         This issue occured in lastweek but  now i need activity log . u201CData source is locked by another processu201D u201Cerror in source systemu201D. how to find which workprocess locked and user name.(Activity log)
      Data source name in =1_CO_PA_100_CE1NOVA
    Thanks,
    Thiru

  • Snapshot copy of file is locked by another process?

    Hey guys,
     
     
     
    I've never run into this before, but I am having an issue where running robocopy to restore a folder and it's contents from the weekly snapshot I get errors on several files that they are currently in use?
     
    The syntax: robocopy Y:\~snapshot\weekly.2015-08-02_0015\Foldername Y:\Foldername-RESTORED /MIR /Z
     
    The error: Error 32 <0x00000020> filepath The process cannot access the file because it is being used by another process.
     
    As a snapshot copy is read-only and there are no other processes currently accessing the files (closed all explorer sessions, unmounted and remounted cifs share, and even rebooted host) to ensure there were no processes using this snapshot and still several files are failing to copy.
     
    if you cancel the process and run it again immediately the last file you hung on, will usually copy just fine, but another one shortly thereafter will hang.
     
    I used the SysInternals Process Explorer program to see if I could see what had those files locked and could find nothing. I check for vscan, and for volume clones based on that snapshot and again found nothing.
     
    Just curious if anybody else had seen this behavior?
     
    Data Ontap 8.2.3 (CDOT)

    Guess may be when you are performing ROBOCOPY at that time snapmirror or snapvault transfer is going on . I would like you check that. Even Dirty snapshot create those problem RegardsRaghuveer(wellsfargo)

  • Microsoft sql client deadlocked on lock resources with another process

    Hi
    I wrote a forecasting report for a customer which creates an excel spreadsheet with the information
    Depending on how they run the report it can take between 5 to 15 minutes to run
    We have just upgraded the customer to SAP 8.8 PL10 and Microsoft SQL Server 2008 and they seem to be getting an error -
    Microsoft sql client deadlocked on lock resources with another process .......
    The error seems intermittent, they may get the error once and the next time they run it, it is fine.
    I have never seen this error before and they never had it before on SAP 2005
    Can anyone suggest anything please?
    Thanks
    Regards Andy

    Hi Andy,
    I was having the same problem. I'm gonna tell you what i did.
    My query usually takes from 10 to 15 minutes to show results. That long time also block all transaction in the database.
    I was reading about some techniques to improve queries performance. Some of the tips are:
    1. Review indexes in the table you are querying
    2. Use Views
    3. Avoid cursors
    4. Archive old data
    5. Use the correct transaction isolation level
    The last one, was the tip that helped me to avoid the block in the database.
    By default the isolation level in SQL Server is Read Commited, that explains why the database block some transactions. For example, if you have a query that take data from JDT1 table and it takes several minutes to show the results, other transactions that try to write in the same table should be blocked if they arrive at the same time of the first query.
    To solve this, you can make your query in a transaction with Snapshot isolation level. It means that your select query will take a snapshot of the data without blocking any other transaction.
    Here is an example how you can make it. The difference is that you may use ADO.NET connection replacing DI API Connection:
    oConnection = OK1.Generic.Helpers.setConnection(server, password, userID, db); // You have to set anyway your sqlconnection
                        if (oConnection.State == ConnectionState.Open)
                            oCommand = new SqlCommand();
                            oCommand.Connection = oConnection;
                            oCommand.CommandTimeout = System.Convert.ToInt32(timeOut);
                            oCommand.CommandText = "ALTER DATABASE " + db + " SET ALLOW_SNAPSHOT_ISOLATION ON";
                            oCommand.ExecuteNonQuery();
                            sqlTran1 = oConnection.BeginTransaction(IsolationLevel.Snapshot);
                            oCommand.CommandText = query;
                            oCommand.Transaction = sqlTran1;
                            oCommand.ExecuteNonQuery();
                            sqlTran1.Commit();
                            oCommand.CommandText = "ALTER DATABASE " + db + " SET ALLOW_SNAPSHOT_ISOLATION OFF";
                            oCommand.ExecuteNonQuery();
                            if (oConnection.State == ConnectionState.Open)
                                oConnection.Close();
    In this example I write the data to show in the report in other table, then the report takes the data from that table.
    I hope it will be helpful for you.
    Regards,
    Juan Camilo

  • Server 2012 R2 Backup to NAS fails: another process has locked portion of the file

    I am trying to setup Windows Server Backups in Server 2012R2
     My
    script didn't work, so started troubleshooting from the very bottom. My backup target is a DLink NAS drive with shared folder (full anonymous access and also tried setting up a dedicated user) Source to back up is a small folder on drive C From Server Backup
    manager -> Backup Once, add my folder to items to backup, point to \10.1.1.49\Volumes_1 Click backup, goes trough initial motion and the fails with error: "The process cannot access the file because another process has locked a portion of the file"

    Hi,
    Sorry for the delay in reply.
    Whether it is the same error message as before when trying to backup a newly created TXT file to the NAS?
    The message shows it is locked by a process so is there any security application running on your system? Test to disable them and see the result.
    As I'm not familiar with your NAS, you may need to confirm with its support to see if any change it will lock the backup process. 
    If you have any feedback on our support, please send to [email protected]

  • Process can't access file bcos another process has locked a portion of file

    Does anyone knows if Java could handle the well-known "Open File" problem.
    I encounter the following error when I was trying to copy an outlook file to another location:
    java.io.IOException: The process cannot access the file because another process has locked a portion of the file.
    My codes is placed below for reference.
    Note that I was only trying to open to open the file for reading the Inputstream. Please advise what I could do to avoid getting caught in exception while reading the bytes.
    It will be good if Java could handle the Microsoft's "Open File" problem.
    // my codes
    public static void main(String[] args)
    int BUFSIZE = 4096;
    File theFile = new File("C:\\Documents and Settings\\" + myID +
    "\\Local Settings\\Application Data\\" +
    "Microsoft\\Outlook\\mail.pst");
    long size = theFile.length();
    try {
    FileInputStream fis = new FileInputStream(theFile);
    // exception will happen on the next line
    if (!(size >= 0 &&
    fis.read(new byte[BUFSIZE],0,(int)Math.min(size,BUFSIZE)) > -1)) {
    System.out.println("encountered OFM problem");
    } else {
    System.out.println("read file successfully");
    } catch (Exception e) {
    System.out.println("caught OFM problem");
    e.printStackTrace();

    Sometimes Windows can place a lock on files that will
    prevent you from even reading its contents. You may
    have to close the MS Outlook application in your
    machine to be able to read the contents of this file.Of course I knew Microsoft has locked the file.
    I also knows Microsoft locks a lot of other files too.
    The idea is that we just want to read the file, we are not writing or modifying anyway, so we should be able to read it. Of course that depends on whether Java wants to step into the area and do something about it. (Please read http://www.stbernard.com/products/docs/ofm_whitepaperV8.pdf)
    Well, the easiest way anyone could advise is probably to use Microsoft development tools. The idea is nobody wants to be a "Micro-slaves" if we could...
    So I am still waiting for someone with the area of expertise to reply...

  • While deleting the virtual machine .vhd folder -- error msg : the process cannot access the file beacuse it is being used by another process

    When i am trying to delete the Virtual Machine folder/directory i get the below error. Virtual machine is turned off
    V:\>rmdir ME-EXCAS01 /s
    ME-EXCAS01, Are you sure (Y/N)? y
    ME-EXCAS01\ME-EXCAS01\Virtual Machines\1B1FD14E-B3F0-4232-9F96-2A871E879CD6.xml
    - The process cannot access the file because it is being used by another process
    How to delete the whole folder ?
    Thanks

    Also, if your VM has snapshots and you delete it, you must wait for the snapshots to finish merging - the VHD files will be locked until then.
    Brian Ehlert
    http://ITProctology.blogspot.com
    Learn. Apply. Repeat.

  • Files cannot access because they are used by another process

    I am trying to delete some files in:C:\inetpub\wwwroot\my_site\Under my_site, there are many files and folders, including bin folders which has some .dll files. As soon as I run the script, I get an error message that some of the .dll files cannot be accessed because they are being used by another process, and on some dlls, I get a permission denied error.I don't know what the problem is. I am using the following script, which works perfect for any other folders, but not for the one I am trying to delete. $content = get-childitem 'C:\Backups\my_site'
    $sortedContent = $content | Sort-Object LastWriteTime -Descending
    write-host "This is the list of all the backups for my_site :"
    $count = 1
    foreach ($item in $sortedContent)
    Write-Host ("{0}: {1}" -f $count, $item.Name)
    $count++
    # 2.Take input from user
    $itemNumber = Read-Host "Please select which backup you want to restore"
    $confirmation = Read-Host "Are you Sure You Want To Proceed:"
    # 2.Take input from user
    if ($confirmation -eq 'y') {
    # 3. BACKUP script
    ./bacup_mysite.ps1
    # 3. BACKUP
    # 4. DELETE CONTENTS OF my_site
    get-childitem "C:\inetpub\wwwroot\my_site\" -recurse | % {
    remove-item $_.FullName -recurse -force
    # 4. DELETE CONTENTS OF APP
    # 5. COPY CONTENTS OF ZIP INTO APP DIRECTORY
    $itemNumber = $itemNumber -1
    if($sortedContent[$itemNumber].PSIsContainer -eq $true)
    $src = $sortedContent[$itemNumber].FullName + "\"
    $WebzipPath = $src + "my_site.zip"
    $Date = Get-Date
    $folder_date = $Date.ToString("yyyy-MM-dd_HHmm")
    $tempPath = 'C:\_Temp\Restore\my_site_restore_' + $folder_date
    if (!(Test-Path -path $tempPath))
    New-Item $tempPath -type directory
    ./Library/unzip.ps1 $WebzipPath $tempPath
    $tempPathWeb = $tempPath + "/my_site/*"
    Copy-Item -Path $tempPat -Destination 'C:\inetpub\wwwroot\my_site\' -Recurse -
    force

     am using a script which backups the folders and than in the next block tries to delete those folder from there original location.This is the script
    if ($confirmation -eq 'y') {
    # 3. BACKUP script
    ./bakup_mysite.ps1
    #If i put a Read-Host here it does stop and than ask user to press any key and than it
    deletes the next block, but i want to put a wait so user does not have to press any key
    and everything happens automatically, # 3. BACKUP
    # 4. DELETE CONTENTS OF my_site
    get-childitem "C:\inetpub\wwwroot\my_site\" -recurse | % {
    remove-item $_.FullName -recurse -force
    }I would like the backup to finish first and than delete the original files, because if i use the above script while backup up some files gets locked and at the same time the next block gets executed and it tries to delete the files thats why i would like to put a wait for backup to finish
    Check your assumptions.  How do you know that backup is the only process that might have a lock on those files?
    [string](0..33|%{[char][int](46+("686552495351636652556262185355647068516270555358646562655775 0645570").substring(($_*2),2))})-replace " "

  • Error occurs during reseed - the EDB file is being used by another process

    Greetings,
    We were notified today that one of our databases in an Exchange 2013 cluster is currently in a failed state. We have three servers - two at the primary site and one in the DR site. The database has a mounted and healthy copy on its preferred server, but
    the secondary copy is now failed with a pretty high CopyQueueLength.
    I've done plenty of reseeds with Exchange 2010, and I understand that Exchange 2013 will do an automatic reseed in the event of a failure. However the auto-reseed is generating the following message:
    Automatic Reseed Manager failed to execute repair workflow 'FailedSuspendedCopyAutoReseed' for database 'DB05'. Error: The Automatic Reseed Manager encountered an error: The automatic repair operation for database copy 'DB05\mb02' will not be run because
    one of the prerequisite checks failed. Error: There are no Exchange volumes mounted under root path 'C:\ExchangeVolumes', which are required for the Automatic Reseed component.
    WorkflowLaunchReason: The seeding operation failed. Error: An error occurred while performing the seed operation. Error: The process cannot access the file 'M:\DB05\DB05.EDB' because it is being used by another process.
    During the course of my investigation, I tried to rename the .edb file to .old and was told that the file is in use by Microsoft.exchange.store.worker.exe. There doesn't seem to be a way to kill this process, as every time I've tried I've been told that
    access is denied. I'm not even sure it's wise to kill the process anyway (I'm only trying to kill the one with the PID that matches the database).
    Attempting to manually reseed the database generates a similar error to the one above. I've failed all the databases over to the other server and restarted the Information Store service as well as the Host Controller service, but so far I can't seem to get
    this file unlocked. One article I found did mention making sure that Exchange Servers is listed and given Read access to the folder. I did manually set this but I still see no change. I also verified that Symantec Endpoint Protection is set to exclude .edb
    files, and the automatic Exchange exclusions are preventing it from scanning the Exchange install locations.
    I'm curious if anyone has any suggestions that I might have missed so far. This is confusing the daylights out of me and I'd like to be able to get this reseeded. I suspect that even a full server restart won't clear this up, so any help would be great.
    We're just starting to transition users over from Exchange 2007 to 2013, and I'd prefer to have a method of avoiding this in the future before we're in full production.

    Thanks for your response, Ed! I really appreciate you taking the time to do so.
    The ultimate fix for this was a reboot of the server and I was finally able to kick off a reseed. For the sake of thoroughness, here's the last two things we tried before rebooting.
    I did try stopping the Symantec Endpoint Protection service on the server, but the job still failed in the same way. I'd also been given the recommendation to try stopping the Information Store service and try a reseed like that. Still no love. I've been
    using ProcessExplorer, too, to try and isolate the lock, but didn't have much luck there, beyond what I already knew regarding the store.worker.exe locking the file.
    I don't much care for the notion that I needed to reboot the server to remove that lock, I was really hoping for something less intrusive. But at least we've got it working and can move on with our day!
    Again, thanks for your response, Ed!

  • The requested object is locked by another transaction

    Hi All,
    I got a problem while loading data from an ODS to another ODS, it shows 450 records but request is red, it says
    'The requested object is locked by another transaction'
    Message no. MC602
    Diagnosis
    A lock requested by calling an ENQUEUE function module cannot be provided because the object in question has already been locked by its own transaction.
    Technical Information: The C_ENQUEUE routine returns the following values:
    COLLISION_OBJECT = ERSMONFACT
    COLLISION_UNAME = SINGH
    System response
    The ENQUEUE function module triggers an appropriate exception. If this exception was not intercepted by the application program, it leads automatically to the active SAP transaction being cancelled.
    Procedure
    Once the ENQUEUE function module is called, the application program should intercept this exception and react to it appropriately.
    I tried SM12 but there is no lock entry, can u suggest some thing?
    Regards,

    Hello,
    here your dso seems to be lock as some read and write opertaion is happening at the time u r running the dtp.
    Here two things to look :
    1.Check the error that ur getting while running a dtp the process monitor etc try to find the request id which has locked the dso . Copy that request id go to t-code RSRQ see whats this request who is user,target etc..contact user for cancelling the job if it has been stuck for long long time. Copy the JOB ID from  RSRQ for that rquest go to SM37 give the date as there in RSRQ and kill the job
    2.GO to SM12 try to search the object there and remove the lock.
    Thanks,
    Deepak

  • How to use master locks in a process chain with planning sequence

    Hi,
    when I start a process chain which contains a planning sequence there is no master lock set. The chain stops and I get the message "Data in InfoProvider XYZ is locked by user TIMMAY". What can i do to enable the master locks?
    Thanks for your help!

    Hello,
    When a planning sequence is triggered via process chain system first first tries to set a normal lock and if this is possible, these selections are stored as master locks and then the normal locks are released.
    In your case if some data is already locked by another user the lock conflict will occur in teh first step only where system tries to create a normal lock before creating master locks.
    If Administrator wants to trigger the process chain he should ask other users to come out of the planning layouts so that all the locks are released and then trigger the chain and after this the system will set the master locks. Packaging in planning sequence process type won't help in setting master locks even if the data is locked by other user.
    Also, after master locks are deleted in RSPLSE, the transaction data remains protected by normal data locks during runtime. Nevertheless, without master locks it is no longer guaranteed that parts of planning sequences can be carried out without encountering lock conflicts with other users.
    Regards,
    Deepti

  • FWSM Stuck - Configuration update in progress by another process....

    Hi,
    I am not able to go into configuration mode of FWSM. Upon 'config t', I get 'Configuration update in progress by another process....'
    I read thru following article.
    http://www.cisco.com/univercd/cc/td/doc/product/lan/cat6000/mod_icn/fwsm/fwsm_3_1/fwsm_cfg/mgacc_f.htm
    It talks about how to avoid this in future i.e. using pager lines 0.
    But how can I get out of it while being stuck. I have disconnected the sessions from Cat6500. What else should I do to get out of the stuck state.
    Thanks.

    Hi guys,
    sorry, I know that this is a very old post but I just got the same problem yesterday with our FWSM. One of my coworkers logged into the device and he did a show run, and the session just got locked at the more prompt (the actual session just timed out). Google brought me to this post trying to solve the issue with no luck.
    We were actually very lucky as we always console into our devices using a management router, so it was just a matter of killing all the telnet sessions from that management router to the FWSM, and that fixed the issue:
    1) Show the active sessions:
    CE_MGMT_RT01#sh sessions
    2) kill all the sesssions to the FWSM
    CE_MGMT_RT01#kill 1 (or 2, 3, ...,etc)
    Just thought of posting my solution in case someone comes across this problem. It bloody took me around two hours to figure this out. The only catch is that you have had consoled into the device using an intermediate device, otherwise, don't know which would be the solution.
    Alex.

  • Service template problem - Unable to perform the job because one or more of the selected objects are locked by another job - ID 2606

    Hello,
    I’ve finally managed to deploy my first guest cluster with a shared VHDX using a service template. 
    So, I now want to try and update my service template.  However, whenever I try to do anything with it, in the services section, I receive the error:
    Unable to perform the job because one or more of the selected objects are locked by another job.  To find out which job is locking the object, in the jobs view, group by status, and find the running or cancelling job for the object.  ID 2606
    Well I tried that and there doesn’t seem to be a job locking the object.  Both the cluster nodes appear to be up and running, and I can’t see a problem with it at all.  I tried running the following query in SQL:
    SELECT * FROM [VirtualManagerDB].[dbo].[tbl_VMM_Lock] where TaskID='Task_GUID'
    but all this gives me is an error that says - conversion failed when converting from a character string to uniqueidentifier msg 8169, level 16, State 2, Line 1
    I'm no SQL expert as you can probably tell, but I'd prefer not to deploy another service template in case this issue occurs again.
    Can anyone help?

    No one else had this?

Maybe you are looking for

  • Item field EDI-X12 automatic 997 Acknowledgments

    hey , in our scenario we are receiving EDI-X12 850 and need to send back 997 functional  acknowledment to confirm it . we are using conversion agent by item field / informatica to parse the 850 into XML by using the relevant files ( *.XSD , *.TGP ) w

  • Tune Linked Server

    Dear Experts, Could you please list out possible things for performance tuning of SQL server linked server. Thanks in advance

  • ACCESS-KEY (add developer)

    Hello! I have installed Netweaver testdrive for Suse Linux for teach myself in ABAP-Programming. After starting TA SA38 and trying to generate the program Z_HELLO i get a input prompt where i should type the access-key. Is it really necessary to regi

  • Problems with 10.4.10 when installing iLife 08 and IWork 08

    Hi there, I just bought iLife and IWork 08 and am having trouble installing them successfully. I upgraded to 10.4.10 to meet the requirements of IWork but my MacBook runs oddly when I install these two packages. Firstly the usual installer is not ava

  • IPhone 4s Bluetooth searching devices ...

    iPhone 4s Bluetooth not finding any devices including iPod touch. Just sits there "Searching ...No other bluetooth devices can see iPhone. Any ideas?