我正在学习GraphQL,并且在GraphQL操作中使用棱镜绑定。当我启动我的Node.js服务器时,我面临这个nodemon错误,它给了我一个由graphql-cli自动生成的模式文件的路径。这个错误是关于什么的?

错误:

Internal watch failed: ENOSPC: System limit for number of file watchers reached, watch '/media/ rehans -sattar/Development/All projects/GrpahQl/graph-ql-course/graphql-prisma/src/generated


当前回答

为了测试更改,我临时将参数的值设置为524288。

sysctl -w fs.inotify.max_user_watches=524288

然后我继续验证:

npm run serve

问题解决了。为了使它永久,你应该尝试在“/etc/sysctl.conf”文件中添加一行,然后重新启动sysctl服务:

cat /etc/sysctl.conf | tail -n 2
fs.inotify.max_user_watches=524288

sudo systemctl restart systemd-sysctl.service

其他回答

如果您使用的是Linux,那么您的项目将达到系统文件监视器的限制

要解决这个问题,请在您的终端上尝试:

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p

您需要增加系统用户的inotify监视者限制。你可以在命令行中使用:

sudo sysctl -w fs.inotify.max_user_watches=100000

不过,这种情况只会持续到重新启动为止。要使其永久存在,添加一个名为/etc/sysctl.d/10-user-watch .conf的文件,包含以下内容:

fs.inotify.max_user_watches = 100000

在进行上述(或任何其他)更改之后,您可以使用sudo sysctl——system从/etc中的所有sysctl配置文件中重新加载设置。(在旧系统上,您可能需要使用sudo sysctl -p来代替。)

当我在Ubuntu机器上使用Visual Studio Code时,有时会遇到这个问题。

在我的情况下,下面的解决方法会有所帮助:

停止监视器,关闭Visual Studio Code,启动监视器,然后再次打开Visual Studio Code。

很难知道要增加多少观众。所以,这里有一个实用程序来加倍的观察者的数量:

function get_inode_watcher_count() {
  find /proc/*/fd -user "$USER" -lname anon_inode:inotify -printf '%hinfo/%f\n' 2>/dev/null | 
  xargs cat | 
  grep -c '^inotify'
}

function set_inode_watchers() {
  sudo sysctl -w fs.inotify.max_user_watches="$1"
}

function double_inode_watchers() {
  watcher_count="$(get_inode_watcher_count)"
  set_inode_watchers "$((watcher_count * 2))"

  if test "$1" = "-p" || test "$1" = "--persist"; then
    echo "fs.inotify.max_user_watches = $((watcher_count * 2))" > /etc/sysctl.d/10-user-watches.conf
  fi
}

# Usage
double_inode_watchers
# to make the change persistent
double_inode_watchers --persist

我认为这里给出的大多数答案都是正确的,但是使用systemctl命令重新启动我的服务解决了我的问题。检查下面的命令:

sudo systemctl restart systemd-sysctl.service