페이지 트리

이 페이지의 이전 버전을 보고 있습니다. 현재 버전 보기.

현재와 비교 페이지 이력 보기

버전 1 다음 »

Platform notes

Linux

If you're running on Linux, you must ensure that:

  • vm.max_map_count is greater or equals to 262144
  • fs.file-max is greater or equals to 65536
  • the user running SonarQube can open at least 65536 file descriptors

You can see the values with the following commands :


sysctl vm.max_map_count
sysctl fs.file-max
ulimit -n


You can set them dynamically for the current session by running  the following commands as root:


sysctl -w vm.max_map_count=262144
sysctl -w fs.file-max=65536
ulimit -n 65536


 

(경고) To set these values more permanently, you must update either /etc/sysctl.d/99-sonarqube.conf (or /etc/sysctl.conf as you wish) to reflect these values.

If the user running SonarQube (sonarqube in this example) does not have the permission to have at least 65536 open descriptors, you must insert this line in /etc/limits.d/99-sonarqube.conf (or /etc/limits.conf as you wish) :


sonarqube   -   nofile   65536


You can get more detail in the Elasticsearch documentation.

  • 레이블 없음