오늘의 오류

[react-native에러] Watchman crawl failed. Retrying once with node crawler. Error(std::__1::system_error: open: /Users/***/Documents/react-native/***: Operation not permitted)

애해 2024. 1. 8. 09:54
728x90

# 발생 상황

npm start로 metro를 띄우는데 발생

 

# 발생 원인

watchman 업데이트 후 프로젝트에 대한 접근권한이 허용되지 않아 오류 발생

 

 

# 해결 방안

1. watchman이 감시하고 있는 파일들에 대한 트리거를 삭제 

$ watchman watch-del-all

 

2. watchman 서버 종료

$ watchman shutdown-server

 

3. npm start로 재시작하면 권한허용 관련 팝업이 뜨고 허용해주면 끝!

반응형