일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Bitbucket
- DB
- 시스템운영
- Apach
- sql
- 마이바티스
- mysql
- 엘라스틱서치
- Java
- springboot
- SonarQube
- Git
- heap메모리
- 레드마인
- ElasticSearch
- nodejs
- Elk
- JVM
- npm
- 아파치
- 자바
- orm
- Stash
- mybatis
- 트랜잭션
- slave node
- 리눅스
- 스프링
- spring
- Gradle
- Today
- Total
목록SonarQube (2)
프로그래머호이잇
분석 방법sonar-runner 압축해제 /conf/sonar-runner.properties 주석해제 및 db 경로 설정 및 db 유저 패스워드 설정 분석 할 프로젝트에서 sonar-project.properties 파일 생성 내용 # must be unique in a given SonarQube instancesonar.projectKey=my:project# this is the name displayed in the SonarQube UIsonar.projectName=My projectsonar.projectVersion=1.0 # Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.# Sinc..
--default-storage-engine=InnoDB CREATE DATABASE sonar2 CHARACTER SET utf8 COLLATE utf8_general_ci;CREATE USER 'sonar' IDENTIFIED BY 'thskqbzm1';GRANT ALL ON sonar2.* TO 'sonar'@'%' IDENTIFIED BY 'sonar';GRANT ALL ON sonar2.* TO 'sonar'@'localhost' IDENTIFIED BY 'sonar';FLUSH PRIVILEGES; 권한 확인show grants for 'sonar'@'%'; https://github.com/SonarQubeCommunity/sonar-l10n-ko/releases/download/1.2.0/..