Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

Vaadin.. Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\DumpStack.log.tmp'

Ask Question

i get the following error message when i start my vaadin-app

2022-07-16 14:46:19.276  INFO 14076 --- [onPool-worker-1] c.v.b.devserver.AbstractDevServerRunner  : Started Webpack. Time: 17866ms
2022-07-16 14:46:19.426  INFO 14076 --- [v-server-output] c.v.b.devserver.DevServerOutputTracker   : Issues checking in progress...
2022-07-16 14:46:20.173  INFO 14076 --- [v-server-output] c.v.b.devserver.DevServerOutputTracker   : Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\DumpStack.log.tmp'
@Route("")
@JsModule("./register.js")
public class RegisterView extends VerticalLayout { ........ }

does anyone know what this is ?

best regards

I just tried this ` @NpmPackage(value = "@iota/identity-wasm", version = "0.6") @JsModule("@iota/identity-wasm/node/identity_wasm.js")`. and that still does not work – Joseph Jul 16, 2022 at 13:36 What is C:\DumpStack.log.tmp? Does windows nowadays single-lock files? Do you have multiple processes running, that hang on to this file? – cfrick Jul 16, 2022 at 16:14 What version of Windows are you on? I know that Windows 10 is finicky about things writing to the root of C:, or deleting, moving, etc. – Henry Jul 18, 2022 at 11:37

here the answer this question :)

https://answers.microsoft.com/en-us/windows/forum/all/dumpstacklog-file/eba04d25-bac2-4173-b9d5-b1a8fc47f64e

DumpStack.log.tmp is a hidden file on Windows. and with the following steps you could you unlock the file :

  • Open the Registry Editor.
  • Navigate to "HKEY_LOCAL_MACHINE", "SYSTEM", "CurrentControlSet", "Control", and finally "CrashControl"
  • Once you've opened the "CrashControl" key, look at the values pane to the right and look for "EnableLogFile". If it doesn't exist, create it. Its type must be "DWORD".
  • Set its value to 0.
  • Exit the Registry Editor.
  • restart your computer
  • A link to a solution is welcome, but please ensure your answer is useful without it: add context around the link so your fellow users will have some idea what it is and why it is there, then quote the most relevant part of the page you are linking to in case the target page is unavailable. – cursorrux Jul 21, 2022 at 7:35

    Thanks for contributing an answer to Stack Overflow!

    • Please be sure to answer the question. Provide details and share your research!

    But avoid

    • Asking for help, clarification, or responding to other answers.
    • Making statements based on opinion; back them up with references or personal experience.

    To learn more, see our tips on writing great answers.