일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 데이터 과학
- 빅 데이타
- 통계
- 빅 데이터
- data science
- 김양재 목사
- 확률
- 김양재
- c++
- Artificial Intelligence
- No SQL
- probability
- openCV
- 김양재 목사님
- 인공지능
- nodeJS
- 딥러닝
- 빅데이타
- 우리들교회
- Statistics
- WebGL
- 몽고디비
- 빅데이터
- Big Data
- Machine Learning
- R
- MongoDB
- node.js
- 주일설교
- Deep learning
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