linux - 我的服务器没有监听文件更改

标签 linux reactjs webstorm file-watcher

我使用 WebStorm 并使用 React。从某个时候起,IDE 就停止监视文件更改,现在我必须重新加载我的服务器才能看到更改。我不知道我做了什么。 我找到了这个 ( https://blog.jetbrains.com/idea/2010/04/native-file-system-watcher-for-linux/) 页面,但它对我没有帮助。我的/etc/sysctl.conf 现在看起来像这样:

# Uncomment the next line to enable TCP/IP SYN cookies
# See http://lwn.net/Articles/277146/
# Note: This may impact IPv6 TCP sessions too
#net.ipv4.tcp_syncookies=1

# Uncomment the next line to enable packet forwarding for IPv4
#net.ipv4.ip_forward=1

# Uncomment the next line to enable packet forwarding for IPv6
#  Enabling this option disables Stateless Address Autoconfiguration
#  based on Router Advertisements for this host
#net.ipv6.conf.all.forwarding=1


###################################################################
# Additional settings - these settings can improve the network
# security of the host and prevent against some network attacks
# including spoofing attacks and man in the middle attacks through
# redirection. Some network environments, however, require that these
# settings are disabled so review and enable them as needed.
#
# Do not accept ICMP redirects (prevent MITM attacks)
#net.ipv4.conf.all.accept_redirects = 0
#net.ipv6.conf.all.accept_redirects = 0
# _or_
# Accept ICMP redirects only for gateways listed in our default
# gateway list (enabled by default)
# net.ipv4.conf.all.secure_redirects = 1
#
# Do not send ICMP redirects (we are not a router)
#net.ipv4.conf.all.send_redirects = 0
#
# Do not accept IP source route packets (we are not a router)
#net.ipv4.conf.all.accept_source_route = 0
#net.ipv6.conf.all.accept_source_route = 0
#
# Log Martian Packets
#net.ipv4.conf.all.log_martians = 1
#

###################################################################
# Magic system request Key
# 0=disable, 1=enable all
# Debian kernels have this set to 0 (disable the key)
# See https://www.kernel.org/doc/Documentation/sysrq.txt
# for what other values do
#kernel.sysrq=1

###################################################################
# Protected links
#
# Protects against creating or following links under certain conditions
# Debian kernels have both set to 1 (restricted) 
# See https://www.kernel.org/doc/Documentation/sysctl/fs.txt
#fs.protected_hardlinks=0
#fs.protected_symlinks=0
#fs.inotify.max_user_watches=524288

最佳答案

当项目很大并且包含很多文件时,通常会发生这种情况。

我也遇到过类似的问题。我通过增加文件监视大小来解决它。

只需从文件 /etc/sysctl.conf 中取消注释行 fs.inotify.max_user_watches=524288 并保存。要加载新设置,请在终端中运行 sudo sysctl -p

关于linux - 我的服务器没有监听文件更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53004696/

相关文章:

javascript - 如何使用 Webstorm IDE 在 Typescript 项目中引用多个接口(interface)文件?

c++ - 将应用程序从 Solaris 移植到 Linux

linux - 只打印流式 sed 的当前最后一行?

javascript - React 中 array.map 函数的返回值

javascript - 在 React 组件之前等待外部脚本加载

reactjs - WebStorm 中的 ESLint 配置错误

arrays - qsub 作业数组 (-t),等待完成预览任务

Java : com. google.protobuf 不存在

reactjs - 如何从 React 中的 express-session 获取 session cookie

syntax-highlighting - Jade 标记在 WebStorm 中的模板内突出显示