파일 최대 개수 확인 및 설정
...
size | small |
---|
...
리눅스 파일 최대 개수를 아래 명령어로 확인한다.
Code Block language bash
...
[machbase@localhost ~] ulimit -Sn 1024
결과값이 65535보다 작다면, 아래 파일을 수정하고 서버를 리부팅한다.
...
Code Block language bash [machbase@localhost ~] sudo vi /etc/security/limits.conf #<domain> <type> <item> <value> # * hard nofile 65535 * soft nofile 65535
서버를 리부팅하고 다시 값을 확인한다.
Code Block language bash [machbase@localhost ~] ulimit -Sn 65535
서버의 시간 확인 및 설정
...
Machbase는 시계열 데이터를 다루는 데이터베이스이므로 Machbase가 설치될 서버의 시간 값을 정확하게 설정해야 한다.
...