Bootstrap

Unable to start the daemon process. This problem might be caused by incorrect configuration of the d

一、报错信息

Unable to start the daemon process.
This problem might be caused by incorrect configuration of the daemon.
For example, an unrecognized jvm option is used.
Please refer to the User Manual chapter on the daemon at https://docs.gradle.org/5.6.4/userguide/gradle_daemon.html
Process command line: C:\Program Files (x86)\Java\jdk1.8.0_73\bin\java.exe -Xmx2048m -Dfile.encoding=UTF-8 -Duser.country=CN -Duser.language=zh -Duser.variant -cp C:\Users\86195\.gradle\wrapper\dists\gradle-5.6.4-all\bpbuw2gezmae6urm63fek626l\gradle-5.6.4\lib\gradle-launcher-5.6.4.jar org.gradle.launcher.daemon.bootstrap.GradleDaemon 5.6.4
Please read the following process output to find out more:
-----------------------
Error occurred during initialization of VM
Could not reserve enough space for 2097152KB object heap

-----------------------
Check the JVM arguments defined for the gradle process in:
 - gradle.properties in project root directory

在这里插入图片描述

二、原因分析

Gradle 无法启动守护进程,这通常是因为配置错误或系统资源不足。从提供的错误日志来看,问题可能是由于尝试分配给对象堆的内存太大,而系统无法预留足够的空间。具体来说,错误信息表明您尝试为对象堆分配 2048MB 的内存,但系统无法满足这个要求。

三、解决方法

在项目的根目录中查找 gradle.properties 文件,并调整 org.gradle.jvmargs 设置。你可以尝试将其设置为更小的值,如:-Xmx1024m -Xmx512m,以减少分配给对象堆的内存大小。
在这里插入图片描述

我强烈推荐4本可以改变命运的经典著作:

  1. 《寿康宝鉴》在线阅读白话文
  2. 《欲海回狂》在线阅读白话文
  3. 《阴律无情》在线阅读白话文
  4. 《了凡四训》在线阅读白话文
  5.    电子书百度网盘下载链接
;