일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 확률
- 김양재 목사
- Deep learning
- 빅데이타
- data science
- Big Data
- No SQL
- 우리들교회
- 김양재
- 주일설교
- 빅 데이터
- R
- 빅 데이타
- nodeJS
- Statistics
- 통계
- Machine Learning
- 딥러닝
- probability
- node.js
- WebGL
- 김양재 목사님
- Artificial Intelligence
- 데이터 과학
- 빅데이터
- MongoDB
- openCV
- 몽고디비
- 인공지능
- c++
Archives
- Today
- Total
Scientific Computing & Data Science
[MongoDB] Tips / "WARNING: soft rlimits too low. Number of files is 256, should be at least 1000" 메시지 출력 시 대응방법 본문
Data Science/MongoDB
[MongoDB] Tips / "WARNING: soft rlimits too low. Number of files is 256, should be at least 1000" 메시지 출력 시 대응방법
cinema4dr12 2014. 3. 25. 16:50by Geol Choi |
Mac에서 MongoDB 서버를 실행 후, 커맨드라인 도구로 진입할 때 다음과 같은 메시지가 출력될 경우가 있다:
"WARNING: soft rlimits too low. Number of files is 256, should be at least 1000"
$ mongo
MongoDB shell version: 2.4.9
connecting to: test
Server has startup warnings:
Tue Mar 25 16:33:41.942 [initandlisten]
Tue Mar 25 16:33:41.942 [initandlisten] ** WARNING: soft rlimits too low. Number of files is 256, should be at least 1000
Linux 계열에서 프로세스 당 파일 수를 제한한 것이다.
이 경고를 해제하려면 서버 셧다운 후 다음과 같이 "ulimit" 명령을 사용하여 프로세스 당 파일 수를 늘리도록 한다:
$ ulimit -n 2048
꼭 2048은 아니어도 상관없으나, 앞서 경고 메시지가 제시하는 것처럼 최소 1000 이상으로 할당하여야 한다.
이제 MongoDB 서버를 실행해 보자. 이 경고 메시지가 더 이상 나오지 않을 것이다.
'Data Science > MongoDB' 카테고리의 다른 글
[MongoDB] Replication / Master-Slave Replication (0) | 2014.03.26 |
---|---|
[MongoDB] Administration / Security & Authentication (0) | 2014.03.25 |
[MongoDB] Administration / Monitoring (0) | 2014.03.24 |
[MongoDB] Administration / Starting MongoDB (0) | 2014.03.24 |
[MongoDB] Applications / Node.js-MongoDB를 이용한 회원 관리 페이지 만들기 (43) | 2014.03.12 |
Comments