centos 7 watchman 安装
安装编译环境
yum groupinstall 'Development tools'
yum install automake python-devel
克隆源代码
git clone https://github.com/facebook/watchman.git
(可选)使用发布的版本
git checkout v3.7.0
安装watchman
cd watchman
./autogen.sh
./configure
make
sudo make install
更改最大监控文件数
nano /etc/sysctl.conf
增加
fs.inotify.max_user_instances = 524288
fs.inotify.max_user_watches = 524288
fs.inotify.max_queued_events = 524288