2016-11-04 89 views
1

我第一次得到这个问题:https://github.com/facebook/react-native/issues/10088阵营本地`NPM start`与守望错误

然后我跟着这个解决方案来解决该问题:https://github.com/facebook/react-native/issues/910#issuecomment-94181845

现在,当我进入npm start我得到[sane] Warning: Lost connection to watchman, reconnecting..。有什么建议么?

更新:当我将MacOS更新到MacOS Sierra时,开始发生这种情况。

output after <code>npm start</code>

更新:所以我试图运行react-native run-ios这将打开一个新的控制台窗口和调用npm start。它仍然给出了[sane] Warning: Lost connection to watchman, reconnecting..警告,但它构建了捆绑包。所以看守人之间的连接正在中断。这里是控制台的截图: screenshot of console

+0

您是否通过守望者故障排除指南运行?首先要开始查看日志:https://facebook.github.io/watchman/docs/troubleshooting.html#where-are-the-logs –

回答

8

我按照提供的解决方案解决了这个问题由大卫,但我不得不做一些额外的步骤,因为我已经安装了使用brew的守望者。下面是该解决方案的命令列表:(由BREW安装)

删除守望:

$ brew install rmtree 
$ brew rmtree watchman 
$ sudo rm -rf /usr/local/var/run/watchman 

手动安装柝V4.7.0(学分大卫):

$ git clone https://github.com/facebook/watchman.git 
$ cd watchman 
$ git checkout v4.7.0 
$ ./autogen.sh 
$ ./configure 
$ make 
$ sudo make install 

您CHMOD用户的守望者状态目录:

$ chmod 0700 /usr/local/var/run/watchman/<user>-state 
+0

我在封装Exponent时遇到同样的问题看起来这是老版本的守望员已知的问题(https://facebook.github.io/watchman/docs/troubleshooting.html,一直滚动到底部)。一个简单的“brew重新安装看守”它对我来说 – Fractaly

+3

'brew install rmtree '不适合我,但'brew tap beeftornado/rmtree'完成了这项工作 –

1

运行项目文件夹内此命令

watchman watch-del-all && npm start --reset-cache 
+0

没有运气:(仍然得到相同的警告:'失去了连接看门人,重新连接...' – Simar

1

我有一个simular问题,看日志看守我得到这些错误每次看到“丢失连接时发生给Watchman“的信息。

2016-11-05T03:35:48,401: [listener] Watchman 4.7.0 <no build info set> starting up on Davids-Mac.local 

2016-11-05T03:35:48,401: [listener] path /Users/david/Projects/react-native-test is on filesystem type hfs 

2016-11-05T03:35:48,402: [listener] root /Users/david/Projects/react-native-test using watcher mechanism fsevents (auto was requested) 

2016-11-05T03:35:48,406: [listener] file limit is 2560 kern.maxfilesperproc=10240 

2016-11-05T03:35:48,406: [listener] raised file limit to 10240 

2016-11-05T03:35:48,407: [listener] Using socket from launchd as listening socket 

2016-11-05T03:35:48,934: [io 0x7f8175600ff8 /Users/david/Projects/react-native-test] PERF: {"ru_nvcsw": 0, "ru_nsignals": 0, "ru_msgrcv": 6, "ru_msgsnd": 6, "ru_inblock": 0, "ru_majflt": 0, "ru_nswap": 0, "ru_minflt": 5230, "ru_ixrss": 0, "ru_maxrss": 21405696, "system_time": 0.32367200000000002, "user_time": 0.18271599999999999, "elapsed_time": 0.53129999999999999, "pid": 9867, "ru_idrss": 0, "meta": {"root": {"watcher": "fsevents", "ticks": 2, "number": 1, "case_sensitive": false, "recrawl_count": 0, "path": "/Users/david/Projects/react-native-test"}}, "version": "4.7.0", "ru_oublock": 0, "ru_nivcsw": 112, "start_time": 1478316948.403332, "description": "full-crawl"} 

2016-11-05T03:35:48,935: [io 0x7f8175600ff8 /Users/david/Projects/react-native-test] crawl complete 

2016-11-05T03:35:49,029: [client=0x7f8176a00038:stm=0x7f8176a00000] Unilateral payload for sub sane-sub {"settled": true} 

Terminating due to signal 11 Segmentation fault generated by pid=0 uid=0. address not mapped to object (0x0) 
0 watchman       0x0000000105973759 _ZL13crash_handleriP9__siginfoPv + 347 
1 libsystem_platform.dylib   0x00007fffa2292bba _sigtramp + 26 
2 ???         0x00007f81756000c0 0x0 + 140193996734656 
3 watchman       0x000000010596f9b2 _ZN6detail22estimateSpaceToReserveIPKcJA3_cA28_c8w_stringA2_cPcS6_EEEmmRKT_DpRKT0_ + 109 
4 watchman       0x000000010596f815 _ZN8w_string5buildIJPcRA4_KcPS2_RA3_S2_RA28_S2_RS_RA2_S2_RS1_SC_EEES_DpOT_ + 121 
5 watchman       0x000000010599b4cb _ZN8watchman3Log3logIJRA28_KcR8w_stringRA2_S2_RPcS8_EEEvNS_8LogLevelEDpOT_ + 183 
6 watchman       0x000000010599a6e0 _ZNSt3__114__thread_proxyINS_5tupleIJZL15make_new_clientP15watchman_streamE3$_0EEEEEPvS6_ + 952 
7 libsystem_pthread.dylib    0x00007fffa229cabb _pthread_body + 180 
8 libsystem_pthread.dylib    0x00007fffa229ca07 _pthread_body + 0 
9 libsystem_pthread.dylib    0x00007fffa229c231 thread_start + 13 

UPDATE: 好吧,发现迄今似乎工作的解决方案。我卸载守望完全,然后用这似乎做工精细下面从源代码编译它(通过BREW安装任何尝试会导致上述问题,但这个工程):

$ git clone https://github.com/facebook/watchman.git 
$ cd watchman 
$ git checkout v4.7.0 # the latest stable release 
$ ./autogen.sh 
$ ./configure 
$ make 
$ sudo make install 
+0

只是想补充一点,我能够通过执行以下操作来解决此问题: – David

+0

好吧我得到了它的工作,但在运行'sudo make install'之前我必须做 'sudo rm -rf/usr/local/var/run/watchman'。在'sudo make install'之后,我必须做'chmod 0700/usr/local/var/run/watchman/ -state' – Simar