本文主要是介绍Timeout waiting to lock file hash cache.It is currently in use by another Gradle instance.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
idea 开发的时候报错:
Timeout waiting to lock file hash cache (E:\gradle-6.4.1\caches\6.4.1\fileHashes). It is currently in use by another Gradle instance.
按照目录看到:
我们要删除这个lock,但是会提示上锁了。
Windows删除:
方法一: 先打开任务管理器,关闭相关进程。
然后以管理员身份运行CMD。
执行如下命令:
>gradle --stop
>E:
>cd E:\gradle-6.4.1\caches\6.4.1\fileHashes
>del /f /s /q fileHashes.lock
如果是Linux,删除文件命令是:
find ~/.gradle -type f -name "*.lock" -delete
重启idea执行build和run.
方法二:
这篇关于Timeout waiting to lock file hash cache.It is currently in use by another Gradle instance.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!