SonarQube Linux 설치
SonarQube Linux 설치
SonarQube Linux Requirements
Reference = https://docs.sonarqube.org/display/SONAR/Requirements
Linux를 사용하고 있다면 리눅스의 다음 설정 값을 확인해야 함.
- vm.max_map_count : 262144 이상
- fs.file-max : 65536 이상
- Open 파일 : 65536 이상
설정값 확인 방법
1
2
3
sysctl vm.max_map_count
sysctl fs.file-max
ulimit -n
값 설정
1
2
3
sysctl -w vm.max_map_count=262144
sysctl -w fs.file-max=65536
ulimit -n 65536
This post is licensed under
CC BY 4.0
by the author.